| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "ninja_toolchain_writer_unittest.cc", | 260 "ninja_toolchain_writer_unittest.cc", |
| 261 "operators_unittest.cc", | 261 "operators_unittest.cc", |
| 262 "parse_tree_unittest.cc", | 262 "parse_tree_unittest.cc", |
| 263 "parser_unittest.cc", | 263 "parser_unittest.cc", |
| 264 "path_output_unittest.cc", | 264 "path_output_unittest.cc", |
| 265 "pattern_unittest.cc", | 265 "pattern_unittest.cc", |
| 266 "runtime_deps_unittest.cc", | 266 "runtime_deps_unittest.cc", |
| 267 "scope_per_file_provider_unittest.cc", | 267 "scope_per_file_provider_unittest.cc", |
| 268 "scope_unittest.cc", | 268 "scope_unittest.cc", |
| 269 "source_dir_unittest.cc", | 269 "source_dir_unittest.cc", |
| 270 "source_file_unittest.cc", |
| 270 "string_utils_unittest.cc", | 271 "string_utils_unittest.cc", |
| 271 "substitution_pattern_unittest.cc", | 272 "substitution_pattern_unittest.cc", |
| 272 "substitution_writer_unittest.cc", | 273 "substitution_writer_unittest.cc", |
| 273 "target_generator_unittest.cc", | 274 "target_generator_unittest.cc", |
| 274 "target_unittest.cc", | 275 "target_unittest.cc", |
| 275 "template_unittest.cc", | 276 "template_unittest.cc", |
| 276 "test_with_scope.cc", | 277 "test_with_scope.cc", |
| 277 "test_with_scope.h", | 278 "test_with_scope.h", |
| 278 "tokenizer_unittest.cc", | 279 "tokenizer_unittest.cc", |
| 279 "unique_vector_unittest.cc", | 280 "unique_vector_unittest.cc", |
| 280 "value_unittest.cc", | 281 "value_unittest.cc", |
| 281 "visibility_unittest.cc", | 282 "visibility_unittest.cc", |
| 282 ] | 283 ] |
| 283 deps = [ | 284 deps = [ |
| 284 ":gn_lib", | 285 ":gn_lib", |
| 285 "//base/test:run_all_unittests", | 286 "//base/test:run_all_unittests", |
| 286 "//base/test:test_support", | 287 "//base/test:test_support", |
| 287 "//testing/gtest", | 288 "//testing/gtest", |
| 288 ] | 289 ] |
| 289 } | 290 } |
| 290 | 291 |
| 291 executable("generate_test_gn_data") { | 292 executable("generate_test_gn_data") { |
| 292 sources = [ | 293 sources = [ |
| 293 "generate_test_gn_data.cc", | 294 "generate_test_gn_data.cc", |
| 294 ] | 295 ] |
| 295 deps = [ | 296 deps = [ |
| 296 "//base", | 297 "//base", |
| 297 ] | 298 ] |
| 298 } | 299 } |
| OLD | NEW |