Index: dart/compiler/dart-compiler.gyp |
diff --git a/dart/compiler/dart-compiler.gyp b/dart/compiler/dart-compiler.gyp |
index 4d3eba2f38400df03ff52c370aca5342913690d8..7588ab06d7e6df59c60f3a3bf2f92e00ddfc9172 100644 |
--- a/dart/compiler/dart-compiler.gyp |
+++ b/dart/compiler/dart-compiler.gyp |
@@ -8,7 +8,6 @@ |
'test_sources.gypi', |
'corelib_sources.gypi', |
'compiler_corelib_sources.gypi', |
- 'closure_compiler_sources.gypi', |
'domlib_sources.gypi', |
'htmllib_sources.gypi', |
'jsonlib_sources.gypi', |
@@ -25,7 +24,6 @@ |
}, |
'dependencies': [ |
'<(v8_location)/src/d8.gyp:d8', |
- 'closure_compiler', |
], |
'actions': [ |
{ |
@@ -50,7 +48,6 @@ |
'scripts/dartc_size.sh', |
'scripts/dartc_metrics.sh', |
'../third_party/args4j/2.0.12/args4j-2.0.12.jar', |
- '<(PRODUCT_DIR)/closure_out/compiler.jar', |
'../third_party/guava/r09/guava-r09.jar', |
'../third_party/json/r2_20080312/json.jar', |
'../third_party/rhino/1_7R3/js.jar', |
@@ -64,7 +61,6 @@ |
'<(PRODUCT_DIR)/compiler/bin/dartc', |
'<(PRODUCT_DIR)/compiler/bin/dartc_test', |
'<(PRODUCT_DIR)/compiler/lib/args4j/2.0.12/args4j-2.0.12.jar', |
- '<(PRODUCT_DIR)/compiler/lib/closure-compiler.jar', |
'<(PRODUCT_DIR)/compiler/lib/dartc.jar', |
'<(PRODUCT_DIR)/compiler/lib/guava/r09/guava-r09.jar', |
'<(PRODUCT_DIR)/compiler/lib/json/r2_20080312/json.jar', |
@@ -75,7 +71,6 @@ |
'-f', 'dartc.xml', |
'-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', |
'-Ddist.dir=<(PRODUCT_DIR)/compiler', |
- '-Dclosure_compiler.jar=<(PRODUCT_DIR)/closure_out/compiler.jar', |
'clean', |
'dist', |
'tests.jar', |
@@ -137,7 +132,6 @@ |
'-f', 'dartc.xml', |
'-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', |
'-Ddist.dir=<(PRODUCT_DIR)/compiler', |
- '-Dclosure_compiler.jar=<(PRODUCT_DIR)/closure_out/compiler.jar', |
'syslib_clean', |
'syslib', |
], |
@@ -225,32 +219,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_sources.gypi', |
- '../third_party/closure_compiler_src/build.xml', |
- '<@(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' |
- }, |
- ] |
}, |
], |
} |