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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 "format_test_data/", | 324 "format_test_data/", |
323 ] | 325 ] |
324 | 326 |
325 deps = [ | 327 deps = [ |
326 ":gn_lib", | 328 ":gn_lib", |
327 "//base/test:run_all_unittests", | 329 "//base/test:run_all_unittests", |
328 "//base/test:test_support", | 330 "//base/test:test_support", |
329 "//testing/gtest", | 331 "//testing/gtest", |
330 ] | 332 ] |
331 } | 333 } |
OLD | NEW |