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

Unified Diff: dart/compiler/dart-compiler.gyp

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
Index: dart/compiler/dart-compiler.gyp
diff --git a/dart/compiler/dart-compiler.gyp b/dart/compiler/dart-compiler.gyp
deleted file mode 100644
index 7e589e9e966ab7d1a2eda07b596336169691638e..0000000000000000000000000000000000000000
--- a/dart/compiler/dart-compiler.gyp
+++ /dev/null
@@ -1,80 +0,0 @@
-# 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.
-
-{
- 'includes': [
- 'sources.gypi',
- 'test_sources.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'dart_analyzer',
- 'type': 'none',
- 'conditions': [
- [ 'OS!="win"', {
- 'variables': {
- 'script_suffix': '',
- },
- }],
- [ 'OS=="win"', {
- 'variables': {
- 'script_suffix': '.bat',
- },
- }],
- ],
- 'actions': [
- {
- 'action_name': 'build_dart_analyzer',
- 'inputs': [
- 'sources.gypi',
- 'test_sources.gypi',
- '<@(java_sources)',
- '<@(java_resources)',
- '<@(javatests_sources)',
- '<@(javatests_resources)',
- 'dart_analyzer.xml',
- 'scripts/dart_analyzer.sh',
- 'scripts/dart_analyzer.bat',
- 'scripts/analyzer_metrics.sh',
- '../third_party/args4j/2.0.12/args4j-2.0.12.jar',
- '../third_party/guava/r13/guava-13.0.1.jar',
- '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar',
- '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar',
- '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar',
- '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar',
- ],
- 'outputs': [
- '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar',
- '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer',
- '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer.bat',
- '<(PRODUCT_DIR)/analyzer/util/analyzer/dart_analyzer.jar',
- '<(PRODUCT_DIR)/analyzer/util/analyzer/args4j/2.0.12/args4j-2.0.12.jar',
- '<(PRODUCT_DIR)/analyzer/util/analyzer/guava/r13/guava-13.0.1.jar',
- ],
- 'action' : [
- '../third_party/apache_ant/1.8.4/bin/ant<(script_suffix)',
- '-f', 'dart_analyzer.xml',
- '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)',
- '-Ddist.dir=<(PRODUCT_DIR)/analyzer',
- 'clean',
- 'dist',
- 'tests.jar',
- ],
- 'message': 'Building dart_analyzer.',
- },
- {
- 'action_name': 'copy_tests',
- 'inputs': [ '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar' ],
- 'outputs': [ '<(PRODUCT_DIR)/analyzer/dart_analyzer_tests.jar' ],
- 'action': [ 'cp', '<@(_inputs)', '<@(_outputs)' ]
- },
- ],
- },
- {
- # GYP won't generate a catch-all target if there's only one target.
- 'target_name': 'dummy',
- 'type': 'none',
- },
- ],
-}

Powered by Google App Engine
This is Rietveld 408576698