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

Side by Side Diff: testing/libfuzzer/BUILD.gn

Issue 1888953002: [libfuzzer] marking libfuzzer symbols as dynamic on mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | testing/libfuzzer/fuzzer_test.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # LibFuzzer is a LLVM tool for coverage-guided fuzz testing. 5 # LibFuzzer is a LLVM tool for coverage-guided fuzz testing.
6 # See http://www.chromium.org/developers/testing/libfuzzer 6 # See http://www.chromium.org/developers/testing/libfuzzer
7 # 7 #
8 # To enable libfuzzer, 'use_libfuzzer' GN option should be set to true. 8 # To enable libfuzzer, 'use_libfuzzer' GN option should be set to true.
9 9
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
11 import("//build/config/sanitizers/sanitizers.gni") 11 import("//build/config/sanitizers/sanitizers.gni")
12 12
13 static_library("libfuzzer_main") { 13 static_library("libfuzzer_main") {
14 deps = [] 14 deps = []
15 sources = [] 15 sources = []
16 if (use_libfuzzer) { 16 if (use_libfuzzer) {
17 deps += [ "//third_party/libFuzzer:libfuzzer" ] 17 deps += [ "//third_party/libFuzzer:libfuzzer" ]
18 } else if (use_drfuzz) { 18 } else if (use_drfuzz) {
19 sources += [ "drfuzz_main.cc" ] 19 sources += [ "drfuzz_main.cc" ]
20 } else { 20 } else {
21 sources += [ "unittest_main.cc" ] 21 sources += [ "unittest_main.cc" ]
22 } 22 }
23 } 23 }
24 24
25 # A config used by all fuzzer_tests.
26 config("fuzzer_test_config") {
27 if (use_libfuzzer && is_mac) {
28 ldflags = [
29 "-Wl,-U,_LLVMFuzzerCustomMutator",
30 "-Wl,-U,_LLVMFuzzerInitialize",
31 ]
32 }
33 }
34
25 # Noop config used to tag fuzzer tests excluded from clusterfuzz. 35 # Noop config used to tag fuzzer tests excluded from clusterfuzz.
26 # Libfuzzer build bot uses this to filter out targets while 36 # Libfuzzer build bot uses this to filter out targets while
27 # building an archive for clusterfuzz. 37 # building an archive for clusterfuzz.
28 config("no_clusterfuzz") { 38 config("no_clusterfuzz") {
29 } 39 }
30 40
31 # noop to tag seed corpus rules. 41 # noop to tag seed corpus rules.
32 source_set("seed_corpus") { 42 source_set("seed_corpus") {
33 } 43 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzer_test.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698