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 '../../content/app/startup_helper_win.cc', |
| 291 'views/app_list_demo.cc', |
| 292 ], |
| 293 'dependencies': [ |
| 294 '../../base/base.gyp:base', |
| 295 '../../content/content.gyp:content', |
| 296 '../../skia/skia.gyp:skia', |
| 297 '../../url/url.gyp:url_lib', |
| 298 '../base/ui_base.gyp:ui_base', |
| 299 '../events/events.gyp:events', |
| 300 '../resources/ui_resources.gyp:ui_resources', |
| 301 '../resources/ui_resources.gyp:ui_test_pak', |
| 302 '../views/views.gyp:views', |
| 303 '../views_content_client/views_content_client.gyp:views_content_clie
nt', |
| 304 'app_list', |
| 305 'app_list_test_support', |
| 306 ], |
| 307 'conditions': [ |
| 308 ['OS=="win"', { |
| 309 'msvs_settings': { |
| 310 'VCLinkerTool': { |
| 311 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 312 }, |
| 313 }, |
| 314 'dependencies': [ |
| 315 '../../sandbox/sandbox.gyp:sandbox', |
| 316 ], |
| 317 }], |
| 318 ], |
| 319 }, |
| 320 ], |
| 321 }], # toolkit_views==1 |
| 322 ], |
283 } | 323 } |
OLD | NEW |