OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 ['OS=="win" and win_use_allocator_shim==1', { | 273 ['OS=="win" and win_use_allocator_shim==1', { |
274 'dependencies': [ | 274 'dependencies': [ |
275 '../../base/allocator/allocator.gyp:allocator', | 275 '../../base/allocator/allocator.gyp:allocator', |
276 ], | 276 ], |
277 }], | 277 }], |
278 ], | 278 ], |
279 # Disable c4267 warnings until we fix size_t to int truncations. | 279 # Disable c4267 warnings until we fix size_t to int truncations. |
280 'msvs_disabled_warnings': [ 4267, ], | 280 'msvs_disabled_warnings': [ 4267, ], |
281 }, | 281 }, |
282 ], | 282 ], |
| 283 'conditions': [ |
| 284 ['toolkit_views==1', { |
| 285 'targets': [ |
| 286 { |
| 287 'target_name': 'app_list_demo', |
| 288 'type': 'executable', |
| 289 'sources': [ |
| 290 'views/app_list_demo.cc', |
| 291 ], |
| 292 'dependencies': [ |
| 293 '../../base/base.gyp:base', |
| 294 '../../content/content.gyp:content', |
| 295 '../../skia/skia.gyp:skia', |
| 296 '../base/ui_base.gyp:ui_base', |
| 297 '../resources/ui_resources.gyp:ui_resources', |
| 298 '../resources/ui_resources.gyp:ui_test_pak', |
| 299 '../views/examples/examples.gyp:views_examples_with_content_lib', |
| 300 '../views/views.gyp:views', |
| 301 'app_list', |
| 302 'app_list_test_support', |
| 303 ], |
| 304 }, |
| 305 ], |
| 306 }], # toolkit_views==1 |
| 307 ], |
283 } | 308 } |
OLD | NEW |