| 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 = [ |
| 11 "action_target_generator.cc", | 11 "action_target_generator.cc", |
| 12 "action_target_generator.h", | 12 "action_target_generator.h", |
| 13 "action_values.cc", | 13 "action_values.cc", |
| 14 "action_values.h", | 14 "action_values.h", |
| 15 "args.cc", | 15 "args.cc", |
| 16 "args.h", | 16 "args.h", |
| 17 "binary_target_generator.cc", | 17 "binary_target_generator.cc", |
| 18 "binary_target_generator.h", | 18 "binary_target_generator.h", |
| 19 "build_settings.cc", | 19 "build_settings.cc", |
| 20 "build_settings.h", | 20 "build_settings.h", |
| 21 "builder.cc", | 21 "builder.cc", |
| 22 "builder.h", | 22 "builder.h", |
| 23 "builder_record.cc", | 23 "builder_record.cc", |
| 24 "builder_record.h", | 24 "builder_record.h", |
| 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_desc.cc", | 30 "command_desc.cc", |
| 31 "command_format.cc", |
| 30 "command_gen.cc", | 32 "command_gen.cc", |
| 31 "command_format.cc", | |
| 32 "command_help.cc", | 33 "command_help.cc", |
| 33 "command_ls.cc", | 34 "command_ls.cc", |
| 34 "command_refs.cc", | 35 "command_refs.cc", |
| 35 "commands.cc", | 36 "commands.cc", |
| 36 "commands.h", | 37 "commands.h", |
| 37 "config.cc", | 38 "config.cc", |
| 38 "config.h", | 39 "config.h", |
| 39 "config_values.cc", | 40 "config_values.cc", |
| 40 "config_values.h", | 41 "config_values.h", |
| 41 "config_values_extractors.cc", | 42 "config_values_extractors.cc", |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 } | 279 } |
| 279 | 280 |
| 280 executable("generate_test_gn_data") { | 281 executable("generate_test_gn_data") { |
| 281 sources = [ | 282 sources = [ |
| 282 "generate_test_gn_data.cc", | 283 "generate_test_gn_data.cc", |
| 283 ] | 284 ] |
| 284 deps = [ | 285 deps = [ |
| 285 "//base", | 286 "//base", |
| 286 ] | 287 ] |
| 287 } | 288 } |
| OLD | NEW |