| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "escape.cc", | 45 "escape.cc", |
| 46 "escape.h", | 46 "escape.h", |
| 47 "file_template.cc", | 47 "file_template.cc", |
| 48 "file_template.h", | 48 "file_template.h", |
| 49 "filesystem_utils.cc", | 49 "filesystem_utils.cc", |
| 50 "filesystem_utils.h", | 50 "filesystem_utils.h", |
| 51 "functions.cc", | 51 "functions.cc", |
| 52 "functions.h", | 52 "functions.h", |
| 53 "functions_target.cc", | 53 "functions_target.cc", |
| 54 "function_exec_script.cc", | 54 "function_exec_script.cc", |
| 55 "function_get_label_info.cc", |
| 55 "function_get_target_outputs.cc", | 56 "function_get_target_outputs.cc", |
| 56 "function_process_file_template.cc", | 57 "function_process_file_template.cc", |
| 57 "function_read_file.cc", | 58 "function_read_file.cc", |
| 58 "function_rebase_path.cc", | 59 "function_rebase_path.cc", |
| 59 "function_set_default_toolchain.cc", | 60 "function_set_default_toolchain.cc", |
| 60 "function_set_defaults.cc", | 61 "function_set_defaults.cc", |
| 61 "function_template.cc", | 62 "function_template.cc", |
| 62 "function_toolchain.cc", | 63 "function_toolchain.cc", |
| 63 "function_write_file.cc", | 64 "function_write_file.cc", |
| 64 "group_target_generator.cc", | 65 "group_target_generator.cc", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 } | 172 } |
| 172 | 173 |
| 173 test("gn_unittests") { | 174 test("gn_unittests") { |
| 174 sources = [ | 175 sources = [ |
| 175 "builder_unittest.cc", | 176 "builder_unittest.cc", |
| 176 "c_include_iterator_unittest.cc", | 177 "c_include_iterator_unittest.cc", |
| 177 "config_values_extractors_unittest.cc", | 178 "config_values_extractors_unittest.cc", |
| 178 "escape_unittest.cc", | 179 "escape_unittest.cc", |
| 179 "filesystem_utils_unittest.cc", | 180 "filesystem_utils_unittest.cc", |
| 180 "file_template_unittest.cc", | 181 "file_template_unittest.cc", |
| 182 "function_get_label_info_unittest.cc", |
| 181 "function_get_target_outputs_unittest.cc", | 183 "function_get_target_outputs_unittest.cc", |
| 182 "function_rebase_path_unittest.cc", | 184 "function_rebase_path_unittest.cc", |
| 183 "functions_unittest.cc", | 185 "functions_unittest.cc", |
| 184 "header_checker_unittest.cc", | 186 "header_checker_unittest.cc", |
| 185 "input_conversion_unittest.cc", | 187 "input_conversion_unittest.cc", |
| 186 "label_unittest.cc", | 188 "label_unittest.cc", |
| 187 "loader_unittest.cc", | 189 "loader_unittest.cc", |
| 188 "ninja_action_target_writer_unittest.cc", | 190 "ninja_action_target_writer_unittest.cc", |
| 189 "ninja_binary_target_writer_unittest.cc", | 191 "ninja_binary_target_writer_unittest.cc", |
| 190 "ninja_copy_target_writer_unittest.cc", | 192 "ninja_copy_target_writer_unittest.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 213 "//base/test:run_all_unittests", | 215 "//base/test:run_all_unittests", |
| 214 "//base/test:test_support", | 216 "//base/test:test_support", |
| 215 "//testing/gtest", | 217 "//testing/gtest", |
| 216 ] | 218 ] |
| 217 } | 219 } |
| 218 | 220 |
| 219 executable("generate_test_gn_data") { | 221 executable("generate_test_gn_data") { |
| 220 sources = [ "generate_test_gn_data.cc" ] | 222 sources = [ "generate_test_gn_data.cc" ] |
| 221 deps = [ "//base" ] | 223 deps = [ "//base" ] |
| 222 } | 224 } |
| OLD | NEW |