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

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 dependencies.
9 'target_name': 'everything',
10 'type': 'none',
11 'dependencies': [
12 # Most dependencies.
13 'default',
14 # All other targets.
15 'api_docs',
16 'dartc_bot',
17 'dart2js_bot',
18 ],
19 },
20 {
21 # Contains all the dependencies that will run by default.
22 # Excludes api_docs.
23 'target_name': 'default',
24 'type': 'none',
25 'dependencies': [
26 'analyzer',
27 'compiler',
28 'create_sdk',
29 'dart2js',
30 'editor',
31 'packages',
32 'runtime',
33 'samples',
34 'upload_sdk',
35 ],
36 },
37 {
8 'target_name': 'compiler', 38 'target_name': 'compiler',
9 'type': 'none', 39 'type': 'none',
10 'dependencies': [ 40 'dependencies': [
11 'compiler/dart-compiler.gyp:dart_analyzer', 41 'compiler/dart-compiler.gyp:dart_analyzer',
12 ], 42 ],
13 'actions': [] 43 'actions': []
14 }, 44 },
15 { 45 {
16 # This is the target that is built on the VM build bots. It 46 # 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 47 # must depend on anything that is required by the VM test
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 }, 217 },
188 { 218 {
189 'target_name': 'packages', 219 'target_name': 'packages',
190 'type': 'none', 220 'type': 'none',
191 'dependencies': [ 221 'dependencies': [
192 'pkg/pkg.gyp:pkg_packages', 222 'pkg/pkg.gyp:pkg_packages',
193 ], 223 ],
194 }, 224 },
195 ], 225 ],
196 } 226 }
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