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

Unified Diff: bin/bin.gypi

Issue 8682031: - Remove the redundant dart_bin executable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/bin.gypi
===================================================================
--- bin/bin.gypi (revision 1827)
+++ bin/bin.gypi (working copy)
@@ -125,7 +125,7 @@
},
{
# Completely statically linked dart binary.
- 'target_name': 'dart_no_snapshot_bin',
+ 'target_name': 'dart_no_snapshot',
'type': 'executable',
'dependencies': [
'libdart',
@@ -147,7 +147,7 @@
},
{
# Completely statically linked binary for generating snapshots.
- 'target_name': 'gen_snapshot_bin',
+ 'target_name': 'gen_snapshot',
'type': 'executable',
'dependencies': [
'libdart',
@@ -176,14 +176,14 @@
}],
],
'dependencies': [
- 'gen_snapshot_bin',
+ 'gen_snapshot',
],
'actions': [
{
'action_name': 'generate_snapshot_file',
'inputs': [
'../tools/create_snapshot_file.py',
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot_bin<(EXECUTABLE_SUFFIX)',
+ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)',
'<(snapshot_in_cc_file)',
],
'outputs': [
@@ -192,7 +192,7 @@
'action': [
'python',
'tools/create_snapshot_file.py',
- '--executable', '<(PRODUCT_DIR)/gen_snapshot_bin',
+ '--executable', '<(PRODUCT_DIR)/gen_snapshot',
'--output_bin', '<(snapshot_bin_file)',
'--input_cc', '<(snapshot_in_cc_file)',
'--output', '<(snapshot_cc_file)',
@@ -202,28 +202,6 @@
]
},
{
- 'target_name': 'dart_bin',
- 'type': 'executable',
- 'dependencies': [
- 'libdart',
- 'libdart_builtin',
- 'generate_snapshot_file',
- ],
- 'include_dirs': [
- '..',
- ],
- 'sources': [
- 'main.cc',
- '<(snapshot_cc_file)',
- ],
- 'conditions': [
- ['OS=="win"', {
- 'link_settings': {
- 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
- },
- }]],
- },
- {
'target_name': 'dart',
'type': 'executable',
'dependencies': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698