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

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: 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
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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 '../lib/vmservice_sources.gypi', 374 '../lib/vmservice_sources.gypi',
375 ], 375 ],
376 'sources': [ 376 'sources': [
377 'bootstrap_nocore.cc', 377 'bootstrap_nocore.cc',
378 ], 378 ],
379 'include_dirs': [ 379 'include_dirs': [
380 '..', 380 '..',
381 ], 381 ],
382 }, 382 },
383 { 383 {
384 'target_name': 'libdart_lib_precompiled',
rmacnak 2016/02/19 00:54:32 precompiled_runtime
Florian Schneider 2016/02/19 17:42:29 Done.
385 'type': 'static_library',
386 'toolsets':['host', 'target'],
387 'includes': [
388 '../lib/async_sources.gypi',
389 '../lib/collection_sources.gypi',
390 '../lib/core_sources.gypi',
391 '../lib/developer_sources.gypi',
392 '../lib/internal_sources.gypi',
393 '../lib/isolate_sources.gypi',
394 '../lib/math_sources.gypi',
395 '../lib/mirrors_sources.gypi',
396 '../lib/typed_data_sources.gypi',
397 '../lib/vmservice_sources.gypi',
398 ],
399 'sources': [
400 'bootstrap_nocore.cc',
401 ],
402 'defines': [
403 'DART_PRECOMPILED_RUNTIME',
404 ],
405 'include_dirs': [
406 '..',
407 ],
408 },
409 {
384 'target_name': 'generate_async_cc_file', 410 'target_name': 'generate_async_cc_file',
385 'type': 'none', 411 'type': 'none',
386 'toolsets':['host'], 412 'toolsets':['host'],
387 'includes': [ 413 'includes': [
388 '../../sdk/lib/async/async_sources.gypi', 414 '../../sdk/lib/async/async_sources.gypi',
389 ], 415 ],
390 'sources/': [ 416 'sources/': [
391 # Exclude all .[cc|h] files. 417 # Exclude all .[cc|h] files.
392 # This is only here for reference. Excludes happen after 418 # This is only here for reference. Excludes happen after
393 # variable expansion, so the script has to do its own 419 # variable expansion, so the script has to do its own
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 '--var_name', 'dart::Bootstrap::_vmservice_patch_paths_', 1348 '--var_name', 'dart::Bootstrap::_vmservice_patch_paths_',
1323 '--library_name', 'dart:_vmservice', 1349 '--library_name', 'dart:_vmservice',
1324 '<@(_sources)', 1350 '<@(_sources)',
1325 ], 1351 ],
1326 'message': 'Generating ''<(vmservice_patch_cc_file)'' file.' 1352 'message': 'Generating ''<(vmservice_patch_cc_file)'' file.'
1327 }, 1353 },
1328 ] 1354 ]
1329 }, 1355 },
1330 ] 1356 ]
1331 } 1357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698