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

Side by Side Diff: runtime/dart-runtime.gyp

Issue 1904553004: VM: Split GYP build target 'runtime' to speedup SDK build times. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | « dart.gyp ('k') | 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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 'includes': [ 6 'includes': [
7 'tools/gyp/runtime-configurations.gypi', 7 'tools/gyp/runtime-configurations.gypi',
8 'vm/vm.gypi', 8 'vm/vm.gypi',
9 'observatory/observatory.gypi', 9 'observatory/observatory.gypi',
10 'bin/bin.gypi', 10 'bin/bin.gypi',
11 'third_party/double-conversion/src/double-conversion.gypi', 11 'third_party/double-conversion/src/double-conversion.gypi',
12 ], 12 ],
13 'variables': { 13 'variables': {
14 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 14 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
15 'version_in_cc_file': 'vm/version_in.cc', 15 'version_in_cc_file': 'vm/version_in.cc',
16 'version_cc_file': '<(gen_source_dir)/version.cc', 16 'version_cc_file': '<(gen_source_dir)/version.cc',
17 17
18 'libdart_deps': ['libdart_lib_nosnapshot', 'libdart_lib', 18 'libdart_deps': ['libdart_lib_nosnapshot', 'libdart_lib',
19 'libdart_vm_nosnapshot', 'libdart_vm', 19 'libdart_vm_nosnapshot', 'libdart_vm',
20 'libdart_vm_noopt',
21 'libdart_vm_precompiled_runtime',
22 'libdouble_conversion',], 20 'libdouble_conversion',],
23 }, 21 },
24 'targets': [ 22 'targets': [
25 { 23 {
26 'target_name': 'libdart', 24 'target_name': 'libdart',
27 'type': 'static_library', 25 'type': 'static_library',
28 'dependencies': [ 26 'dependencies': [
29 'libdart_lib', 27 'libdart_lib',
30 'libdart_vm', 28 'libdart_vm',
31 'libdouble_conversion', 29 'libdouble_conversion',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 }], 225 }],
228 ['OS=="linux"', { 226 ['OS=="linux"', {
229 'cflags': [ 227 'cflags': [
230 '-fPIC', 228 '-fPIC',
231 ], 229 ],
232 }], 230 }],
233 ], 231 ],
234 }, 232 },
235 ], 233 ],
236 } 234 }
OLDNEW
« no previous file with comments | « dart.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698