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

Unified Diff: runtime/bin/bin.gypi

Issue 1023753006: First step towards splitting a full snapshot into a vm isolate snapshot and a (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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 | « no previous file | runtime/bin/gen_snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/bin.gypi
===================================================================
--- runtime/bin/bin.gypi (revision 44745)
+++ runtime/bin/bin.gypi (working copy)
@@ -11,7 +11,8 @@
'builtin_in_cc_file': 'builtin_in.cc',
'builtin_cc_file': '<(gen_source_dir)/builtin_gen.cc',
'snapshot_in_cc_file': 'snapshot_in.cc',
- 'snapshot_bin_file': '<(gen_source_dir)/snapshot_gen.bin',
+ 'vm_isolate_snapshot_bin_file': '<(gen_source_dir)/vm_isolate_snapshot_gen.bin',
+ 'isolate_snapshot_bin_file': '<(gen_source_dir)/isolate_snapshot_gen.bin',
'resources_cc_file': '<(gen_source_dir)/resources_gen.cc',
'bootstrap_resources_cc_file':
'<(gen_source_dir)/bootstrap_resources_gen.cc',
@@ -431,7 +432,8 @@
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)',
],
'outputs': [
- '<(snapshot_bin_file)',
+ '<(vm_isolate_snapshot_bin_file)',
+ '<(isolate_snapshot_bin_file)',
],
'action': [
'python',
@@ -438,10 +440,11 @@
'tools/create_snapshot_bin.py',
'--executable',
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)',
- '--output_bin', '<(snapshot_bin_file)',
+ '--vm_output_bin', '<(vm_isolate_snapshot_bin_file)',
+ '--output_bin', '<(isolate_snapshot_bin_file)',
'--target_os', '<(OS)'
],
- 'message': 'Generating ''<(snapshot_bin_file)'' file.'
+ 'message': 'Generating ''<(vm_isolate_snapshot_bin_file)'' ''<(isolate_snapshot_bin_file)'' files.'
},
],
},
@@ -459,7 +462,8 @@
'inputs': [
'../tools/create_snapshot_file.py',
'<(snapshot_in_cc_file)',
- '<(snapshot_bin_file)'
+ '<(vm_isolate_snapshot_bin_file)',
+ '<(isolate_snapshot_bin_file)',
],
'outputs': [
'<(snapshot_cc_file)',
@@ -467,7 +471,8 @@
'action': [
'python',
'tools/create_snapshot_file.py',
- '--input_bin', '<(snapshot_bin_file)',
+ '--vm_input_bin', '<(vm_isolate_snapshot_bin_file)',
+ '--input_bin', '<(isolate_snapshot_bin_file)',
'--input_cc', '<(snapshot_in_cc_file)',
'--output', '<(snapshot_cc_file)',
],
« no previous file with comments | « no previous file | runtime/bin/gen_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698