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

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

Issue 2075883002: Add American Fuzzy Lop (afl) to third_party/afl/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add American Fuzzy Lop (afl) to third_party/afl/ 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 | « no previous file | third_party/afl/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("afl_runtime") {
inferno 2016/06/21 14:53:18 s/afl_runtime/afl
6 # AFL needs this flag to be built with -Werror. This is because it uses u8*
7 # and char* types interchangeably in its source code. The AFL Makefiles use
8 # this flag.
9 cflags = [ "-Wno-pointer-sign" ]
inferno 2016/06/21 14:53:18 I think you meant += instead of =
10
11 # These functions should not be compiled with sanitizers since they
inferno 2016/06/21 14:53:18 move line 11-12 to before line 14 just like line 1
12 # are used by the sanitizers.
13 configs -= [
14 "//build/config/sanitizers:default_sanitizer_flags",
15
16 # Every function in this library should have "default" visibility.
17 # Thus we turn off flags which make visibility "hidden" for functions
18 # that do not specify visibility.
19 # The functions in this library will not conflict with others elsewhere
20 # because they begin with a double underscore and/or are static.
21 "//build/config/gcc:symbol_visibility_hidden",
22 ]
23
24 sources = [
25 "src/llvm_mode/afl-llvm-rt.o.c",
26 ]
27 }
OLDNEW
« no previous file with comments | « no previous file | third_party/afl/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698