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