| 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" ] |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "output_file.cc", | 123 "output_file.cc", |
| 124 "output_file.h", | 124 "output_file.h", |
| 125 "parse_tree.cc", | 125 "parse_tree.cc", |
| 126 "parse_tree.h", | 126 "parse_tree.h", |
| 127 "parser.cc", | 127 "parser.cc", |
| 128 "parser.h", | 128 "parser.h", |
| 129 "path_output.cc", | 129 "path_output.cc", |
| 130 "path_output.h", | 130 "path_output.h", |
| 131 "pattern.cc", | 131 "pattern.cc", |
| 132 "pattern.h", | 132 "pattern.h", |
| 133 "pointer_set.h", |
| 133 "runtime_deps.cc", | 134 "runtime_deps.cc", |
| 134 "runtime_deps.h", | 135 "runtime_deps.h", |
| 135 "scheduler.cc", | 136 "scheduler.cc", |
| 136 "scheduler.h", | 137 "scheduler.h", |
| 137 "scope.cc", | 138 "scope.cc", |
| 138 "scope.h", | 139 "scope.h", |
| 139 "scope_per_file_provider.cc", | 140 "scope_per_file_provider.cc", |
| 140 "scope_per_file_provider.h", | 141 "scope_per_file_provider.h", |
| 141 "settings.cc", | 142 "settings.cc", |
| 142 "settings.h", | 143 "settings.h", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 "ninja_binary_target_writer_unittest.cc", | 275 "ninja_binary_target_writer_unittest.cc", |
| 275 "ninja_copy_target_writer_unittest.cc", | 276 "ninja_copy_target_writer_unittest.cc", |
| 276 "ninja_group_target_writer_unittest.cc", | 277 "ninja_group_target_writer_unittest.cc", |
| 277 "ninja_target_writer_unittest.cc", | 278 "ninja_target_writer_unittest.cc", |
| 278 "ninja_toolchain_writer_unittest.cc", | 279 "ninja_toolchain_writer_unittest.cc", |
| 279 "operators_unittest.cc", | 280 "operators_unittest.cc", |
| 280 "parse_tree_unittest.cc", | 281 "parse_tree_unittest.cc", |
| 281 "parser_unittest.cc", | 282 "parser_unittest.cc", |
| 282 "path_output_unittest.cc", | 283 "path_output_unittest.cc", |
| 283 "pattern_unittest.cc", | 284 "pattern_unittest.cc", |
| 285 "pointer_set_unittest.cc", |
| 284 "runtime_deps_unittest.cc", | 286 "runtime_deps_unittest.cc", |
| 285 "scope_per_file_provider_unittest.cc", | 287 "scope_per_file_provider_unittest.cc", |
| 286 "scope_unittest.cc", | 288 "scope_unittest.cc", |
| 287 "source_dir_unittest.cc", | 289 "source_dir_unittest.cc", |
| 288 "source_file_unittest.cc", | 290 "source_file_unittest.cc", |
| 289 "string_utils_unittest.cc", | 291 "string_utils_unittest.cc", |
| 290 "substitution_pattern_unittest.cc", | 292 "substitution_pattern_unittest.cc", |
| 291 "substitution_writer_unittest.cc", | 293 "substitution_writer_unittest.cc", |
| 292 "target_unittest.cc", | 294 "target_unittest.cc", |
| 293 "template_unittest.cc", | 295 "template_unittest.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 313 | 315 |
| 314 executable("generate_test_gn_data") { | 316 executable("generate_test_gn_data") { |
| 315 sources = [ | 317 sources = [ |
| 316 "generate_test_gn_data.cc", | 318 "generate_test_gn_data.cc", |
| 317 ] | 319 ] |
| 318 deps = [ | 320 deps = [ |
| 319 "//base", | 321 "//base", |
| 320 "//build/config/sanitizers:deps", | 322 "//build/config/sanitizers:deps", |
| 321 ] | 323 ] |
| 322 } | 324 } |
| OLD | NEW |