OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |