| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "source_file.cc", | 138 "source_file.cc", |
| 139 "source_file.h", | 139 "source_file.h", |
| 140 "standard_out.cc", | 140 "standard_out.cc", |
| 141 "standard_out.h", | 141 "standard_out.h", |
| 142 "string_utils.cc", | 142 "string_utils.cc", |
| 143 "string_utils.h", | 143 "string_utils.h", |
| 144 "target.cc", | 144 "target.cc", |
| 145 "target.h", | 145 "target.h", |
| 146 "target_generator.cc", | 146 "target_generator.cc", |
| 147 "target_generator.h", | 147 "target_generator.h", |
| 148 "template.cc", |
| 149 "template.h", |
| 148 "token.cc", | 150 "token.cc", |
| 149 "token.h", | 151 "token.h", |
| 150 "tokenizer.cc", | 152 "tokenizer.cc", |
| 151 "tokenizer.h", | 153 "tokenizer.h", |
| 152 "toolchain.cc", | 154 "toolchain.cc", |
| 153 "toolchain.h", | 155 "toolchain.h", |
| 154 "trace.cc", | 156 "trace.cc", |
| 155 "trace.h", | 157 "trace.h", |
| 156 "value.cc", | 158 "value.cc", |
| 157 "value.h", | 159 "value.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 181 } | 183 } |
| 182 } | 184 } |
| 183 | 185 |
| 184 test("gn_unittests") { | 186 test("gn_unittests") { |
| 185 sources = [ | 187 sources = [ |
| 186 "builder_unittest.cc", | 188 "builder_unittest.cc", |
| 187 "escape_unittest.cc", | 189 "escape_unittest.cc", |
| 188 "filesystem_utils_unittest.cc", | 190 "filesystem_utils_unittest.cc", |
| 189 "file_template_unittest.cc", | 191 "file_template_unittest.cc", |
| 190 "function_rebase_path_unittest.cc", | 192 "function_rebase_path_unittest.cc", |
| 193 "functions_unittest.cc", |
| 191 "gyp_action_target_writer_unittest.cc", | 194 "gyp_action_target_writer_unittest.cc", |
| 192 "gyp_binary_target_writer_unittest.cc", | 195 "gyp_binary_target_writer_unittest.cc", |
| 193 "input_conversion_unittest.cc", | 196 "input_conversion_unittest.cc", |
| 194 "label_unittest.cc", | 197 "label_unittest.cc", |
| 195 "loader_unittest.cc", | 198 "loader_unittest.cc", |
| 196 "ninja_action_target_writer_unittest.cc", | 199 "ninja_action_target_writer_unittest.cc", |
| 197 "ninja_binary_target_writer_unittest.cc", | 200 "ninja_binary_target_writer_unittest.cc", |
| 198 "ninja_copy_target_writer_unittest.cc", | 201 "ninja_copy_target_writer_unittest.cc", |
| 199 "ninja_helper_unittest.cc", | 202 "ninja_helper_unittest.cc", |
| 200 "operators_unittest.cc", | 203 "operators_unittest.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 217 "//base/test:run_all_unittests", | 220 "//base/test:run_all_unittests", |
| 218 "//base/test:test_support_base", | 221 "//base/test:test_support_base", |
| 219 "//testing/gtest", | 222 "//testing/gtest", |
| 220 ] | 223 ] |
| 221 } | 224 } |
| 222 | 225 |
| 223 executable("generate_test_gn_data") { | 226 executable("generate_test_gn_data") { |
| 224 sources = [ "generate_test_gn_data.cc" ] | 227 sources = [ "generate_test_gn_data.cc" ] |
| 225 deps = [ "//base" ] | 228 deps = [ "//base" ] |
| 226 } | 229 } |
| OLD | NEW |