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 | 6 |
7 defines = [ "GN_BUILD" ] | 7 defines = [ "GN_BUILD" ] |
8 | 8 |
9 static_library("gn_lib") { | 9 static_library("gn_lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 14 matching lines...) Expand all Loading... |
25 "c_include_iterator.cc", | 25 "c_include_iterator.cc", |
26 "c_include_iterator.h", | 26 "c_include_iterator.h", |
27 "command_args.cc", | 27 "command_args.cc", |
28 "command_check.cc", | 28 "command_check.cc", |
29 "command_clean.cc", | 29 "command_clean.cc", |
30 "command_desc.cc", | 30 "command_desc.cc", |
31 "command_format.cc", | 31 "command_format.cc", |
32 "command_gen.cc", | 32 "command_gen.cc", |
33 "command_help.cc", | 33 "command_help.cc", |
34 "command_ls.cc", | 34 "command_ls.cc", |
| 35 "command_path.cc", |
35 "command_refs.cc", | 36 "command_refs.cc", |
36 "commands.cc", | 37 "commands.cc", |
37 "commands.h", | 38 "commands.h", |
38 "config.cc", | 39 "config.cc", |
39 "config.h", | 40 "config.h", |
40 "config_values.cc", | 41 "config_values.cc", |
41 "config_values.h", | 42 "config_values.h", |
42 "config_values_extractors.cc", | 43 "config_values_extractors.cc", |
43 "config_values_extractors.h", | 44 "config_values_extractors.h", |
44 "config_values_generator.cc", | 45 "config_values_generator.cc", |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 } | 287 } |
287 | 288 |
288 executable("generate_test_gn_data") { | 289 executable("generate_test_gn_data") { |
289 sources = [ | 290 sources = [ |
290 "generate_test_gn_data.cc", | 291 "generate_test_gn_data.cc", |
291 ] | 292 ] |
292 deps = [ | 293 deps = [ |
293 "//base", | 294 "//base", |
294 ] | 295 ] |
295 } | 296 } |
OLD | NEW |