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

Unified Diff: compiler/dart-compiler.gyp

Issue 9466041: Removes dependency on v8 from dartc testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated date, copyright notices, build.xml 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 | « compiler/build.xml ('k') | compiler/dartc.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/dart-compiler.gyp
diff --git a/compiler/dart-compiler.gyp b/compiler/dart-compiler.gyp
index 0891784473c184671f28f29ae4b21de6795de30b..a3e7823002e1ea57a15e3172e9472f6c4d3b1173 100644
--- a/compiler/dart-compiler.gyp
+++ b/compiler/dart-compiler.gyp
@@ -1,4 +1,4 @@
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
@@ -16,15 +16,6 @@
{
'target_name': 'dartc',
'type': 'none',
- 'variables': {
- # The Dartium build has this layout:
- # src/dart/compiler/dart.gyp (this file)
- # src/v8/src/d8.gyp
- 'v8_location%': '../../v8',
- },
- 'dependencies': [
- '<(v8_location)/src/d8.gyp:d8',
- ],
'actions': [
{
'action_name': 'build_dartc',
@@ -43,9 +34,7 @@
'<@(compiler_corelib_resources)',
'dartc.xml',
'scripts/dartc.sh',
- 'scripts/dartc_test.sh',
'scripts/dartc_run.sh',
- 'scripts/dartc_size.sh',
'scripts/dartc_metrics.sh',
'../third_party/args4j/2.0.12/args4j-2.0.12.jar',
'../third_party/guava/r09/guava-r09.jar',
@@ -59,7 +48,6 @@
'outputs': [
'<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar',
'<(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/dartc.jar',
'<(PRODUCT_DIR)/compiler/lib/guava/r09/guava-r09.jar',
@@ -78,18 +66,6 @@
'message': 'Building dartc.',
},
{
- 'action_name': 'strip_d8',
- 'inputs': [
- # Add fake dependency on dartc because this action must
- # run after ant is invoked
- # (which will delete <(PRODUCT_DIR)/compiler).
- '<(PRODUCT_DIR)/compiler/bin/dartc',
- '<(PRODUCT_DIR)/d8',
- ],
- 'outputs': [ '<(PRODUCT_DIR)/compiler/bin/d8.<(OS)', ],
- 'action': [ 'strip', '-o', '<@(_outputs)', '<(PRODUCT_DIR)/d8', ],
- },
- {
'action_name': 'copy_tests',
'inputs': [ '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar' ],
'outputs': [ '<(PRODUCT_DIR)/compiler-tests.jar' ],
« no previous file with comments | « compiler/build.xml ('k') | compiler/dartc.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698