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

Side by Side Diff: runtime/vm/vm.gypi

Issue 1714743002: VM: Separate precompilation-specific code, make flags const. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fix build after merge Created 4 years, 10 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 | « runtime/vm/stub_code_x64.cc ('k') | runtime/vm/vm_sources.gypi » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 'variables': { 6 'variables': {
7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 'libgen_in_cc_file': '../lib/libgen_in.cc', 8 'libgen_in_cc_file': '../lib/libgen_in.cc',
9 'builtin_in_cc_file': '../bin/builtin_in.cc', 9 'builtin_in_cc_file': '../bin/builtin_in.cc',
10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc',
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 '../lib/vmservice_sources.gypi', 298 '../lib/vmservice_sources.gypi',
299 ], 299 ],
300 'sources': [ 300 'sources': [
301 'bootstrap_nocore.cc', 301 'bootstrap_nocore.cc',
302 ], 302 ],
303 'include_dirs': [ 303 'include_dirs': [
304 '..', 304 '..',
305 ], 305 ],
306 }, 306 },
307 { 307 {
308 'target_name': 'libdart_lib_precompiled_runtime',
309 'type': 'static_library',
310 'toolsets':['host', 'target'],
311 'includes': [
312 '../lib/async_sources.gypi',
313 '../lib/collection_sources.gypi',
314 '../lib/core_sources.gypi',
315 '../lib/developer_sources.gypi',
316 '../lib/internal_sources.gypi',
317 '../lib/isolate_sources.gypi',
318 '../lib/math_sources.gypi',
319 '../lib/mirrors_sources.gypi',
320 '../lib/typed_data_sources.gypi',
321 '../lib/vmservice_sources.gypi',
322 ],
323 'sources': [
324 'bootstrap_nocore.cc',
325 ],
326 'defines': [
327 'DART_PRECOMPILED_RUNTIME',
328 ],
329 'include_dirs': [
330 '..',
331 ],
332 },
333 {
308 'target_name': 'generate_async_cc_file', 334 'target_name': 'generate_async_cc_file',
309 'type': 'none', 335 'type': 'none',
310 'toolsets':['host'], 336 'toolsets':['host'],
311 'includes': [ 337 'includes': [
312 '../../sdk/lib/async/async_sources.gypi', 338 '../../sdk/lib/async/async_sources.gypi',
313 ], 339 ],
314 'sources/': [ 340 'sources/': [
315 # Exclude all .[cc|h] files. 341 # Exclude all .[cc|h] files.
316 # This is only here for reference. Excludes happen after 342 # This is only here for reference. Excludes happen after
317 # variable expansion, so the script has to do its own 343 # variable expansion, so the script has to do its own
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 '--var_name', 'dart::Bootstrap::_vmservice_patch_paths_', 1272 '--var_name', 'dart::Bootstrap::_vmservice_patch_paths_',
1247 '--library_name', 'dart:_vmservice', 1273 '--library_name', 'dart:_vmservice',
1248 '<@(_sources)', 1274 '<@(_sources)',
1249 ], 1275 ],
1250 'message': 'Generating ''<(vmservice_patch_cc_file)'' file.' 1276 'message': 'Generating ''<(vmservice_patch_cc_file)'' file.'
1251 }, 1277 },
1252 ] 1278 ]
1253 }, 1279 },
1254 ] 1280 ]
1255 } 1281 }
OLDNEW
« no previous file with comments | « runtime/vm/stub_code_x64.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698