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 gyp_file = "gn.gyp" | 5 gyp_file = "gn.gyp" |
6 external = true | 6 external = true |
7 | 7 |
8 # Not defined when doing a GYP build, this lets the code key off of GN-specific | 8 # Not defined when doing a GYP build, this lets the code key off of GN-specific |
9 # features (the last change target). This can be removed when the last change | 9 # features (the last change target). This can be removed when the last change |
10 # target is supported by the GN->GYP converter (see is_gyp conditional for that | 10 # target is supported by the GN->GYP converter (see is_gyp conditional for that |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "function_set_defaults.cc", | 62 "function_set_defaults.cc", |
63 "function_template.cc", | 63 "function_template.cc", |
64 "function_toolchain.cc", | 64 "function_toolchain.cc", |
65 "function_write_file.cc", | 65 "function_write_file.cc", |
66 "group_target_generator.cc", | 66 "group_target_generator.cc", |
67 "group_target_generator.h", | 67 "group_target_generator.h", |
68 "gyp_binary_target_writer.cc", | 68 "gyp_binary_target_writer.cc", |
69 "gyp_binary_target_writer.h", | 69 "gyp_binary_target_writer.h", |
70 "gyp_helper.cc", | 70 "gyp_helper.cc", |
71 "gyp_helper.h", | 71 "gyp_helper.h", |
| 72 "gyp_script_target_writer.cc", |
| 73 "gyp_script_target_writer.h", |
72 "gyp_target_writer.cc", | 74 "gyp_target_writer.cc", |
73 "gyp_target_writer.h", | 75 "gyp_target_writer.h", |
74 "import_manager.cc", | 76 "import_manager.cc", |
75 "import_manager.h", | 77 "import_manager.h", |
76 "input_conversion.cc", | 78 "input_conversion.cc", |
77 "input_conversion.h", | 79 "input_conversion.h", |
78 "input_file.cc", | 80 "input_file.cc", |
79 "input_file.h", | 81 "input_file.h", |
80 "input_file_manager.cc", | 82 "input_file_manager.cc", |
81 "input_file_manager.h", | 83 "input_file_manager.h", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 } | 181 } |
180 } | 182 } |
181 | 183 |
182 test("gn_unittests") { | 184 test("gn_unittests") { |
183 sources = [ | 185 sources = [ |
184 "builder_unittest.cc", | 186 "builder_unittest.cc", |
185 "escape_unittest.cc", | 187 "escape_unittest.cc", |
186 "file_template_unittest.cc", | 188 "file_template_unittest.cc", |
187 "filesystem_utils_unittest.cc", | 189 "filesystem_utils_unittest.cc", |
188 "function_rebase_path_unittest.cc", | 190 "function_rebase_path_unittest.cc", |
| 191 "gyp_script_target_writer_unittest.cc", |
189 "input_conversion_unittest.cc", | 192 "input_conversion_unittest.cc", |
190 "label_unittest.cc", | 193 "label_unittest.cc", |
191 "loader_unittest.cc", | 194 "loader_unittest.cc", |
192 "ninja_binary_target_writer_unittest.cc", | 195 "ninja_binary_target_writer_unittest.cc", |
193 "ninja_copy_target_writer_unittest.cc", | 196 "ninja_copy_target_writer_unittest.cc", |
194 "ninja_helper_unittest.cc", | 197 "ninja_helper_unittest.cc", |
195 "ninja_script_target_writer_unittest.cc", | 198 "ninja_script_target_writer_unittest.cc", |
196 "parser_unittest.cc", | 199 "parser_unittest.cc", |
197 "path_output_unittest.cc", | 200 "path_output_unittest.cc", |
198 "pattern_unittest.cc", | 201 "pattern_unittest.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
210 "//base:run_all_unittests", | 213 "//base:run_all_unittests", |
211 "//base:test_support_base", | 214 "//base:test_support_base", |
212 "//testing:gtest", | 215 "//testing:gtest", |
213 ] | 216 ] |
214 } | 217 } |
215 | 218 |
216 executable("generate_test_gn_data") { | 219 executable("generate_test_gn_data") { |
217 sources = [ "generate_test_gn_data.cc" ] | 220 sources = [ "generate_test_gn_data.cc" ] |
218 deps = [ "//base" ] | 221 deps = [ "//base" ] |
219 } | 222 } |
OLD | NEW |