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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 ['OS=="win" and win_use_allocator_shim==1', { | 274 ['OS=="win" and win_use_allocator_shim==1', { |
275 'dependencies': [ | 275 'dependencies': [ |
276 '../../base/allocator/allocator.gyp:allocator', | 276 '../../base/allocator/allocator.gyp:allocator', |
277 ], | 277 ], |
278 }], | 278 }], |
279 ], | 279 ], |
280 # Disable c4267 warnings until we fix size_t to int truncations. | 280 # Disable c4267 warnings until we fix size_t to int truncations. |
281 'msvs_disabled_warnings': [ 4267, ], | 281 'msvs_disabled_warnings': [ 4267, ], |
282 }, | 282 }, |
283 ], | 283 ], |
| 284 'conditions': [ |
| 285 ['toolkit_views==1', { |
| 286 'targets': [ |
| 287 { |
| 288 'target_name': 'app_list_demo', |
| 289 'type': 'executable', |
| 290 'sources': [ |
| 291 '../../content/app/startup_helper_win.cc', |
| 292 'views/app_list_demo.cc', |
| 293 ], |
| 294 'dependencies': [ |
| 295 '../../base/base.gyp:base', |
| 296 '../../content/content.gyp:content', |
| 297 '../../skia/skia.gyp:skia', |
| 298 '../../url/url.gyp:url_lib', |
| 299 '../base/ui_base.gyp:ui_base', |
| 300 '../events/events.gyp:events', |
| 301 '../resources/ui_resources.gyp:ui_resources', |
| 302 '../resources/ui_resources.gyp:ui_test_pak', |
| 303 '../views/views.gyp:views', |
| 304 '../views_content_client/views_content_client.gyp:views_content_clie
nt', |
| 305 'app_list', |
| 306 'app_list_test_support', |
| 307 ], |
| 308 'conditions': [ |
| 309 ['OS=="win"', { |
| 310 'msvs_settings': { |
| 311 'VCLinkerTool': { |
| 312 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 313 }, |
| 314 }, |
| 315 'dependencies': [ |
| 316 '../../sandbox/sandbox.gyp:sandbox', |
| 317 ], |
| 318 }], |
| 319 ], |
| 320 }, |
| 321 ], |
| 322 }], # toolkit_views==1 |
| 323 ], |
284 } | 324 } |
OLD | NEW |