OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
2 config("include_config") { | |
3 include_dirs = [ "src/" ] | |
4 } | |
5 | |
6 source_set("libprotobuf-mutator") { | |
7 testonly = true | |
8 configs += [ ":include_config" ] | |
9 public_configs = [ ":include_config" ] | |
10 sources = [ | |
11 "src/src/binary_format.cc", | |
12 "src/src/libfuzzer/libfuzzer_mutator.cc", | |
13 "src/src/mutator.cc", | |
14 "src/src/text_format.cc", | |
15 ] | |
16 deps = [ | |
17 "//third_party/protobuf:protobuf_full", | |
18 ] | |
19 } | |
OLD | NEW |