Chromium Code Reviews| Index: testing/libfuzzer/BUILD.gn |
| diff --git a/testing/libfuzzer/BUILD.gn b/testing/libfuzzer/BUILD.gn |
| index 2063f9206e2ce49ca5a2688030f0a8191fbcb543..09939d436d82aa9c37432a83de35adc0e0256d0d 100644 |
| --- a/testing/libfuzzer/BUILD.gn |
| +++ b/testing/libfuzzer/BUILD.gn |
| @@ -14,22 +14,10 @@ static_library("libfuzzer_main") { |
| # libfuzzer should be compiled without coverage (infinite loop in trace_cmp). |
| configs -= [ "//build/config/sanitizers:default_sanitizer_coverage_flags" ] |
|
aizatsky
2016/03/31 22:14:43
Will this negative config propagate into source_se
Nico
2016/03/31 22:24:01
No.
Oliver Chang
2016/03/31 22:31:24
Moved to third_party/libFuzzer/BUILD.gn
|
| + deps = [] |
| sources = [] |
| if (use_libfuzzer) { |
| - sources += [ |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerCrossOver.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerDriver.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerFlags.def", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerIO.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerInterface.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerLoop.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerMain.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerMutate.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerSHA1.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerTracePC.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerTraceState.cpp", |
| - "../../third_party/llvm/lib/Fuzzer/FuzzerUtil.cpp", |
| - ] |
| + deps += [ "//third_party/libFuzzer:libfuzzer" ] |
| } else if (use_drfuzz) { |
| sources += [ "drfuzz_main.cc" ] |
| } else { |