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

Side by Side Diff: dart.gyp

Issue 12259026: Added "dartc_bot" target in dart.gyp (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « 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': [
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 }, 88 },
89 { 89 {
90 'target_name': 'dart2js', 90 'target_name': 'dart2js',
91 'type': 'none', 91 'type': 'none',
92 'dependencies': [ 92 'dependencies': [
93 'third_party/v8/src/d8.gyp:d8', 93 'third_party/v8/src/d8.gyp:d8',
94 'utils/compiler/compiler.gyp:dart2js', 94 'utils/compiler/compiler.gyp:dart2js',
95 ], 95 ],
96 }, 96 },
97 { 97 {
98 # This is the target that is built on the dartc bots.
99 # It must depend on anything that is required by dartc
100 # tests.
101 'target_name': 'dartc_bot',
102 'type': 'none',
103 'dependencies': [
104 'create_sdk',
105 'packages',
106 ],
107 },
108 {
98 # This is the target that is built on the dart2js build bots. 109 # This is the target that is built on the dart2js build bots.
99 # It must depend on anything that is required by the dart2js 110 # It must depend on anything that is required by the dart2js
100 # test suites. 111 # test suites.
101 'target_name': 'dart2js_bot', 112 'target_name': 'dart2js_bot',
102 'type': 'none', 113 'type': 'none',
103 'dependencies': [ 114 'dependencies': [
104 'third_party/v8/src/d8.gyp:d8', 115 'third_party/v8/src/d8.gyp:d8',
105 'create_sdk', 116 'create_sdk',
106 'packages', 117 'packages',
107 ], 118 ],
(...skipping 22 matching lines...) Expand all
130 }, 141 },
131 { 142 {
132 'target_name': 'packages', 143 'target_name': 'packages',
133 'type': 'none', 144 'type': 'none',
134 'dependencies': [ 145 'dependencies': [
135 'pkg/pkg.gyp:pkg_packages', 146 'pkg/pkg.gyp:pkg_packages',
136 ], 147 ],
137 }, 148 },
138 ], 149 ],
139 } 150 }
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