| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "builder_unittest.cc", | 177 "builder_unittest.cc", |
| 178 "c_include_iterator_unittest.cc", | 178 "c_include_iterator_unittest.cc", |
| 179 "config_values_extractors_unittest.cc", | 179 "config_values_extractors_unittest.cc", |
| 180 "escape_unittest.cc", | 180 "escape_unittest.cc", |
| 181 "filesystem_utils_unittest.cc", | 181 "filesystem_utils_unittest.cc", |
| 182 "file_template_unittest.cc", | 182 "file_template_unittest.cc", |
| 183 "function_foreach_unittest.cc", | 183 "function_foreach_unittest.cc", |
| 184 "function_get_label_info_unittest.cc", | 184 "function_get_label_info_unittest.cc", |
| 185 "function_get_target_outputs_unittest.cc", | 185 "function_get_target_outputs_unittest.cc", |
| 186 "function_rebase_path_unittest.cc", | 186 "function_rebase_path_unittest.cc", |
| 187 "function_write_file_unittest.cc", |
| 187 "functions_unittest.cc", | 188 "functions_unittest.cc", |
| 188 "header_checker_unittest.cc", | 189 "header_checker_unittest.cc", |
| 189 "input_conversion_unittest.cc", | 190 "input_conversion_unittest.cc", |
| 190 "label_unittest.cc", | 191 "label_unittest.cc", |
| 191 "loader_unittest.cc", | 192 "loader_unittest.cc", |
| 192 "ninja_action_target_writer_unittest.cc", | 193 "ninja_action_target_writer_unittest.cc", |
| 193 "ninja_binary_target_writer_unittest.cc", | 194 "ninja_binary_target_writer_unittest.cc", |
| 194 "ninja_copy_target_writer_unittest.cc", | 195 "ninja_copy_target_writer_unittest.cc", |
| 195 "ninja_helper_unittest.cc", | 196 "ninja_helper_unittest.cc", |
| 196 "ninja_target_writer_unittest.cc", | 197 "ninja_target_writer_unittest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 217 "//base/test:run_all_unittests", | 218 "//base/test:run_all_unittests", |
| 218 "//base/test:test_support", | 219 "//base/test:test_support", |
| 219 "//testing/gtest", | 220 "//testing/gtest", |
| 220 ] | 221 ] |
| 221 } | 222 } |
| 222 | 223 |
| 223 executable("generate_test_gn_data") { | 224 executable("generate_test_gn_data") { |
| 224 sources = [ "generate_test_gn_data.cc" ] | 225 sources = [ "generate_test_gn_data.cc" ] |
| 225 deps = [ "//base" ] | 226 deps = [ "//base" ] |
| 226 } | 227 } |
| OLD | NEW |