| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "config_values.cc", | 43 "config_values.cc", |
| 44 "config_values.h", | 44 "config_values.h", |
| 45 "config_values_extractors.cc", | 45 "config_values_extractors.cc", |
| 46 "config_values_extractors.h", | 46 "config_values_extractors.h", |
| 47 "config_values_generator.cc", | 47 "config_values_generator.cc", |
| 48 "config_values_generator.h", | 48 "config_values_generator.h", |
| 49 "copy_target_generator.cc", | 49 "copy_target_generator.cc", |
| 50 "copy_target_generator.h", | 50 "copy_target_generator.h", |
| 51 "deps_iterator.cc", | 51 "deps_iterator.cc", |
| 52 "deps_iterator.h", | 52 "deps_iterator.h", |
| 53 "eclipse_writer.cc", |
| 54 "eclipse_writer.h", |
| 53 "err.cc", | 55 "err.cc", |
| 54 "err.h", | 56 "err.h", |
| 55 "escape.cc", | 57 "escape.cc", |
| 56 "escape.h", | 58 "escape.h", |
| 57 "exec_process.cc", | 59 "exec_process.cc", |
| 58 "exec_process.h", | 60 "exec_process.h", |
| 59 "filesystem_utils.cc", | 61 "filesystem_utils.cc", |
| 60 "filesystem_utils.h", | 62 "filesystem_utils.h", |
| 61 "function_exec_script.cc", | 63 "function_exec_script.cc", |
| 62 "function_foreach.cc", | 64 "function_foreach.cc", |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "format_test_data/", | 307 "format_test_data/", |
| 306 ] | 308 ] |
| 307 | 309 |
| 308 deps = [ | 310 deps = [ |
| 309 ":gn_lib", | 311 ":gn_lib", |
| 310 "//base/test:run_all_unittests", | 312 "//base/test:run_all_unittests", |
| 311 "//base/test:test_support", | 313 "//base/test:test_support", |
| 312 "//testing/gtest", | 314 "//testing/gtest", |
| 313 ] | 315 ] |
| 314 } | 316 } |
| OLD | NEW |