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

Side by Side Diff: third_party/libprotobuf-mutator/BUILD.gn

Issue 2727123003: [libfuzzer] proto-based renderer fuzzer draft (Closed)
Patch Set: merge Created 3 years, 9 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
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 import("//testing/test.gni")
3
4 config("include_config") {
5 include_dirs = [ "src/" ]
6 }
7
8 source_set("libprotobuf-mutator") {
9 testonly = true
10 configs += [ ":include_config" ]
11 public_configs = [ ":include_config" ]
12 sources = [
13 "src/src/libfuzzer/libfuzzer_mutator.cc",
14 "src/src/binary_format.cc",
15 "src/src/text_format.cc",
16 "src/src/mutator.cc",
17 ]
18 deps = [
19 "//third_party/protobuf:protobuf_full",
20 ]
21 }
22
23 test("mutator_test") {
24 deps = [ ":libprotobuf-mutator" ]
25 sources = [
26 "src/src/mutator_test.cc"
27 ]
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698