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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 "gyp_action_target_writer_unittest.cc", | 191 "gyp_action_target_writer_unittest.cc", |
192 "gyp_binary_target_writer_unittest.cc", | 192 "gyp_binary_target_writer_unittest.cc", |
193 "input_conversion_unittest.cc", | 193 "input_conversion_unittest.cc", |
194 "label_unittest.cc", | 194 "label_unittest.cc", |
195 "loader_unittest.cc", | 195 "loader_unittest.cc", |
196 "ninja_action_target_writer_unittest.cc", | 196 "ninja_action_target_writer_unittest.cc", |
197 "ninja_binary_target_writer_unittest.cc", | 197 "ninja_binary_target_writer_unittest.cc", |
198 "ninja_copy_target_writer_unittest.cc", | 198 "ninja_copy_target_writer_unittest.cc", |
199 "ninja_helper_unittest.cc", | 199 "ninja_helper_unittest.cc", |
200 "operators_unittest.cc", | 200 "operators_unittest.cc", |
| 201 "parse_tree_unittest.cc", |
201 "parser_unittest.cc", | 202 "parser_unittest.cc", |
202 "path_output_unittest.cc", | 203 "path_output_unittest.cc", |
203 "pattern_unittest.cc", | 204 "pattern_unittest.cc", |
204 "scope_per_file_provider_unittest.cc", | 205 "scope_per_file_provider_unittest.cc", |
205 "scope_unittest.cc", | 206 "scope_unittest.cc", |
206 "source_dir_unittest.cc", | 207 "source_dir_unittest.cc", |
207 "string_utils_unittest.cc", | 208 "string_utils_unittest.cc", |
208 "target_generator_unittest.cc", | 209 "target_generator_unittest.cc", |
209 "target_unittest.cc", | 210 "target_unittest.cc", |
210 "test_with_scope.cc", | 211 "test_with_scope.cc", |
211 "test_with_scope.h", | 212 "test_with_scope.h", |
212 "tokenizer_unittest.cc", | 213 "tokenizer_unittest.cc", |
213 ] | 214 ] |
214 deps = [ | 215 deps = [ |
215 ":gn_lib", | 216 ":gn_lib", |
216 "//base/test:run_all_unittests", | 217 "//base/test:run_all_unittests", |
217 "//base/test:test_support_base", | 218 "//base/test:test_support_base", |
218 "//testing/gtest", | 219 "//testing/gtest", |
219 ] | 220 ] |
220 } | 221 } |
221 | 222 |
222 executable("generate_test_gn_data") { | 223 executable("generate_test_gn_data") { |
223 sources = [ "generate_test_gn_data.cc" ] | 224 sources = [ "generate_test_gn_data.cc" ] |
224 deps = [ "//base" ] | 225 deps = [ "//base" ] |
225 } | 226 } |
OLD | NEW |