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

Unified Diff: dart/runtime/vm/vm.gypi

Issue 14173005: Update dart:mirrors to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also use _symbol_dev.Symbol.getName in dart2js Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/runtime/vm/object.cc ('k') | dart/sdk/lib/_collection_dev/collection_dev.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/vm.gypi
diff --git a/dart/runtime/vm/vm.gypi b/dart/runtime/vm/vm.gypi
index 1cd4c5f95dd5a78b482801e9f4b63f5115a68b88..eaf38652faaa985f1400ff4c80707e3ec890f30c 100644
--- a/dart/runtime/vm/vm.gypi
+++ b/dart/runtime/vm/vm.gypi
@@ -12,6 +12,7 @@
'collection_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_gen.cc',
'collection_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_patch_gen.cc',
'collection_dev_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_dev_gen.cc',
+ 'collection_dev_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_dev_patch_gen.cc',
'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc',
'math_cc_file': '<(SHARED_INTERMEDIATE_DIR)/math_gen.cc',
'math_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/math_patch_gen.cc',
@@ -98,6 +99,7 @@
'generate_collection_cc_file',
'generate_collection_patch_cc_file',
'generate_collection_dev_cc_file',
+ 'generate_collection_dev_patch_cc_file',
'generate_crypto_cc_file',
'generate_math_cc_file',
'generate_math_patch_cc_file',
@@ -131,6 +133,7 @@
'<(collection_cc_file)',
'<(collection_patch_cc_file)',
'<(collection_dev_cc_file)',
+ '<(collection_dev_patch_cc_file)',
'<(crypto_cc_file)',
'<(math_cc_file)',
'<(math_patch_cc_file)',
@@ -376,6 +379,44 @@
]
},
{
+ 'target_name': 'generate_collection_dev_patch_cc_file',
+ 'type': 'none',
+ 'includes': [
+ # Load the runtime implementation sources.
+ '../lib/collection_dev_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_collection_dev_patch_cc',
+ 'inputs': [
+ '../tools/create_string_literal.py',
+ '<(builtin_in_cc_file)',
+ '<@(_sources)',
+ ],
+ 'outputs': [
+ '<(collection_dev_patch_cc_file)',
+ ],
+ 'action': [
+ 'python',
+ 'tools/create_string_literal.py',
+ '--output', '<(collection_dev_patch_cc_file)',
+ '--input_cc', '<(builtin_in_cc_file)',
+ '--include', 'vm/bootstrap.h',
+ '--var_name', 'dart::Bootstrap::collection_dev_patch_',
+ '<@(_sources)',
+ ],
+ 'message': 'Generating ''<(collection_dev_patch_cc_file)'' file.'
+ },
+ ]
+ },
+ {
'target_name': 'generate_collection_dev_cc_file',
'type': 'none',
'variables': {
« no previous file with comments | « dart/runtime/vm/object.cc ('k') | dart/sdk/lib/_collection_dev/collection_dev.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698