Chromium Code Reviews| 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 'includes': [ | 6 'includes': [ |
| 7 'remoting_host_linux.gypi', | 7 'remoting_host_linux.gypi', |
| 8 'remoting_host_mac.gypi', | 8 'remoting_host_mac.gypi', |
| 9 'remoting_host_win.gypi', | 9 'remoting_host_win.gypi', |
| 10 ], | 10 ], |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 570 ], | 570 ], |
| 571 'sources': [ | 571 'sources': [ |
| 572 'host/setup/me2me_native_messaging_host_main.cc', | 572 'host/setup/me2me_native_messaging_host_main.cc', |
| 573 ], | 573 ], |
| 574 'conditions': [ | 574 'conditions': [ |
| 575 ['OS=="linux" and linux_use_tcmalloc==1', { | 575 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 576 'dependencies': [ | 576 'dependencies': [ |
| 577 '../base/allocator/allocator.gyp:allocator', | 577 '../base/allocator/allocator.gyp:allocator', |
| 578 ], | 578 ], |
| 579 }], | 579 }], |
| 580 ['OS=="win"', { | |
| 581 'defines' : [ | |
| 582 'BINARY=BINARY_NATIVE_MESSAGING_HOST', | |
| 583 ], | |
| 584 'dependencies': [ | |
| 585 'remoting_windows_resources', | |
| 586 ], | |
| 587 'sources': [ | |
| 588 '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc', | |
| 589 ], | |
| 590 'msvs_settings': { | |
| 591 'VCLinkerTool': { | |
| 592 'SubSystem': '1', # /SUBSYSTEM:CONSOLE | |
|
weitao
2014/02/18 20:11:24
The default value is '1'. But we should be explici
| |
| 593 }, | |
| 594 }, | |
| 595 }], | |
| 580 ], | 596 ], |
| 581 }, # end of target 'remoting_me2me_native_messaging_host' | 597 }, # end of target 'remoting_me2me_native_messaging_host' |
| 582 { | 598 { |
| 583 'target_name': 'remoting_it2me_native_messaging_host', | 599 'target_name': 'remoting_it2me_native_messaging_host', |
| 584 'type': 'executable', | 600 'type': 'executable', |
| 585 'variables': { 'enable_wexit_time_destructors': 1, }, | 601 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 586 'dependencies': [ | 602 'dependencies': [ |
| 587 '../base/base.gyp:base', | 603 '../base/base.gyp:base', |
| 588 'remoting_base', | 604 'remoting_base', |
| 589 'remoting_breakpad', | 605 'remoting_breakpad', |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 602 '../build/linux/system.gyp:gtk', | 618 '../build/linux/system.gyp:gtk', |
| 603 ], | 619 ], |
| 604 }], | 620 }], |
| 605 ['OS=="linux" and linux_use_tcmalloc==1', { | 621 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 606 'dependencies': [ | 622 'dependencies': [ |
| 607 '../base/allocator/allocator.gyp:allocator', | 623 '../base/allocator/allocator.gyp:allocator', |
| 608 ], | 624 ], |
| 609 }], | 625 }], |
| 610 ['OS=="win"', { | 626 ['OS=="win"', { |
| 611 'product_name': 'remote_assistance_host', | 627 'product_name': 'remote_assistance_host', |
| 628 'defines' : [ | |
| 629 'BINARY=BINARY_REMOTE_ASSISTANCE_HOST', | |
| 630 ], | |
| 631 'dependencies': [ | |
| 632 'remoting_windows_resources', | |
| 633 ], | |
| 634 'sources': [ | |
| 635 '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc', | |
| 636 ], | |
| 612 'msvs_settings': { | 637 'msvs_settings': { |
| 613 'VCManifestTool': { | 638 'VCManifestTool': { |
| 614 'EmbedManifest': 'true', | 639 'EmbedManifest': 'true', |
| 615 'AdditionalManifestFiles': [ | 640 'AdditionalManifestFiles': [ |
| 616 'host/win/common-controls.manifest', | 641 'host/win/common-controls.manifest', |
| 617 'host/win/dpi_aware.manifest', | 642 'host/win/dpi_aware.manifest', |
| 618 ], | 643 ], |
| 619 }, | 644 }, |
| 620 'VCLinkerTool': { | 645 'VCLinkerTool': { |
| 646 'SubSystem': '1', # /SUBSYSTEM:CONSOLE | |
| 621 'AdditionalDependencies': [ | 647 'AdditionalDependencies': [ |
| 622 'comctl32.lib', | 648 'comctl32.lib', |
| 623 ], | 649 ], |
| 624 }, | 650 }, |
| 625 }, | 651 }, |
| 626 }], | 652 }], |
| 627 ], | 653 ], |
| 628 }, # end of target 'remoting_it2me_native_messaging_host' | 654 }, # end of target 'remoting_it2me_native_messaging_host' |
| 629 | 655 |
| 630 # Generates native messaging manifest files. | 656 # Generates native messaging manifest files. |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 811 '../base/allocator/allocator.gyp:allocator', | 837 '../base/allocator/allocator.gyp:allocator', |
| 812 ], | 838 ], |
| 813 }], # OS=linux | 839 }], # OS=linux |
| 814 ], # end of 'conditions' | 840 ], # end of 'conditions' |
| 815 }, # end of target 'remoting_me2me_host' | 841 }, # end of target 'remoting_me2me_host' |
| 816 ], # end of 'targets' | 842 ], # end of 'targets' |
| 817 }], # OS!="win" | 843 }], # OS!="win" |
| 818 | 844 |
| 819 ], # end of 'conditions' | 845 ], # end of 'conditions' |
| 820 } | 846 } |
| OLD | NEW |