OLD | NEW |
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', | |
16 'packages', | 15 'packages', |
17 'runtime', | 16 'runtime', |
18 'samples', | 17 'samples', |
19 ], | 18 ], |
20 }, | 19 }, |
21 { | 20 { |
22 # 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 |
23 # must depend on anything that is required by the VM test | 22 # must depend on anything that is required by the VM test |
24 # suites. | 23 # suites. |
25 'target_name': 'runtime', | 24 'target_name': 'runtime', |
(...skipping 26 matching lines...) Expand all Loading... |
52 ], | 51 ], |
53 }, | 52 }, |
54 { | 53 { |
55 'target_name': 'dartanalyzer', | 54 'target_name': 'dartanalyzer', |
56 'type': 'none', | 55 'type': 'none', |
57 'dependencies': [ | 56 'dependencies': [ |
58 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', | 57 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', |
59 ], | 58 ], |
60 }, | 59 }, |
61 { | 60 { |
62 'target_name': 'dartdevc', | |
63 'type': 'none', | |
64 'dependencies': [ | |
65 'utils/dartdevc/dartdevc.gyp:dartdevc', | |
66 ], | |
67 }, | |
68 { | |
69 'target_name': 'dartfmt', | 61 'target_name': 'dartfmt', |
70 'type': 'none', | 62 'type': 'none', |
71 'dependencies': [ | 63 'dependencies': [ |
72 'utils/dartfmt/dartfmt.gyp:dartfmt', | 64 'utils/dartfmt/dartfmt.gyp:dartfmt', |
73 ], | 65 ], |
74 }, | 66 }, |
75 { | 67 { |
76 'target_name': 'analysis_server', | 68 'target_name': 'analysis_server', |
77 'type': 'none', | 69 'type': 'none', |
78 'dependencies': [ | 70 'dependencies': [ |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 }, | 118 }, |
127 { | 119 { |
128 'target_name': 'try', | 120 'target_name': 'try', |
129 'type': 'none', | 121 'type': 'none', |
130 'dependencies': [ | 122 'dependencies': [ |
131 'site/try/build_try.gyp:try_site', | 123 'site/try/build_try.gyp:try_site', |
132 ], | 124 ], |
133 }, | 125 }, |
134 ], | 126 ], |
135 } | 127 } |
OLD | NEW |