| 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 configs += [ "//build/config:precompiled_headers" ] | 10 configs += [ "//build/config:precompiled_headers" ] |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "action_target_generator.cc", | 13 "action_target_generator.cc", |
| 14 "action_target_generator.h", | 14 "action_target_generator.h", |
| 15 "action_values.cc", | 15 "action_values.cc", |
| 16 "action_values.h", | 16 "action_values.h", |
| 17 "args.cc", | 17 "args.cc", |
| 18 "args.h", | 18 "args.h", |
| 19 "binary_target_generator.cc", | 19 "binary_target_generator.cc", |
| 20 "binary_target_generator.h", | 20 "binary_target_generator.h", |
| 21 "build_settings.cc", | 21 "build_settings.cc", |
| 22 "build_settings.h", | 22 "build_settings.h", |
| 23 "builder.cc", | 23 "builder.cc", |
| 24 "builder.h", | 24 "builder.h", |
| 25 "builder_record.cc", | 25 "builder_record.cc", |
| 26 "builder_record.h", | 26 "builder_record.h", |
| 27 "bundle_data_target_generator.cc", |
| 28 "bundle_data_target_generator.h", |
| 27 "c_include_iterator.cc", | 29 "c_include_iterator.cc", |
| 28 "c_include_iterator.h", | 30 "c_include_iterator.h", |
| 29 "command_args.cc", | 31 "command_args.cc", |
| 30 "command_check.cc", | 32 "command_check.cc", |
| 31 "command_clean.cc", | 33 "command_clean.cc", |
| 32 "command_desc.cc", | 34 "command_desc.cc", |
| 33 "command_format.cc", | 35 "command_format.cc", |
| 34 "command_gen.cc", | 36 "command_gen.cc", |
| 35 "command_help.cc", | 37 "command_help.cc", |
| 36 "command_ls.cc", | 38 "command_ls.cc", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "loader.cc", | 105 "loader.cc", |
| 104 "loader.h", | 106 "loader.h", |
| 105 "location.cc", | 107 "location.cc", |
| 106 "location.h", | 108 "location.h", |
| 107 "ninja_action_target_writer.cc", | 109 "ninja_action_target_writer.cc", |
| 108 "ninja_action_target_writer.h", | 110 "ninja_action_target_writer.h", |
| 109 "ninja_binary_target_writer.cc", | 111 "ninja_binary_target_writer.cc", |
| 110 "ninja_binary_target_writer.h", | 112 "ninja_binary_target_writer.h", |
| 111 "ninja_build_writer.cc", | 113 "ninja_build_writer.cc", |
| 112 "ninja_build_writer.h", | 114 "ninja_build_writer.h", |
| 115 "ninja_bundle_data_target_writer.cc", |
| 116 "ninja_bundle_data_target_writer.h", |
| 113 "ninja_copy_target_writer.cc", | 117 "ninja_copy_target_writer.cc", |
| 114 "ninja_copy_target_writer.h", | 118 "ninja_copy_target_writer.h", |
| 115 "ninja_group_target_writer.cc", | 119 "ninja_group_target_writer.cc", |
| 116 "ninja_group_target_writer.h", | 120 "ninja_group_target_writer.h", |
| 117 "ninja_target_writer.cc", | 121 "ninja_target_writer.cc", |
| 118 "ninja_target_writer.h", | 122 "ninja_target_writer.h", |
| 119 "ninja_toolchain_writer.cc", | 123 "ninja_toolchain_writer.cc", |
| 120 "ninja_toolchain_writer.h", | 124 "ninja_toolchain_writer.h", |
| 121 "ninja_utils.cc", | 125 "ninja_utils.cc", |
| 122 "ninja_utils.h", | 126 "ninja_utils.h", |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 "format_test_data/", | 311 "format_test_data/", |
| 308 ] | 312 ] |
| 309 | 313 |
| 310 deps = [ | 314 deps = [ |
| 311 ":gn_lib", | 315 ":gn_lib", |
| 312 "//base/test:run_all_unittests", | 316 "//base/test:run_all_unittests", |
| 313 "//base/test:test_support", | 317 "//base/test:test_support", |
| 314 "//testing/gtest", | 318 "//testing/gtest", |
| 315 ] | 319 ] |
| 316 } | 320 } |
| OLD | NEW |