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

Side by Side Diff: dart/dart.gyp

Issue 11280053: Add dependencies for bots that doesn't build everything. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 'target_name': 'compiler', 8 'target_name': 'compiler',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 'compiler/dart-compiler.gyp:dart_analyzer', 11 'compiler/dart-compiler.gyp:dart_analyzer',
12 ], 12 ],
13 'actions': [] 13 'actions': []
14 }, 14 },
15 { 15 {
16 # 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
18 # suites.
16 'target_name': 'runtime', 19 'target_name': 'runtime',
17 'type': 'none', 20 'type': 'none',
18 'dependencies': [ 21 'dependencies': [
19 'runtime/dart-runtime.gyp:dart', 22 'runtime/dart-runtime.gyp:dart',
20 'runtime/dart-runtime.gyp:dart_no_snapshot', 23 'runtime/dart-runtime.gyp:dart_no_snapshot',
21 'runtime/dart-runtime.gyp:run_vm_tests', 24 'runtime/dart-runtime.gyp:run_vm_tests',
22 'runtime/dart-runtime.gyp:process_test', 25 'runtime/dart-runtime.gyp:process_test',
23 'runtime/dart-runtime.gyp:test_extension', 26 'runtime/dart-runtime.gyp:test_extension',
27 'packages',
24 ], 28 ],
25 }, 29 },
26 { 30 {
27 # Build the SDK. This target is separate from upload_sdk as the 31 # Build the SDK. This target is separate from upload_sdk as the
28 # editor needs to build the SDK without uploading it. 32 # editor needs to build the SDK without uploading it.
29 'target_name': 'create_sdk', 33 'target_name': 'create_sdk',
30 'type': 'none', 34 'type': 'none',
31 'dependencies': [ 35 'dependencies': [
32 'runtime/dart-runtime.gyp:dart', 36 'runtime/dart-runtime.gyp:dart',
33 'utils/compiler/compiler.gyp:dart2js', 37 'utils/compiler/compiler.gyp:dart2js',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 }, 101 },
98 { 102 {
99 'target_name': 'dart2js', 103 'target_name': 'dart2js',
100 'type': 'none', 104 'type': 'none',
101 'dependencies': [ 105 'dependencies': [
102 'third_party/v8/src/d8.gyp:d8', 106 'third_party/v8/src/d8.gyp:d8',
103 'utils/compiler/compiler.gyp:dart2js', 107 'utils/compiler/compiler.gyp:dart2js',
104 ], 108 ],
105 }, 109 },
106 { 110 {
111 # This is the target that is built on the dart2js build bots.
112 # It must depend on anything that is required by the VM test
ricow1 2012/11/19 10:10:07 VM -> dart2js (which is actually also what got com
113 # suites.
107 'target_name': 'dart2js_bot', 114 'target_name': 'dart2js_bot',
108 'type': 'none', 115 'type': 'none',
109 'dependencies': [ 116 'dependencies': [
110 'third_party/v8/src/d8.gyp:d8', 117 'third_party/v8/src/d8.gyp:d8',
111 'create_sdk', 118 'create_sdk',
119 'packages',
112 ], 120 ],
113 }, 121 },
114 { 122 {
115 'target_name': 'api_docs', 123 'target_name': 'api_docs',
116 'type': 'none', 124 'type': 'none',
117 'dependencies': [ 125 'dependencies': [
118 'utils/apidoc/apidoc.gyp:api_docs', 126 'utils/apidoc/apidoc.gyp:api_docs',
119 ], 127 ],
120 }, 128 },
121 { 129 {
122 'target_name': 'samples', 130 'target_name': 'samples',
123 'type': 'none', 131 'type': 'none',
124 'dependencies': [ 132 'dependencies': [
125 'samples/sample_extension/sample_extension.gyp:sample_extension', 133 'samples/sample_extension/sample_extension.gyp:sample_extension',
126 ], 134 ],
127 }, 135 },
128 { 136 {
129 'target_name': 'packages', 137 'target_name': 'packages',
130 'type': 'none', 138 'type': 'none',
131 'dependencies': [ 139 'dependencies': [
132 'pkg/pkg.gyp:pkg_packages', 140 'pkg/pkg.gyp:pkg_packages',
133 ], 141 ],
134 }, 142 },
135 ], 143 ],
136 } 144 }
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