| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("libfuzzer") { | 5 source_set("libfuzzer") { |
| 6 # libfuzzer should be compiled without coverage (infinite loop in trace_cmp). | 6 # libfuzzer should be compiled without coverage (infinite loop in trace_cmp). |
| 7 configs -= [ "//build/config/sanitizers:default_sanitizer_flags" ] | 7 configs -= [ "//build/config/sanitizers:default_sanitizer_flags" ] |
| 8 configs += [ "//build/config/sanitizers:default_sanitizer_flags_but_coverage"
] | 8 configs += |
| 9 [ "//build/config/sanitizers:default_sanitizer_flags_but_coverage" ] |
| 9 sources = [ | 10 sources = [ |
| 10 "src/FuzzerCrossOver.cpp", | 11 "src/FuzzerCrossOver.cpp", |
| 11 "src/FuzzerDriver.cpp", | 12 "src/FuzzerDriver.cpp", |
| 12 "src/FuzzerIO.cpp", | 13 "src/FuzzerIO.cpp", |
| 13 "src/FuzzerInterface.cpp", | |
| 14 "src/FuzzerLoop.cpp", | 14 "src/FuzzerLoop.cpp", |
| 15 "src/FuzzerMain.cpp", | 15 "src/FuzzerMain.cpp", |
| 16 "src/FuzzerMutate.cpp", | 16 "src/FuzzerMutate.cpp", |
| 17 "src/FuzzerSHA1.cpp", | 17 "src/FuzzerSHA1.cpp", |
| 18 "src/FuzzerTracePC.cpp", | 18 "src/FuzzerTracePC.cpp", |
| 19 "src/FuzzerTraceState.cpp", | 19 "src/FuzzerTraceState.cpp", |
| 20 "src/FuzzerUtil.cpp", | 20 "src/FuzzerUtil.cpp", |
| 21 ] | 21 ] |
| 22 } | 22 } |
| OLD | NEW |