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 defines = [ "GN_BUILD" ] | 5 defines = [ "GN_BUILD" ] |
6 | 6 |
7 static_library("gn_lib") { | 7 static_library("gn_lib") { |
8 sources = [ | 8 sources = [ |
9 "action_target_generator.cc", | 9 "action_target_generator.cc", |
10 "action_target_generator.h", | 10 "action_target_generator.h", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "ninja_action_target_writer_unittest.cc", | 193 "ninja_action_target_writer_unittest.cc", |
194 "ninja_binary_target_writer_unittest.cc", | 194 "ninja_binary_target_writer_unittest.cc", |
195 "ninja_copy_target_writer_unittest.cc", | 195 "ninja_copy_target_writer_unittest.cc", |
196 "ninja_helper_unittest.cc", | 196 "ninja_helper_unittest.cc", |
197 "ninja_target_writer_unittest.cc", | 197 "ninja_target_writer_unittest.cc", |
198 "operators_unittest.cc", | 198 "operators_unittest.cc", |
199 "parse_tree_unittest.cc", | 199 "parse_tree_unittest.cc", |
200 "parser_unittest.cc", | 200 "parser_unittest.cc", |
201 "path_output_unittest.cc", | 201 "path_output_unittest.cc", |
202 "pattern_unittest.cc", | 202 "pattern_unittest.cc", |
| 203 "run_all_unittests.cc", |
203 "scope_per_file_provider_unittest.cc", | 204 "scope_per_file_provider_unittest.cc", |
204 "scope_unittest.cc", | 205 "scope_unittest.cc", |
205 "source_dir_unittest.cc", | 206 "source_dir_unittest.cc", |
206 "string_utils_unittest.cc", | 207 "string_utils_unittest.cc", |
207 "target_generator_unittest.cc", | 208 "target_generator_unittest.cc", |
208 "target_unittest.cc", | 209 "target_unittest.cc", |
209 "template_unittest.cc", | 210 "template_unittest.cc", |
210 "test_with_scope.cc", | 211 "test_with_scope.cc", |
211 "test_with_scope.h", | 212 "test_with_scope.h", |
212 "tokenizer_unittest.cc", | 213 "tokenizer_unittest.cc", |
213 "value_unittest.cc", | 214 "value_unittest.cc", |
214 "visibility_unittest.cc", | 215 "visibility_unittest.cc", |
215 ] | 216 ] |
216 deps = [ | 217 deps = [ |
217 ":gn_lib", | 218 ":gn_lib", |
218 "//base/test:run_all_unittests", | |
219 "//base/test:test_support", | 219 "//base/test:test_support", |
220 "//testing/gtest", | 220 "//testing/gtest", |
221 ] | 221 ] |
222 } | 222 } |
223 | 223 |
224 executable("generate_test_gn_data") { | 224 executable("generate_test_gn_data") { |
225 sources = [ "generate_test_gn_data.cc" ] | 225 sources = [ "generate_test_gn_data.cc" ] |
226 deps = [ "//base" ] | 226 deps = [ "//base" ] |
227 } | 227 } |
OLD | NEW |