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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/vm.gypi
diff --git a/runtime/vm/vm.gypi b/runtime/vm/vm.gypi
index a7338773db6eeab0782368c411ca5838cfab65d6..f9d0ac036a6a6c05adb2c63ed9e5ea744fadaafa 100644
--- a/runtime/vm/vm.gypi
+++ b/runtime/vm/vm.gypi
@@ -381,6 +381,32 @@
],
},
{
+ 'target_name': 'libdart_lib_precompiled',
rmacnak 2016/02/19 00:54:32 precompiled_runtime
Florian Schneider 2016/02/19 17:42:29 Done.
+ 'type': 'static_library',
+ 'toolsets':['host', 'target'],
+ 'includes': [
+ '../lib/async_sources.gypi',
+ '../lib/collection_sources.gypi',
+ '../lib/core_sources.gypi',
+ '../lib/developer_sources.gypi',
+ '../lib/internal_sources.gypi',
+ '../lib/isolate_sources.gypi',
+ '../lib/math_sources.gypi',
+ '../lib/mirrors_sources.gypi',
+ '../lib/typed_data_sources.gypi',
+ '../lib/vmservice_sources.gypi',
+ ],
+ 'sources': [
+ 'bootstrap_nocore.cc',
+ ],
+ 'defines': [
+ 'DART_PRECOMPILED_RUNTIME',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ },
+ {
'target_name': 'generate_async_cc_file',
'type': 'none',
'toolsets':['host'],

Powered by Google App Engine
This is Rietveld 408576698