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

Side by Side Diff: dart.gyp

Issue 1818543002: Add dev_compiler to the SDK build process. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « create_sdk.gyp ('k') | sdk/bin/dartdevc » ('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 'analysis_server',
12 'create_sdk', 12 'create_sdk',
13 'dart2js', 13 'dart2js',
14 'dartanalyzer', 14 'dartanalyzer',
15 'dartdevc',
15 'packages', 16 'packages',
16 'runtime', 17 'runtime',
17 'samples', 18 'samples',
18 ], 19 ],
19 }, 20 },
20 { 21 {
21 # This is the target that is built on the VM build bots. It 22 # This is the target that is built on the VM build bots. It
22 # must depend on anything that is required by the VM test 23 # must depend on anything that is required by the VM test
23 # suites. 24 # suites.
24 'target_name': 'runtime', 25 'target_name': 'runtime',
(...skipping 26 matching lines...) Expand all
51 ], 52 ],
52 }, 53 },
53 { 54 {
54 'target_name': 'dartanalyzer', 55 'target_name': 'dartanalyzer',
55 'type': 'none', 56 'type': 'none',
56 'dependencies': [ 57 'dependencies': [
57 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', 58 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer',
58 ], 59 ],
59 }, 60 },
60 { 61 {
62 'target_name': 'dartdevc',
63 'type': 'none',
64 'dependencies': [
65 'utils/dartdevc/dartdevc.gyp:dartdevc',
66 ],
67 },
68 {
61 'target_name': 'dartfmt', 69 'target_name': 'dartfmt',
62 'type': 'none', 70 'type': 'none',
63 'dependencies': [ 71 'dependencies': [
64 'utils/dartfmt/dartfmt.gyp:dartfmt', 72 'utils/dartfmt/dartfmt.gyp:dartfmt',
65 ], 73 ],
66 }, 74 },
67 { 75 {
68 'target_name': 'analysis_server', 76 'target_name': 'analysis_server',
69 'type': 'none', 77 'type': 'none',
70 'dependencies': [ 78 'dependencies': [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 }, 126 },
119 { 127 {
120 'target_name': 'try', 128 'target_name': 'try',
121 'type': 'none', 129 'type': 'none',
122 'dependencies': [ 130 'dependencies': [
123 'site/try/build_try.gyp:try_site', 131 'site/try/build_try.gyp:try_site',
124 ], 132 ],
125 }, 133 },
126 ], 134 ],
127 } 135 }
OLDNEW
« no previous file with comments | « create_sdk.gyp ('k') | sdk/bin/dartdevc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698