Chromium Code Reviews| Index: base/BUILD.gn |
| diff --git a/base/BUILD.gn b/base/BUILD.gn |
| index 1c47b51f922ea12e2ee5c48af724e507518f0fbb..8f38c030ad6656614b971671514cb8977146e364 100644 |
| --- a/base/BUILD.gn |
| +++ b/base/BUILD.gn |
| @@ -27,6 +27,7 @@ import("//build/config/nacl/config.gni") |
| import("//build/config/sysroot.gni") |
| import("//build/config/ui.gni") |
| import("//build/nocompile.gni") |
| +import("//testing/libfuzzer/fuzzer_test.gni") |
| import("//testing/test.gni") |
| declare_args() { |
| @@ -2455,3 +2456,12 @@ if (is_android) { |
| ] |
| } |
| } |
| + |
| +fuzzer_test("base_json_correctness_fuzzer") { |
| + sources = [ |
| + "json/base_json_correctness_fuzzer.cc", |
|
danakj
2016/10/28 01:50:56
the base_json_ in this file name is redundant, it'
|
| + ] |
| + deps = [ |
| + ":base", |
| + ] |
| +} |