| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "escape_unittest.cc", | 282 "escape_unittest.cc", |
| 283 "exec_process_unittest.cc", | 283 "exec_process_unittest.cc", |
| 284 "filesystem_utils_unittest.cc", | 284 "filesystem_utils_unittest.cc", |
| 285 "function_foreach_unittest.cc", | 285 "function_foreach_unittest.cc", |
| 286 "function_forward_variables_from_unittest.cc", | 286 "function_forward_variables_from_unittest.cc", |
| 287 "function_get_label_info_unittest.cc", | 287 "function_get_label_info_unittest.cc", |
| 288 "function_get_path_info_unittest.cc", | 288 "function_get_path_info_unittest.cc", |
| 289 "function_get_target_outputs_unittest.cc", | 289 "function_get_target_outputs_unittest.cc", |
| 290 "function_process_file_template_unittest.cc", | 290 "function_process_file_template_unittest.cc", |
| 291 "function_rebase_path_unittest.cc", | 291 "function_rebase_path_unittest.cc", |
| 292 "function_toolchain_unittest.cc", |
| 292 "function_write_file_unittest.cc", | 293 "function_write_file_unittest.cc", |
| 293 "functions_target_unittest.cc", | 294 "functions_target_unittest.cc", |
| 294 "functions_unittest.cc", | 295 "functions_unittest.cc", |
| 295 "header_checker_unittest.cc", | 296 "header_checker_unittest.cc", |
| 296 "inherited_libraries_unittest.cc", | 297 "inherited_libraries_unittest.cc", |
| 297 "input_conversion_unittest.cc", | 298 "input_conversion_unittest.cc", |
| 298 "label_pattern_unittest.cc", | 299 "label_pattern_unittest.cc", |
| 299 "label_unittest.cc", | 300 "label_unittest.cc", |
| 300 "loader_unittest.cc", | 301 "loader_unittest.cc", |
| 301 "ninja_action_target_writer_unittest.cc", | 302 "ninja_action_target_writer_unittest.cc", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "format_test_data/", | 338 "format_test_data/", |
| 338 ] | 339 ] |
| 339 | 340 |
| 340 deps = [ | 341 deps = [ |
| 341 ":gn_lib", | 342 ":gn_lib", |
| 342 "//base/test:run_all_unittests", | 343 "//base/test:run_all_unittests", |
| 343 "//base/test:test_support", | 344 "//base/test:test_support", |
| 344 "//testing/gtest", | 345 "//testing/gtest", |
| 345 ] | 346 ] |
| 346 } | 347 } |
| OLD | NEW |