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

Side by Side Diff: dart.gyp

Issue 368993002: Build bits to add an analysis_server snapshot to the SDK. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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 | « create_sdk.gyp ('k') | tools/create_sdk.py » ('j') | 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 'target_name': 'most', 8 'target_name': 'most',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 'analysis_server',
11 'analyzer_java', 12 'analyzer_java',
12 'create_sdk', 13 'create_sdk',
13 'dart2js', 14 'dart2js',
14 'dartanalyzer', 15 'dartanalyzer',
15 'editor', 16 'editor',
16 'packages', 17 'packages',
17 'runtime', 18 'runtime',
18 'samples', 19 'samples',
19 ], 20 ],
20 }, 21 },
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 ], 64 ],
64 }, 65 },
65 { 66 {
66 'target_name': 'dartfmt', 67 'target_name': 'dartfmt',
67 'type': 'none', 68 'type': 'none',
68 'dependencies': [ 69 'dependencies': [
69 'utils/dartfmt/dartfmt.gyp:dartfmt', 70 'utils/dartfmt/dartfmt.gyp:dartfmt',
70 ], 71 ],
71 }, 72 },
72 { 73 {
74 'target_name': 'analysis_server',
75 'type': 'none',
76 'dependencies': [
77 'utils/analysis_server/analysis_server.gyp:analysis_server',
78 ],
79 },
80 {
73 # This is the target that is built on the dart2dart bots. 81 # This is the target that is built on the dart2dart bots.
74 # It must depend on anything that is required by dart2dart 82 # It must depend on anything that is required by dart2dart
75 # tests. 83 # tests.
76 'target_name': 'dart2dart_bot', 84 'target_name': 'dart2dart_bot',
77 'type': 'none', 85 'type': 'none',
78 'dependencies': [ 86 'dependencies': [
79 'create_sdk', 87 'create_sdk',
80 'packages', 88 'packages',
81 ], 89 ],
82 }, 90 },
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 }, 192 },
185 { 193 {
186 'target_name': 'try', 194 'target_name': 'try',
187 'type': 'none', 195 'type': 'none',
188 'dependencies': [ 196 'dependencies': [
189 'site/try/build_try.gyp:try_site', 197 'site/try/build_try.gyp:try_site',
190 ], 198 ],
191 }, 199 },
192 ], 200 ],
193 } 201 }
OLDNEW
« no previous file with comments | « create_sdk.gyp ('k') | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698