| 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_target_outputs.cc", |
| 55 "function_process_file_template.cc", | 56 "function_process_file_template.cc", |
| 56 "function_read_file.cc", | 57 "function_read_file.cc", |
| 57 "function_rebase_path.cc", | 58 "function_rebase_path.cc", |
| 58 "function_set_default_toolchain.cc", | 59 "function_set_default_toolchain.cc", |
| 59 "function_set_defaults.cc", | 60 "function_set_defaults.cc", |
| 60 "function_template.cc", | 61 "function_template.cc", |
| 61 "function_toolchain.cc", | 62 "function_toolchain.cc", |
| 62 "function_write_file.cc", | 63 "function_write_file.cc", |
| 63 "group_target_generator.cc", | 64 "group_target_generator.cc", |
| 64 "group_target_generator.h", | 65 "group_target_generator.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 171 } |
| 171 | 172 |
| 172 test("gn_unittests") { | 173 test("gn_unittests") { |
| 173 sources = [ | 174 sources = [ |
| 174 "builder_unittest.cc", | 175 "builder_unittest.cc", |
| 175 "c_include_iterator_unittest.cc", | 176 "c_include_iterator_unittest.cc", |
| 176 "config_values_extractors_unittest.cc", | 177 "config_values_extractors_unittest.cc", |
| 177 "escape_unittest.cc", | 178 "escape_unittest.cc", |
| 178 "filesystem_utils_unittest.cc", | 179 "filesystem_utils_unittest.cc", |
| 179 "file_template_unittest.cc", | 180 "file_template_unittest.cc", |
| 181 "function_get_target_outputs_unittest.cc", |
| 180 "function_rebase_path_unittest.cc", | 182 "function_rebase_path_unittest.cc", |
| 181 "functions_unittest.cc", | 183 "functions_unittest.cc", |
| 182 "header_checker_unittest.cc", | 184 "header_checker_unittest.cc", |
| 183 "input_conversion_unittest.cc", | 185 "input_conversion_unittest.cc", |
| 184 "label_unittest.cc", | 186 "label_unittest.cc", |
| 185 "loader_unittest.cc", | 187 "loader_unittest.cc", |
| 186 "ninja_action_target_writer_unittest.cc", | 188 "ninja_action_target_writer_unittest.cc", |
| 187 "ninja_binary_target_writer_unittest.cc", | 189 "ninja_binary_target_writer_unittest.cc", |
| 188 "ninja_copy_target_writer_unittest.cc", | 190 "ninja_copy_target_writer_unittest.cc", |
| 189 "ninja_helper_unittest.cc", | 191 "ninja_helper_unittest.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 211 "//base/test:run_all_unittests", | 213 "//base/test:run_all_unittests", |
| 212 "//base/test:test_support", | 214 "//base/test:test_support", |
| 213 "//testing/gtest", | 215 "//testing/gtest", |
| 214 ] | 216 ] |
| 215 } | 217 } |
| 216 | 218 |
| 217 executable("generate_test_gn_data") { | 219 executable("generate_test_gn_data") { |
| 218 sources = [ "generate_test_gn_data.cc" ] | 220 sources = [ "generate_test_gn_data.cc" ] |
| 219 deps = [ "//base" ] | 221 deps = [ "//base" ] |
| 220 } | 222 } |
| OLD | NEW |