| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "path_output_unittest.cc", | 282 "path_output_unittest.cc", |
| 283 "pattern_unittest.cc", | 283 "pattern_unittest.cc", |
| 284 "runtime_deps_unittest.cc", | 284 "runtime_deps_unittest.cc", |
| 285 "scope_per_file_provider_unittest.cc", | 285 "scope_per_file_provider_unittest.cc", |
| 286 "scope_unittest.cc", | 286 "scope_unittest.cc", |
| 287 "source_dir_unittest.cc", | 287 "source_dir_unittest.cc", |
| 288 "source_file_unittest.cc", | 288 "source_file_unittest.cc", |
| 289 "string_utils_unittest.cc", | 289 "string_utils_unittest.cc", |
| 290 "substitution_pattern_unittest.cc", | 290 "substitution_pattern_unittest.cc", |
| 291 "substitution_writer_unittest.cc", | 291 "substitution_writer_unittest.cc", |
| 292 "target_generator_unittest.cc", | |
| 293 "target_unittest.cc", | 292 "target_unittest.cc", |
| 294 "template_unittest.cc", | 293 "template_unittest.cc", |
| 295 "test_with_scope.cc", | 294 "test_with_scope.cc", |
| 296 "test_with_scope.h", | 295 "test_with_scope.h", |
| 297 "tokenizer_unittest.cc", | 296 "tokenizer_unittest.cc", |
| 298 "unique_vector_unittest.cc", | 297 "unique_vector_unittest.cc", |
| 299 "value_unittest.cc", | 298 "value_unittest.cc", |
| 300 "visibility_unittest.cc", | 299 "visibility_unittest.cc", |
| 301 ] | 300 ] |
| 302 | 301 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 314 | 313 |
| 315 executable("generate_test_gn_data") { | 314 executable("generate_test_gn_data") { |
| 316 sources = [ | 315 sources = [ |
| 317 "generate_test_gn_data.cc", | 316 "generate_test_gn_data.cc", |
| 318 ] | 317 ] |
| 319 deps = [ | 318 deps = [ |
| 320 "//base", | 319 "//base", |
| 321 "//build/config/sanitizers:deps", | 320 "//build/config/sanitizers:deps", |
| 322 ] | 321 ] |
| 323 } | 322 } |
| OLD | NEW |