| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "output_file.cc", | 119 "output_file.cc", |
| 120 "output_file.h", | 120 "output_file.h", |
| 121 "parse_tree.cc", | 121 "parse_tree.cc", |
| 122 "parse_tree.h", | 122 "parse_tree.h", |
| 123 "parser.cc", | 123 "parser.cc", |
| 124 "parser.h", | 124 "parser.h", |
| 125 "path_output.cc", | 125 "path_output.cc", |
| 126 "path_output.h", | 126 "path_output.h", |
| 127 "pattern.cc", | 127 "pattern.cc", |
| 128 "pattern.h", | 128 "pattern.h", |
| 129 "runtime_deps.cc", |
| 130 "runtime_deps.h", |
| 129 "scheduler.cc", | 131 "scheduler.cc", |
| 130 "scheduler.h", | 132 "scheduler.h", |
| 131 "scope.cc", | 133 "scope.cc", |
| 132 "scope.h", | 134 "scope.h", |
| 133 "scope_per_file_provider.cc", | 135 "scope_per_file_provider.cc", |
| 134 "scope_per_file_provider.h", | 136 "scope_per_file_provider.h", |
| 135 "settings.cc", | 137 "settings.cc", |
| 136 "settings.h", | 138 "settings.h", |
| 137 "setup.cc", | 139 "setup.cc", |
| 138 "setup.h", | 140 "setup.h", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "ninja_binary_target_writer_unittest.cc", | 253 "ninja_binary_target_writer_unittest.cc", |
| 252 "ninja_copy_target_writer_unittest.cc", | 254 "ninja_copy_target_writer_unittest.cc", |
| 253 "ninja_group_target_writer_unittest.cc", | 255 "ninja_group_target_writer_unittest.cc", |
| 254 "ninja_target_writer_unittest.cc", | 256 "ninja_target_writer_unittest.cc", |
| 255 "ninja_toolchain_writer_unittest.cc", | 257 "ninja_toolchain_writer_unittest.cc", |
| 256 "operators_unittest.cc", | 258 "operators_unittest.cc", |
| 257 "parse_tree_unittest.cc", | 259 "parse_tree_unittest.cc", |
| 258 "parser_unittest.cc", | 260 "parser_unittest.cc", |
| 259 "path_output_unittest.cc", | 261 "path_output_unittest.cc", |
| 260 "pattern_unittest.cc", | 262 "pattern_unittest.cc", |
| 263 "runtime_deps_unittest.cc", |
| 261 "scope_per_file_provider_unittest.cc", | 264 "scope_per_file_provider_unittest.cc", |
| 262 "scope_unittest.cc", | 265 "scope_unittest.cc", |
| 263 "source_dir_unittest.cc", | 266 "source_dir_unittest.cc", |
| 264 "string_utils_unittest.cc", | 267 "string_utils_unittest.cc", |
| 265 "substitution_pattern_unittest.cc", | 268 "substitution_pattern_unittest.cc", |
| 266 "substitution_writer_unittest.cc", | 269 "substitution_writer_unittest.cc", |
| 267 "target_generator_unittest.cc", | 270 "target_generator_unittest.cc", |
| 268 "target_unittest.cc", | 271 "target_unittest.cc", |
| 269 "template_unittest.cc", | 272 "template_unittest.cc", |
| 270 "test_with_scope.cc", | 273 "test_with_scope.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 283 } | 286 } |
| 284 | 287 |
| 285 executable("generate_test_gn_data") { | 288 executable("generate_test_gn_data") { |
| 286 sources = [ | 289 sources = [ |
| 287 "generate_test_gn_data.cc", | 290 "generate_test_gn_data.cc", |
| 288 ] | 291 ] |
| 289 deps = [ | 292 deps = [ |
| 290 "//base", | 293 "//base", |
| 291 ] | 294 ] |
| 292 } | 295 } |
| OLD | NEW |