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

Side by Side Diff: compiler/dart-compiler.gyp

Issue 9479013: Remove backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More clean up Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'sources.gypi', 7 'sources.gypi',
8 'test_sources.gypi', 8 'test_sources.gypi',
9 'corelib_sources.gypi', 9 'corelib_sources.gypi',
10 'compiler_corelib_sources.gypi', 10 'compiler_corelib_sources.gypi',
(...skipping 22 matching lines...) Expand all
33 '<@(corelib_resources)', 33 '<@(corelib_resources)',
34 '<@(compiler_corelib_sources)', 34 '<@(compiler_corelib_sources)',
35 '<@(compiler_corelib_resources)', 35 '<@(compiler_corelib_resources)',
36 'dartc.xml', 36 'dartc.xml',
37 'scripts/dartc.sh', 37 'scripts/dartc.sh',
38 'scripts/dartc_run.sh', 38 'scripts/dartc_run.sh',
39 'scripts/dartc_metrics.sh', 39 'scripts/dartc_metrics.sh',
40 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', 40 '../third_party/args4j/2.0.12/args4j-2.0.12.jar',
41 '../third_party/guava/r09/guava-r09.jar', 41 '../third_party/guava/r09/guava-r09.jar',
42 '../third_party/json/r2_20080312/json.jar', 42 '../third_party/json/r2_20080312/json.jar',
43 '../third_party/rhino/1_7R3/js.jar',
44 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', 43 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar',
45 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', 44 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar',
46 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', 45 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar',
47 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', 46 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar',
48 ], 47 ],
49 'outputs': [ 48 'outputs': [
50 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', 49 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar',
51 '<(PRODUCT_DIR)/compiler/bin/dartc', 50 '<(PRODUCT_DIR)/compiler/bin/dartc',
52 '<(PRODUCT_DIR)/compiler/lib/args4j/2.0.12/args4j-2.0.12.jar', 51 '<(PRODUCT_DIR)/compiler/lib/args4j/2.0.12/args4j-2.0.12.jar',
53 '<(PRODUCT_DIR)/compiler/lib/dartc.jar', 52 '<(PRODUCT_DIR)/compiler/lib/dartc.jar',
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'outputs': [ 127 'outputs': [
129 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps', 128 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps',
130 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/dom/dom/dom.dart.deps' , 129 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/dom/dom/dom.dart.deps' ,
131 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/html/html/html.dart.de ps', 130 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/html/html/html.dart.de ps',
132 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json/json/json.dart.de ps', 131 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json/json/json.dart.de ps',
133 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/isolate/isolate/isolat e_compiler.dart.deps', 132 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/isolate/isolate/isolat e_compiler.dart.deps',
134 ], 133 ],
135 'action': [ 134 'action': [
136 '<(PRODUCT_DIR)/dartc', 'api.dart', 135 '<(PRODUCT_DIR)/dartc', 'api.dart',
137 '--fatal-warnings', '--fatal-type-errors', 136 '--fatal-warnings', '--fatal-type-errors',
138 '--deprecated-generate-code',
139 '-out', '<(INTERMEDIATE_DIR)/<(_target_name)/api', 137 '-out', '<(INTERMEDIATE_DIR)/<(_target_name)/api',
140 ], 138 ],
141 }, 139 },
142 { 140 {
143 'message': 'Packaging dart:core artifacts', 141 'message': 'Packaging dart:core artifacts',
144 'action_name': 'package_corelib_artifacts', 142 'action_name': 'package_corelib_artifacts',
145 'inputs': [ 143 'inputs': [
146 '<(INTERMEDIATE_DIR)/<(_target_name)/corelib.jar.stamp', 144 '<(INTERMEDIATE_DIR)/<(_target_name)/corelib.jar.stamp',
147 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps', 145 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps',
148 ], 146 ],
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 }, 215 },
218 ], 216 ],
219 }, 217 },
220 { 218 {
221 # GYP won't generate a catch-all target if there's only one target. 219 # GYP won't generate a catch-all target if there's only one target.
222 'target_name': 'dummy', 220 'target_name': 'dummy',
223 'type': 'none', 221 'type': 'none',
224 }, 222 },
225 ], 223 ],
226 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698