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

Unified Diff: dart/compiler/dartium.gyp

Issue 9353015: Remove dartc optimizing backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix minor test issues Created 8 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
« no previous file with comments | « dart/compiler/dartc.xml ('k') | dart/compiler/java/com/google/dart/compiler/Backend.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/compiler/dartium.gyp
diff --git a/dart/compiler/dartium.gyp b/dart/compiler/dartium.gyp
index c425b2af57b141f03dad9d3d4d874f88a7a6d46c..91f0ec4c04de6303404e6e426dd035502890c552 100644
--- a/dart/compiler/dartium.gyp
+++ b/dart/compiler/dartium.gyp
@@ -9,15 +9,11 @@
# TODO(iposva): Move shared gyp setup to a shared location.
'../tools/gyp/xcode.gypi',
# TODO(mmendez): Add the appropriate gypi includes here.
- 'closure_compiler_sources.gypi',
],
'targets': [
{
'target_name': 'dartc',
'type': 'none',
- 'dependencies': [
- 'closure_compiler',
- ],
'actions': [
{
'action_name': 'Build and test',
@@ -29,7 +25,6 @@
'action' : [
'../third_party/apache_ant/v1_7_1/bin/ant',
'-Dbuild.dir=<(PRODUCT_DIR)/ant-out',
- '-Dclosure_compiler.jar=<(PRODUCT_DIR)/closure_out/compiler.jar',
'clean',
'dist',
],
@@ -38,30 +33,9 @@
],
},
{
- 'target_name': 'closure_compiler',
+ # GYP won't generate a catch-all target if there's only one target.
+ 'target_name': 'dummy',
'type': 'none',
- 'dependencies': [],
- 'actions': [
- {
- 'action_name': 'build_closure_compiler',
- 'inputs': [
- '<@(closure_compiler_src_sources)',
- '<@(closure_compiler_src_resources)',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/closure_out/compiler.jar'
- ],
- 'action': [
- '../third_party/apache_ant/v1_7_1/bin/ant',
- '-f',
- '../third_party/closure_compiler_src/build.xml',
- '-Dclosure.build.dir=<(PRODUCT_DIR)/closure_out',
- 'clean',
- 'jar',
- ],
- 'message': 'Building closure compiler'
- },
- ]
- }
+ },
],
}
« no previous file with comments | « dart/compiler/dartc.xml ('k') | dart/compiler/java/com/google/dart/compiler/Backend.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698