| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "ninja_toolchain_writer.cc", | 131 "ninja_toolchain_writer.cc", |
| 132 "ninja_toolchain_writer.h", | 132 "ninja_toolchain_writer.h", |
| 133 "ninja_utils.cc", | 133 "ninja_utils.cc", |
| 134 "ninja_utils.h", | 134 "ninja_utils.h", |
| 135 "ninja_writer.cc", | 135 "ninja_writer.cc", |
| 136 "ninja_writer.h", | 136 "ninja_writer.h", |
| 137 "operators.cc", | 137 "operators.cc", |
| 138 "operators.h", | 138 "operators.h", |
| 139 "output_file.cc", | 139 "output_file.cc", |
| 140 "output_file.h", | 140 "output_file.h", |
| 141 "parse_node_value_adapter.cc", |
| 142 "parse_node_value_adapter.h", |
| 141 "parse_tree.cc", | 143 "parse_tree.cc", |
| 142 "parse_tree.h", | 144 "parse_tree.h", |
| 143 "parser.cc", | 145 "parser.cc", |
| 144 "parser.h", | 146 "parser.h", |
| 145 "path_output.cc", | 147 "path_output.cc", |
| 146 "path_output.h", | 148 "path_output.h", |
| 147 "pattern.cc", | 149 "pattern.cc", |
| 148 "pattern.h", | 150 "pattern.h", |
| 149 "pool.cc", | 151 "pool.cc", |
| 150 "pool.h", | 152 "pool.h", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 "format_test_data/", | 332 "format_test_data/", |
| 331 ] | 333 ] |
| 332 | 334 |
| 333 deps = [ | 335 deps = [ |
| 334 ":gn_lib", | 336 ":gn_lib", |
| 335 "//base/test:run_all_unittests", | 337 "//base/test:run_all_unittests", |
| 336 "//base/test:test_support", | 338 "//base/test:test_support", |
| 337 "//testing/gtest", | 339 "//testing/gtest", |
| 338 ] | 340 ] |
| 339 } | 341 } |
| OLD | NEW |