| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "err.cc", | 53 "err.cc", |
| 54 "err.h", | 54 "err.h", |
| 55 "escape.cc", | 55 "escape.cc", |
| 56 "escape.h", | 56 "escape.h", |
| 57 "exec_process.cc", | 57 "exec_process.cc", |
| 58 "exec_process.h", | 58 "exec_process.h", |
| 59 "filesystem_utils.cc", | 59 "filesystem_utils.cc", |
| 60 "filesystem_utils.h", | 60 "filesystem_utils.h", |
| 61 "function_exec_script.cc", | 61 "function_exec_script.cc", |
| 62 "function_foreach.cc", | 62 "function_foreach.cc", |
| 63 "function_forward_variables_from.cc", |
| 63 "function_get_label_info.cc", | 64 "function_get_label_info.cc", |
| 64 "function_get_path_info.cc", | 65 "function_get_path_info.cc", |
| 65 "function_get_target_outputs.cc", | 66 "function_get_target_outputs.cc", |
| 66 "function_process_file_template.cc", | 67 "function_process_file_template.cc", |
| 67 "function_read_file.cc", | 68 "function_read_file.cc", |
| 68 "function_rebase_path.cc", | 69 "function_rebase_path.cc", |
| 69 "function_set_default_toolchain.cc", | 70 "function_set_default_toolchain.cc", |
| 70 "function_set_defaults.cc", | 71 "function_set_defaults.cc", |
| 71 "function_template.cc", | 72 "function_template.cc", |
| 72 "function_toolchain.cc", | 73 "function_toolchain.cc", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "action_target_generator_unittest.cc", | 241 "action_target_generator_unittest.cc", |
| 241 "args_unittest.cc", | 242 "args_unittest.cc", |
| 242 "builder_unittest.cc", | 243 "builder_unittest.cc", |
| 243 "c_include_iterator_unittest.cc", | 244 "c_include_iterator_unittest.cc", |
| 244 "command_format_unittest.cc", | 245 "command_format_unittest.cc", |
| 245 "config_values_extractors_unittest.cc", | 246 "config_values_extractors_unittest.cc", |
| 246 "escape_unittest.cc", | 247 "escape_unittest.cc", |
| 247 "exec_process_unittest.cc", | 248 "exec_process_unittest.cc", |
| 248 "filesystem_utils_unittest.cc", | 249 "filesystem_utils_unittest.cc", |
| 249 "function_foreach_unittest.cc", | 250 "function_foreach_unittest.cc", |
| 251 "function_forward_variables_from_unittest.cc", |
| 250 "function_get_label_info_unittest.cc", | 252 "function_get_label_info_unittest.cc", |
| 251 "function_get_path_info_unittest.cc", | 253 "function_get_path_info_unittest.cc", |
| 252 "function_get_target_outputs_unittest.cc", | 254 "function_get_target_outputs_unittest.cc", |
| 253 "function_process_file_template_unittest.cc", | 255 "function_process_file_template_unittest.cc", |
| 254 "function_rebase_path_unittest.cc", | 256 "function_rebase_path_unittest.cc", |
| 255 "function_write_file_unittest.cc", | 257 "function_write_file_unittest.cc", |
| 256 "functions_target_unittest.cc", | 258 "functions_target_unittest.cc", |
| 257 "functions_unittest.cc", | 259 "functions_unittest.cc", |
| 258 "header_checker_unittest.cc", | 260 "header_checker_unittest.cc", |
| 259 "inherited_libraries_unittest.cc", | 261 "inherited_libraries_unittest.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 } | 306 } |
| 305 | 307 |
| 306 executable("generate_test_gn_data") { | 308 executable("generate_test_gn_data") { |
| 307 sources = [ | 309 sources = [ |
| 308 "generate_test_gn_data.cc", | 310 "generate_test_gn_data.cc", |
| 309 ] | 311 ] |
| 310 deps = [ | 312 deps = [ |
| 311 "//base", | 313 "//base", |
| 312 ] | 314 ] |
| 313 } | 315 } |
| OLD | NEW |