Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: tools/gn/BUILD.gn

Issue 1130183007: Add runtime dependency extraction for GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make msvc happy Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/gn/build_settings.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 defines = [ "GN_BUILD" ] 7 defines = [ "GN_BUILD" ]
8 8
9 static_library("gn_lib") { 9 static_library("gn_lib") {
10 sources = [ 10 sources = [
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "output_file.cc", 119 "output_file.cc",
120 "output_file.h", 120 "output_file.h",
121 "parse_tree.cc", 121 "parse_tree.cc",
122 "parse_tree.h", 122 "parse_tree.h",
123 "parser.cc", 123 "parser.cc",
124 "parser.h", 124 "parser.h",
125 "path_output.cc", 125 "path_output.cc",
126 "path_output.h", 126 "path_output.h",
127 "pattern.cc", 127 "pattern.cc",
128 "pattern.h", 128 "pattern.h",
129 "runtime_deps.cc",
130 "runtime_deps.h",
129 "scheduler.cc", 131 "scheduler.cc",
130 "scheduler.h", 132 "scheduler.h",
131 "scope.cc", 133 "scope.cc",
132 "scope.h", 134 "scope.h",
133 "scope_per_file_provider.cc", 135 "scope_per_file_provider.cc",
134 "scope_per_file_provider.h", 136 "scope_per_file_provider.h",
135 "settings.cc", 137 "settings.cc",
136 "settings.h", 138 "settings.h",
137 "setup.cc", 139 "setup.cc",
138 "setup.h", 140 "setup.h",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "ninja_binary_target_writer_unittest.cc", 253 "ninja_binary_target_writer_unittest.cc",
252 "ninja_copy_target_writer_unittest.cc", 254 "ninja_copy_target_writer_unittest.cc",
253 "ninja_group_target_writer_unittest.cc", 255 "ninja_group_target_writer_unittest.cc",
254 "ninja_target_writer_unittest.cc", 256 "ninja_target_writer_unittest.cc",
255 "ninja_toolchain_writer_unittest.cc", 257 "ninja_toolchain_writer_unittest.cc",
256 "operators_unittest.cc", 258 "operators_unittest.cc",
257 "parse_tree_unittest.cc", 259 "parse_tree_unittest.cc",
258 "parser_unittest.cc", 260 "parser_unittest.cc",
259 "path_output_unittest.cc", 261 "path_output_unittest.cc",
260 "pattern_unittest.cc", 262 "pattern_unittest.cc",
263 "runtime_deps_unittest.cc",
261 "scope_per_file_provider_unittest.cc", 264 "scope_per_file_provider_unittest.cc",
262 "scope_unittest.cc", 265 "scope_unittest.cc",
263 "source_dir_unittest.cc", 266 "source_dir_unittest.cc",
264 "string_utils_unittest.cc", 267 "string_utils_unittest.cc",
265 "substitution_pattern_unittest.cc", 268 "substitution_pattern_unittest.cc",
266 "substitution_writer_unittest.cc", 269 "substitution_writer_unittest.cc",
267 "target_generator_unittest.cc", 270 "target_generator_unittest.cc",
268 "target_unittest.cc", 271 "target_unittest.cc",
269 "template_unittest.cc", 272 "template_unittest.cc",
270 "test_with_scope.cc", 273 "test_with_scope.cc",
(...skipping 12 matching lines...) Expand all
283 } 286 }
284 287
285 executable("generate_test_gn_data") { 288 executable("generate_test_gn_data") {
286 sources = [ 289 sources = [
287 "generate_test_gn_data.cc", 290 "generate_test_gn_data.cc",
288 ] 291 ]
289 deps = [ 292 deps = [
290 "//base", 293 "//base",
291 ] 294 ]
292 } 295 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/build_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698