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

Side by Side Diff: runtime/bin/BUILD.gn

Issue 1214933010: These missing dependencies will cause a violation of "gn check" in a future version of gn. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 | no next file » | 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) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 5
6 declare_args() { 6 declare_args() {
7 dart_io_support = false 7 dart_io_support = false
8 } 8 }
9 9
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 defines = [ 137 defines = [
138 "DART_SHARED_LIB", 138 "DART_SHARED_LIB",
139 ] 139 ]
140 } 140 }
141 141
142 142
143 executable("gen_snapshot") { 143 executable("gen_snapshot") {
144 configs += ["..:dart_config"] 144 configs += ["..:dart_config"]
145 deps = [ 145 deps = [
146 ":generate_builtin_cc_file",
147 ":generate_io_cc_file",
148 ":generate_io_patch_cc_file",
149 ":libdart_builtin",
146 ":libdart_nosnapshot", 150 ":libdart_nosnapshot",
147 ":libdart_builtin",
148 ] 151 ]
149 152
150 sources = [ 153 sources = [
151 "address_sanitizer.cc", 154 "address_sanitizer.cc",
152 "gen_snapshot.cc", 155 "gen_snapshot.cc",
153 # Very limited native resolver provided. 156 # Very limited native resolver provided.
154 "builtin_common.cc", 157 "builtin_common.cc",
155 "builtin_gen_snapshot.cc", 158 "builtin_gen_snapshot.cc",
156 "builtin.cc", 159 "builtin.cc",
157 "builtin.h", 160 "builtin.h",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 "log_macos.cc", 235 "log_macos.cc",
233 "log_win.cc", 236 "log_win.cc",
234 "log.h", 237 "log.h",
235 ] 238 ]
236 239
237 include_dirs = [ 240 include_dirs = [
238 "..", 241 "..",
239 "//third_party" 242 "//third_party"
240 ] 243 ]
241 } 244 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698