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

Side by Side Diff: dart.gyp

Issue 12262040: Add support for building the new analyzer using gyp. (Closed) Base URL: http://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 | editor/analyzer.gyp » ('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': '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 'target_name': 'analyzer',
99 'type': 'none',
100 'dependencies': [
101 'create_sdk',
102 'editor/analyzer.gyp:analyzer',
103 ],
104 },
105 {
98 # This is the target that is built on the dartc bots. 106 # This is the target that is built on the dartc bots.
99 # It must depend on anything that is required by dartc 107 # It must depend on anything that is required by dartc
100 # tests. 108 # tests.
101 'target_name': 'dartc_bot', 109 'target_name': 'dartc_bot',
102 'type': 'none', 110 'type': 'none',
103 'dependencies': [ 111 'dependencies': [
104 'create_sdk', 112 'create_sdk',
105 'packages', 113 'packages',
106 ], 114 ],
107 }, 115 },
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 }, 149 },
142 { 150 {
143 'target_name': 'packages', 151 'target_name': 'packages',
144 'type': 'none', 152 'type': 'none',
145 'dependencies': [ 153 'dependencies': [
146 'pkg/pkg.gyp:pkg_packages', 154 'pkg/pkg.gyp:pkg_packages',
147 ], 155 ],
148 }, 156 },
149 ], 157 ],
150 } 158 }
OLDNEW
« no previous file with comments | « no previous file | editor/analyzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698