| 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 sources = [ | 10 sources = [ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 deps = [ | 215 deps = [ |
| 216 ":gn_lib", | 216 ":gn_lib", |
| 217 ":last_commit_position", | 217 ":last_commit_position", |
| 218 "//base", | 218 "//base", |
| 219 ] | 219 ] |
| 220 } | 220 } |
| 221 | 221 |
| 222 test("gn_unittests") { | 222 test("gn_unittests") { |
| 223 sources = [ | 223 sources = [ |
| 224 "action_target_generator_unittest.cc", | 224 "action_target_generator_unittest.cc", |
| 225 "args_unittest.cc", |
| 225 "builder_unittest.cc", | 226 "builder_unittest.cc", |
| 226 "c_include_iterator_unittest.cc", | 227 "c_include_iterator_unittest.cc", |
| 227 "command_format_unittest.cc", | 228 "command_format_unittest.cc", |
| 228 "config_values_extractors_unittest.cc", | 229 "config_values_extractors_unittest.cc", |
| 229 "escape_unittest.cc", | 230 "escape_unittest.cc", |
| 230 "exec_process_unittest.cc", | 231 "exec_process_unittest.cc", |
| 231 "filesystem_utils_unittest.cc", | 232 "filesystem_utils_unittest.cc", |
| 232 "function_foreach_unittest.cc", | 233 "function_foreach_unittest.cc", |
| 233 "function_get_label_info_unittest.cc", | 234 "function_get_label_info_unittest.cc", |
| 234 "function_get_path_info_unittest.cc", | 235 "function_get_path_info_unittest.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 } | 280 } |
| 280 | 281 |
| 281 executable("generate_test_gn_data") { | 282 executable("generate_test_gn_data") { |
| 282 sources = [ | 283 sources = [ |
| 283 "generate_test_gn_data.cc", | 284 "generate_test_gn_data.cc", |
| 284 ] | 285 ] |
| 285 deps = [ | 286 deps = [ |
| 286 "//base", | 287 "//base", |
| 287 ] | 288 ] |
| 288 } | 289 } |
| OLD | NEW |