Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: third_party/libFuzzer/BUILD.gn

Issue 2004293003: Roll LibFuzzer d05583b..feca8e5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update to the next revision. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698