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': [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
191 '--out', '<(PRODUCT_DIR)/editor', | 191 '--out', '<(PRODUCT_DIR)/editor', |
192 '--build', '<(INTERMEDIATE_DIR)', | 192 '--build', '<(INTERMEDIATE_DIR)', |
193 ], | 193 ], |
194 'message': 'Creating editor.', | 194 'message': 'Creating editor.', |
195 }, | 195 }, |
196 ], | 196 ], |
197 }, | 197 }, |
198 { | 198 { |
199 'target_name': 'samples', | 199 'target_name': 'samples', |
200 'type': 'none', | 200 'type': 'none', |
201 'dependencies': [ | 201 'dependencies': [], |
vsm
2013/09/26 00:01:02
I think you can delete this line, but please test.
| |
202 'samples/openglui/openglui.gyp:openglui_sample', | |
203 ], | |
204 'conditions': [ | 202 'conditions': [ |
205 ['OS!="android"', { | 203 ['OS!="android"', { |
206 'dependencies': [ | 204 'dependencies': [ |
207 'samples/sample_extension/sample_extension.gyp:sample_extension', | 205 'samples/sample_extension/sample_extension.gyp:sample_extension', |
208 ], | 206 ], |
209 }, | 207 }, |
210 ], | 208 ], |
211 ] | 209 ] |
212 }, | 210 }, |
213 { | 211 { |
214 'target_name': 'packages', | 212 'target_name': 'packages', |
215 'type': 'none', | 213 'type': 'none', |
216 'dependencies': [ | 214 'dependencies': [ |
217 'pkg/pkg.gyp:pkg_packages', | 215 'pkg/pkg.gyp:pkg_packages', |
218 ], | 216 ], |
219 }, | 217 }, |
220 ], | 218 ], |
221 } | 219 } |
OLD | NEW |