OLD | NEW |
1 | 1 |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 { | 6 { |
7 'variables': { | 7 'variables': { |
8 # TODO(dmaclach): can we pick this up some other way? Right now it's | 8 # TODO(dmaclach): can we pick this up some other way? Right now it's |
9 # duplicated from chrome.gyp | 9 # duplicated from chrome.gyp |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 'host/daemon_controller_common_win.cc', | 420 'host/daemon_controller_common_win.cc', |
421 'host/daemon_controller_common_win.h', | 421 'host/daemon_controller_common_win.h', |
422 'host/elevated_controller.rc', | 422 'host/elevated_controller.rc', |
423 'host/elevated_controller_module_win.cc', | 423 'host/elevated_controller_module_win.cc', |
424 'host/elevated_controller_win.cc', | 424 'host/elevated_controller_win.cc', |
425 'host/elevated_controller_win.h', | 425 'host/elevated_controller_win.h', |
426 'host/verify_config_window_win.cc', | 426 'host/verify_config_window_win.cc', |
427 'host/verify_config_window_win.h', | 427 'host/verify_config_window_win.h', |
428 '<(SHARED_INTERMEDIATE_DIR)/remoting/elevated_controller_version.rc' | 428 '<(SHARED_INTERMEDIATE_DIR)/remoting/elevated_controller_version.rc' |
429 ], | 429 ], |
| 430 'link_settings': { |
| 431 'libraries': [ |
| 432 '-lcomctl32.lib', |
| 433 ], |
| 434 }, |
430 'msvs_settings': { | 435 'msvs_settings': { |
431 'VCLinkerTool': { | 436 'VCLinkerTool': { |
432 'AdditionalOptions': ["/MANIFESTUAC:level='requireAdministrator'"]
, | 437 'AdditionalOptions': [ |
| 438 "/MANIFESTUAC:level='requireAdministrator'", |
| 439 "\"/manifestdependency:type='win32' " |
| 440 "name='Microsoft.Windows.Common-Controls' " |
| 441 "version='6.0.0.0' " |
| 442 "processorArchitecture='*' " |
| 443 "publicKeyToken='6595b64144ccf1df' language='*'\"", |
| 444 ], |
433 # 2 == /SUBSYSTEM:WINDOWS | 445 # 2 == /SUBSYSTEM:WINDOWS |
434 'SubSystem': '2', | 446 'SubSystem': '2', |
435 }, | 447 }, |
436 }, | 448 }, |
437 }, # end of target 'remoting_host_controller' | 449 }, # end of target 'remoting_host_controller' |
438 { | 450 { |
439 'target_name': 'remoting_service', | 451 'target_name': 'remoting_service', |
440 'type': 'executable', | 452 'type': 'executable', |
441 'variables': { 'enable_wexit_time_destructors': 1, }, | 453 'variables': { 'enable_wexit_time_destructors': 1, }, |
442 'dependencies': [ | 454 'dependencies': [ |
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1596 '../base/allocator/allocator.gyp:allocator', | 1608 '../base/allocator/allocator.gyp:allocator', |
1597 ], | 1609 ], |
1598 }, | 1610 }, |
1599 ], | 1611 ], |
1600 ], | 1612 ], |
1601 }], | 1613 }], |
1602 ], # end of 'conditions' | 1614 ], # end of 'conditions' |
1603 }, # end of target 'remoting_unittests' | 1615 }, # end of target 'remoting_unittests' |
1604 ], # end of targets | 1616 ], # end of targets |
1605 } | 1617 } |
OLD | NEW |