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

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: 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 21 matching lines...) Expand all
32 '<@(corelib_resources)', 32 '<@(corelib_resources)',
33 '<@(compiler_corelib_sources)', 33 '<@(compiler_corelib_sources)',
34 '<@(compiler_corelib_resources)', 34 '<@(compiler_corelib_resources)',
35 'dartc.xml', 35 'dartc.xml',
36 'scripts/dartc.sh', 36 'scripts/dartc.sh',
37 'scripts/dartc_run.sh', 37 'scripts/dartc_run.sh',
38 'scripts/dartc_metrics.sh', 38 'scripts/dartc_metrics.sh',
39 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', 39 '../third_party/args4j/2.0.12/args4j-2.0.12.jar',
40 '../third_party/guava/r09/guava-r09.jar', 40 '../third_party/guava/r09/guava-r09.jar',
41 '../third_party/json/r2_20080312/json.jar', 41 '../third_party/json/r2_20080312/json.jar',
42 '../third_party/rhino/1_7R3/js.jar', 42 '../third_party/rhino/1_7R3/js.jar',
zundel 2012/02/28 20:37:21 I'm not sure if we still need this. I think I forg
scheglov 2012/02/29 22:46:41 Done.
43 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', 43 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar',
44 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', 44 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar',
45 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', 45 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar',
46 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', 46 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar',
47 ], 47 ],
48 'outputs': [ 48 'outputs': [
49 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', 49 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar',
50 '<(PRODUCT_DIR)/compiler/bin/dartc', 50 '<(PRODUCT_DIR)/compiler/bin/dartc',
51 '<(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',
52 '<(PRODUCT_DIR)/compiler/lib/dartc.jar', 52 '<(PRODUCT_DIR)/compiler/lib/dartc.jar',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ], 122 ],
123 'outputs': [ 123 'outputs': [
124 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps', 124 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps',
125 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/dom/dom/dom.dart.deps' , 125 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/dom/dom/dom.dart.deps' ,
126 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/html/html/html.dart.de ps', 126 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/html/html/html.dart.de ps',
127 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json/json/json.dart.de ps', 127 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json/json/json.dart.de ps',
128 ], 128 ],
129 'action': [ 129 'action': [
130 '<(PRODUCT_DIR)/dartc', 'api.dart', 130 '<(PRODUCT_DIR)/dartc', 'api.dart',
131 '--fatal-warnings', '--fatal-type-errors', 131 '--fatal-warnings', '--fatal-type-errors',
132 '--deprecated-generate-code',
133 '-out', '<(INTERMEDIATE_DIR)/<(_target_name)/api', 132 '-out', '<(INTERMEDIATE_DIR)/<(_target_name)/api',
134 ], 133 ],
135 }, 134 },
136 { 135 {
137 'message': 'Packaging dart:core artifacts', 136 'message': 'Packaging dart:core artifacts',
138 'action_name': 'package_corelib_artifacts', 137 'action_name': 'package_corelib_artifacts',
139 'inputs': [ 138 'inputs': [
140 '<(INTERMEDIATE_DIR)/<(_target_name)/corelib.jar.stamp', 139 '<(INTERMEDIATE_DIR)/<(_target_name)/corelib.jar.stamp',
141 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps', 140 '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/core/com/google/dart/c orelib/corelib.dart.deps',
142 ], 141 ],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 }, 194 },
196 ], 195 ],
197 }, 196 },
198 { 197 {
199 # GYP won't generate a catch-all target if there's only one target. 198 # GYP won't generate a catch-all target if there's only one target.
200 'target_name': 'dummy', 199 'target_name': 'dummy',
201 'type': 'none', 200 'type': 'none',
202 }, 201 },
203 ], 202 ],
204 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698