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

Unified Diff: vm/vm.gypi

Issue 10834284: - Split Dart core libraries into shared sources and patch sources. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « vm/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/vm.gypi
===================================================================
--- vm/vm.gypi (revision 10607)
+++ vm/vm.gypi (working copy)
@@ -6,10 +6,15 @@
'variables': {
'builtin_in_cc_file': '../bin/builtin_in.cc',
'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc',
+ 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc',
'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc',
+ 'corelib_impl_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_patch_gen.cc',
'math_cc_file': '<(SHARED_INTERMEDIATE_DIR)/math_gen.cc',
+ 'math_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/math_patch_gen.cc',
'mirrors_cc_file': '<(SHARED_INTERMEDIATE_DIR)/mirrors_gen.cc',
+ 'mirrors_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/mirrors_patch_gen.cc',
'isolate_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_gen.cc',
+ 'isolate_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_patch_gen.cc',
'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat',
'snapshot_test_in_dat_file': 'snapshot_test_in.dat',
'snapshot_test_dart_file': 'snapshot_test.dart',
@@ -50,10 +55,15 @@
'type': 'static_library',
'dependencies': [
'generate_corelib_cc_file',
+ 'generate_corelib_patch_cc_file',
'generate_corelib_impl_cc_file',
+ 'generate_corelib_impl_patch_cc_file',
'generate_math_cc_file',
+ 'generate_math_patch_cc_file',
'generate_isolate_cc_file',
+ 'generate_isolate_patch_cc_file',
'generate_mirrors_cc_file',
+ 'generate_mirrors_patch_cc_file',
],
'includes': [
'../lib/lib_sources.gypi',
@@ -65,10 +75,15 @@
'bootstrap.cc',
# Include generated source files.
'<(corelib_cc_file)',
+ '<(corelib_patch_cc_file)',
'<(corelib_impl_cc_file)',
+ '<(corelib_impl_patch_cc_file)',
'<(math_cc_file)',
+ '<(math_patch_cc_file)',
'<(isolate_cc_file)',
+ '<(isolate_patch_cc_file)',
'<(mirrors_cc_file)',
+ '<(mirrors_patch_cc_file)',
],
'include_dirs': [
'..',
@@ -94,8 +109,6 @@
'target_name': 'generate_corelib_cc_file',
'type': 'none',
'includes': [
- # Load the runtime implementation sources.
- '../lib/lib_sources.gypi',
# Load the shared core library sources.
'../../corelib/src/corelib_sources.gypi',
],
@@ -131,11 +144,47 @@
]
},
{
+ 'target_name': 'generate_corelib_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the runtime implementation sources.
+ '../lib/lib_sources.gypi',
+ ],
+ 'sources/': [
+ # Exclude all .[cc|h] files.
+ # This is only here for reference. Excludes happen after
+ # variable expansion, so the script has to do its own
+ # exclude processing of the sources being passed.
+ ['exclude', '\\.cc|h$'],
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_corelib_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(corelib_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(corelib_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::corelib_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(corelib_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_corelib_impl_cc_file',
'type': 'none',
'includes': [
- # Load the runtime implementation sources.
- '../lib/lib_impl_sources.gypi',
# Load the shared core library sources.
'../../corelib/src/implementation/corelib_impl_sources.gypi',
],
@@ -171,6 +220,44 @@
]
},
{
+ 'target_name': 'generate_corelib_impl_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the runtime implementation sources.
+ '../lib/lib_impl_sources.gypi',
+ ],
+ 'sources/': [
+ # Exclude all .[cc|h] files.
+ # This is only here for reference. Excludes happen after
+ # variable expansion, so the script has to do its own
+ # exclude processing of the sources being passed.
+ ['exclude', '\\.cc|h$'],
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_corelib_impl_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(corelib_impl_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(corelib_impl_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::corelib_impl_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(corelib_impl_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_math_cc_file',
'type': 'none',
'includes': [
@@ -209,11 +296,49 @@
]
},
{
+ 'target_name': 'generate_math_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the shared math library sources.
+ '../lib/math_sources.gypi',
+ ],
+ 'sources/': [
+ # Exclude all .[cc|h] files.
+ # This is only here for reference. Excludes happen after
+ # variable expansion, so the script has to do its own
+ # exclude processing of the sources being passed.
+ ['exclude', '\\.cc|h$'],
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_math_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(math_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(math_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::math_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(math_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_mirrors_cc_file',
'type': 'none',
'includes': [
# Load the shared core library sources.
- '../lib/mirrors_sources.gypi',
+ '../../lib/mirrors/mirrors_sources.gypi',
],
'sources/': [
# Exclude all .[cc|h] files.
@@ -247,11 +372,49 @@
]
},
{
+ 'target_name': 'generate_mirrors_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the patch sources.
+ '../lib/mirrors_sources.gypi',
+ ],
+ 'sources/': [
+ # Exclude all .[cc|h] files.
+ # This is only here for reference. Excludes happen after
+ # variable expansion, so the script has to do its own
+ # exclude processing of the sources being passed.
+ ['exclude', '\\.cc|h$'],
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_mirrors_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(mirrors_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(mirrors_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::mirrors_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(mirrors_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_isolate_cc_file',
'type': 'none',
'includes': [
# Load the runtime implementation sources.
- '../lib/isolate_sources.gypi',
+ '../../lib/isolate/isolate_sources.gypi',
],
'sources/': [
# Exclude all .[cc|h] files.
@@ -285,6 +448,44 @@
]
},
{
+ 'target_name': 'generate_isolate_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the runtime implementation sources.
+ '../lib/isolate_sources.gypi',
+ ],
+ 'sources/': [
+ # Exclude all .[cc|h] files.
+ # This is only here for reference. Excludes happen after
+ # variable expansion, so the script has to do its own
+ # exclude processing of the sources being passed.
+ ['exclude', '\\.cc|h$'],
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_isolate_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(isolate_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(isolate_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::isolate_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(isolate_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_snapshot_test_dat_file',
'type': 'none',
'actions': [
« no previous file with comments | « vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698