| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "output_file.cc", | 139 "output_file.cc", |
| 140 "output_file.h", | 140 "output_file.h", |
| 141 "parse_tree.cc", | 141 "parse_tree.cc", |
| 142 "parse_tree.h", | 142 "parse_tree.h", |
| 143 "parser.cc", | 143 "parser.cc", |
| 144 "parser.h", | 144 "parser.h", |
| 145 "path_output.cc", | 145 "path_output.cc", |
| 146 "path_output.h", | 146 "path_output.h", |
| 147 "pattern.cc", | 147 "pattern.cc", |
| 148 "pattern.h", | 148 "pattern.h", |
| 149 "qt_creator_writer.cc", |
| 150 "qt_creator_writer.h", |
| 149 "runtime_deps.cc", | 151 "runtime_deps.cc", |
| 150 "runtime_deps.h", | 152 "runtime_deps.h", |
| 151 "scheduler.cc", | 153 "scheduler.cc", |
| 152 "scheduler.h", | 154 "scheduler.h", |
| 153 "scope.cc", | 155 "scope.cc", |
| 154 "scope.h", | 156 "scope.h", |
| 155 "scope_per_file_provider.cc", | 157 "scope_per_file_provider.cc", |
| 156 "scope_per_file_provider.h", | 158 "scope_per_file_provider.h", |
| 157 "settings.cc", | 159 "settings.cc", |
| 158 "settings.h", | 160 "settings.h", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "format_test_data/", | 328 "format_test_data/", |
| 327 ] | 329 ] |
| 328 | 330 |
| 329 deps = [ | 331 deps = [ |
| 330 ":gn_lib", | 332 ":gn_lib", |
| 331 "//base/test:run_all_unittests", | 333 "//base/test:run_all_unittests", |
| 332 "//base/test:test_support", | 334 "//base/test:test_support", |
| 333 "//testing/gtest", | 335 "//testing/gtest", |
| 334 ] | 336 ] |
| 335 } | 337 } |
| OLD | NEW |