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

Side by Side Diff: dart.gyp

Issue 240723006: Replace Java based analyzer with Dart based analyzer when building SDK (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 6 years, 7 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') | editor/analyzer.gyp » ('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 'analyzer', 11 'dartanalyzer',
12 'create_sdk', 12 'create_sdk',
13 'dart2js', 13 'dart2js',
14 'editor', 14 'editor',
15 'packages', 15 'packages',
16 'runtime', 16 'runtime',
17 'samples', 17 'samples',
18 ], 18 ],
19 }, 19 },
20 { 20 {
21 # This is the target that is built on the VM build bots. It 21 # This is the target that is built on the VM build bots. It
(...skipping 19 matching lines...) Expand all
41 ], 41 ],
42 }, 42 },
43 { 43 {
44 'target_name': 'dart2js', 44 'target_name': 'dart2js',
45 'type': 'none', 45 'type': 'none',
46 'dependencies': [ 46 'dependencies': [
47 'utils/compiler/compiler.gyp:dart2js', 47 'utils/compiler/compiler.gyp:dart2js',
48 ], 48 ],
49 }, 49 },
50 { 50 {
51 'target_name': 'analyzer', 51 'target_name': 'dartanalyzer',
52 'type': 'none', 52 'type': 'none',
53 'dependencies': [ 53 'dependencies': [
54 'editor/analyzer.gyp:analyzer', 54 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer',
55 ], 55 ],
56 }, 56 },
57 { 57 {
58 'target_name': 'dartfmt', 58 'target_name': 'dartfmt',
59 'type': 'none', 59 'type': 'none',
60 'dependencies': [ 60 'dependencies': [
61 'utils/dartfmt/dartfmt.gyp:dartfmt', 61 'utils/dartfmt/dartfmt.gyp:dartfmt',
62 ], 62 ],
63 }, 63 },
64 { 64 {
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 }, 163 },
164 { 164 {
165 'target_name': 'try', 165 'target_name': 'try',
166 'type': 'none', 166 'type': 'none',
167 'dependencies': [ 167 'dependencies': [
168 'site/try/build_try.gyp:try_site', 168 'site/try/build_try.gyp:try_site',
169 ], 169 ],
170 }, 170 },
171 ], 171 ],
172 } 172 }
OLDNEW
« no previous file with comments | « create_sdk.gyp ('k') | editor/analyzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698