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

Side by Side Diff: dart.gyp

Issue 1126363003: Remove dart2dart support from testing scripts and status files (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address comments Created 5 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 | « no previous file | pkg/pkg.status » ('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': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ], 71 ],
72 }, 72 },
73 { 73 {
74 'target_name': 'analysis_server', 74 'target_name': 'analysis_server',
75 'type': 'none', 75 'type': 'none',
76 'dependencies': [ 76 'dependencies': [
77 'utils/analysis_server/analysis_server.gyp:analysis_server', 77 'utils/analysis_server/analysis_server.gyp:analysis_server',
78 ], 78 ],
79 }, 79 },
80 { 80 {
81 # This is the target that is built on the dart2dart bots.
82 # It must depend on anything that is required by dart2dart
83 # tests.
84 'target_name': 'dart2dart_bot',
85 'type': 'none',
86 'dependencies': [
87 'create_sdk',
88 'packages',
89 ],
90 },
91 {
92 # This is the target that is built on the dartc bots.
93 # It must depend on anything that is required by dartc
94 # tests.
95 'target_name': 'dartc_bot',
96 'type': 'none',
97 'dependencies': [
98 'create_sdk',
99 'packages',
100 ],
101 },
102 {
103 # This is the target that is built on the dart2js build bots. 81 # This is the target that is built on the dart2js build bots.
104 # It must depend on anything that is required by the dart2js 82 # It must depend on anything that is required by the dart2js
105 # test suites. 83 # test suites.
106 'target_name': 'dart2js_bot', 84 'target_name': 'dart2js_bot',
107 'type': 'none', 85 'type': 'none',
108 'dependencies': [ 86 'dependencies': [
109 'create_sdk', 87 'create_sdk',
110 'packages', 88 'packages',
111 'try', 89 'try',
112 ], 90 ],
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 }, 170 },
193 { 171 {
194 'target_name': 'try', 172 'target_name': 'try',
195 'type': 'none', 173 'type': 'none',
196 'dependencies': [ 174 'dependencies': [
197 'site/try/build_try.gyp:try_site', 175 'site/try/build_try.gyp:try_site',
198 ], 176 ],
199 }, 177 },
200 ], 178 ],
201 } 179 }
OLDNEW
« no previous file with comments | « no previous file | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698