| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//testing/libfuzzer/fuzzer_test.gni") | 6 import("//testing/libfuzzer/fuzzer_test.gni") |
| 7 | 7 |
| 8 defines = [ "GN_BUILD" ] | 8 defines = [ "GN_BUILD" ] |
| 9 | 9 |
| 10 static_library("gn_lib") { | 10 static_library("gn_lib") { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "bundle_file_rule.cc", | 34 "bundle_file_rule.cc", |
| 35 "bundle_file_rule.h", | 35 "bundle_file_rule.h", |
| 36 "c_include_iterator.cc", | 36 "c_include_iterator.cc", |
| 37 "c_include_iterator.h", | 37 "c_include_iterator.h", |
| 38 "command_analyze.cc", | 38 "command_analyze.cc", |
| 39 "command_args.cc", | 39 "command_args.cc", |
| 40 "command_check.cc", | 40 "command_check.cc", |
| 41 "command_clean.cc", | 41 "command_clean.cc", |
| 42 "command_desc.cc", | 42 "command_desc.cc", |
| 43 "command_format.cc", | 43 "command_format.cc", |
| 44 "command_format.h", |
| 44 "command_gen.cc", | 45 "command_gen.cc", |
| 45 "command_help.cc", | 46 "command_help.cc", |
| 46 "command_ls.cc", | 47 "command_ls.cc", |
| 47 "command_path.cc", | 48 "command_path.cc", |
| 48 "command_refs.cc", | 49 "command_refs.cc", |
| 49 "commands.cc", | 50 "commands.cc", |
| 50 "commands.h", | 51 "commands.h", |
| 51 "config.cc", | 52 "config.cc", |
| 52 "config.h", | 53 "config.h", |
| 53 "config_values.cc", | 54 "config_values.cc", |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 } | 354 } |
| 354 | 355 |
| 355 fuzzer_test("gn_parser_fuzzer") { | 356 fuzzer_test("gn_parser_fuzzer") { |
| 356 sources = [ | 357 sources = [ |
| 357 "parser_fuzzer.cc", | 358 "parser_fuzzer.cc", |
| 358 ] | 359 ] |
| 359 deps = [ | 360 deps = [ |
| 360 ":gn_lib", | 361 ":gn_lib", |
| 361 ] | 362 ] |
| 362 } | 363 } |
| OLD | NEW |