mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
|
# Copyright 2018 The Crashpad Authors. All rights reserved.
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
import("crashpad_buildconfig.gni")
|
||
|
import("test.gni")
|
||
|
|
||
|
template("fuzzer_test") {
|
||
|
if (crashpad_is_standalone && crashpad_use_libfuzzer) {
|
||
|
test(target_name) {
|
||
|
forward_variables_from(invoker,
|
||
|
[
|
||
|
"cflags",
|
||
|
"cflags_cc",
|
||
|
"check_includes",
|
||
|
"defines",
|
||
|
"include_dirs",
|
||
|
"sources",
|
||
|
])
|
||
|
configs += [ "..:crashpad_config" ]
|
||
|
if (defined(invoker.deps)) {
|
||
|
deps = invoker.deps
|
||
|
}
|
||
|
deps += [ "../third_party/libfuzzer" ]
|
||
|
|
||
|
if (!defined(invoker.cflags)) {
|
||
|
cflags = []
|
||
|
}
|
||
|
cflags += [ "-fsanitize=fuzzer" ]
|
||
|
}
|
||
|
} else {
|
||
|
not_needed(invoker, "*")
|
||
|
group(target_name) {
|
||
|
}
|
||
|
}
|
||
|
}
|