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

Side by Side Diff: runtime/BUILD.gn

Issue 2984503002: Add missing config to libdart_jit (Closed)
Patch Set: Created 3 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 import("runtime_args.gni") 5 import("runtime_args.gni")
6 6
7 config("dart_public_config") { 7 config("dart_public_config") {
8 include_dirs = [ "." ] 8 include_dirs = [ "." ]
9 } 9 }
10 10
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 "vm/debugger_api_impl.cc", 190 "vm/debugger_api_impl.cc",
191 "vm/mirrors_api_impl.cc", 191 "vm/mirrors_api_impl.cc",
192 "vm/native_api_impl.cc", 192 "vm/native_api_impl.cc",
193 "vm/version.h", 193 "vm/version.h",
194 ] 194 ]
195 defines = [ "DART_SHARED_LIB" ] 195 defines = [ "DART_SHARED_LIB" ]
196 } 196 }
197 } 197 }
198 198
199 libdart_library("libdart_jit") { 199 libdart_library("libdart_jit") {
200 extra_configs = [ ":dart_maybe_product_config" ]
200 extra_deps = [ 201 extra_deps = [
201 "vm:libdart_platform", 202 "vm:libdart_platform",
202 "vm:libdart_lib_jit", 203 "vm:libdart_lib_jit",
203 "vm:libdart_vm_jit", 204 "vm:libdart_vm_jit",
204 ] 205 ]
205 } 206 }
206 207
207 libdart_library("libdart_jit_product") { 208 libdart_library("libdart_jit_product") {
208 extra_configs = [ ":dart_product_config" ] 209 extra_configs = [ ":dart_product_config" ]
209 extra_deps = [ 210 extra_deps = [
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 309
309 script = "../tools/make_version.py" 310 script = "../tools/make_version.py"
310 args = [ 311 args = [
311 "--quiet", 312 "--quiet",
312 "--output", 313 "--output",
313 rebase_path(output, root_build_dir), 314 rebase_path(output, root_build_dir),
314 "--input", 315 "--input",
315 rebase_path("vm/version_in.cc", root_build_dir), 316 rebase_path("vm/version_in.cc", root_build_dir),
316 ] 317 ]
317 } 318 }
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