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

Side by Side Diff: dart.gyp

Issue 13100003: Made the default build target "most" which currently contains everything except (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 # Contains all the dependencies that will run by default.
9 # Excludes api_docs.
10 'target_name': 'default',
11 'type': 'none',
12 'dependencies': [
13 'compiler',
14 'runtime',
15 'create_sdk',
16 'upload_sdk',
17 'dart2js',
18 'analyzer',
19 'dartc_bot',
20 'dart2js_bot',
21 'editor',
22 'samples',
23 'packages',
kustermann 2013/04/02 10:34:25 You could sort these dependencies alphabetically.
Andrei Mouravski 2013/04/02 20:51:56 Done.
24 ],
kustermann 2013/04/02 10:34:25 I would remove 'dartc_bot' and 'dart2js_bot' here.
Andrei Mouravski 2013/04/02 20:51:56 Done.
25 },
26 {
8 'target_name': 'compiler', 27 'target_name': 'compiler',
9 'type': 'none', 28 'type': 'none',
10 'dependencies': [ 29 'dependencies': [
11 'compiler/dart-compiler.gyp:dart_analyzer', 30 'compiler/dart-compiler.gyp:dart_analyzer',
12 ], 31 ],
13 'actions': [] 32 'actions': []
14 }, 33 },
15 { 34 {
16 # This is the target that is built on the VM build bots. It 35 # This is the target that is built on the VM build bots. It
17 # must depend on anything that is required by the VM test 36 # must depend on anything that is required by the VM test
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 }, 206 },
188 { 207 {
189 'target_name': 'packages', 208 'target_name': 'packages',
190 'type': 'none', 209 'type': 'none',
191 'dependencies': [ 210 'dependencies': [
192 'pkg/pkg.gyp:pkg_packages', 211 'pkg/pkg.gyp:pkg_packages',
193 ], 212 ],
194 }, 213 },
195 ], 214 ],
196 } 215 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698