Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Side by Side Diff: remoting/host/BUILD.gn

Issue 1925493002: Add manifests to many more gn built exe files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/config/win/manifest.gni") 7 import("//build/config/win/manifest.gni")
8 import("//build/util/version.gni") 8 import("//build/util/version.gni")
9 import("//remoting/remoting_enable.gni") 9 import("//remoting/remoting_enable.gni")
10 import("//remoting/remoting_locales.gni") 10 import("//remoting/remoting_locales.gni")
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 638
639 # GYP version: //remoting/remoting_host_win.gypi:remote_security_key 639 # GYP version: //remoting/remoting_host_win.gypi:remote_security_key
640 executable("remote_security_key") { 640 executable("remote_security_key") {
641 configs += [ "//build/config/compiler:wexit_time_destructors" ] 641 configs += [ "//build/config/compiler:wexit_time_destructors" ]
642 642
643 defines = [ "BINARY=BINARY_REMOTE_SECURITY_KEY" ] 643 defines = [ "BINARY=BINARY_REMOTE_SECURITY_KEY" ]
644 644
645 deps = [ 645 deps = [
646 ":remoting_core", 646 ":remoting_core",
647 ":remoting_windows_resources", 647 ":remoting_windows_resources",
648 "//build/win:default_exe_manifest",
648 ] 649 ]
649 650
650 sources = [ 651 sources = [
651 "$root_gen_dir/remoting/version.rc", 652 "$root_gen_dir/remoting/version.rc",
652 "security_key/remote_security_key_entry_point.cc", 653 "security_key/remote_security_key_entry_point.cc",
653 ] 654 ]
654 } 655 }
655 656
656 # GYP version: 657 # GYP version:
657 # //remoting/remoting_host_win.gypi:remoting_me2me_native_messaging_host 658 # //remoting/remoting_host_win.gypi:remoting_me2me_native_messaging_host
658 executable("remoting_native_messaging_host") { 659 executable("remoting_native_messaging_host") {
659 configs += [ "//build/config/compiler:wexit_time_destructors" ] 660 configs += [ "//build/config/compiler:wexit_time_destructors" ]
660 661
661 deps = [ 662 deps = [
662 ":remoting_core", 663 ":remoting_core",
663 ":remoting_windows_resources", 664 ":remoting_windows_resources",
665 "//build/win:default_exe_manifest",
664 ] 666 ]
665 667
666 sources = [ 668 sources = [
667 "$root_gen_dir/remoting/version.rc", 669 "$root_gen_dir/remoting/version.rc",
668 "setup/me2me_native_messaging_host_entry_point.cc", 670 "setup/me2me_native_messaging_host_entry_point.cc",
669 ] 671 ]
670 } 672 }
671 673
672 # GYP version: //remoting/remoting_host_win.gypi:remoting_windows_resources 674 # GYP version: //remoting/remoting_host_win.gypi:remoting_windows_resources
673 remoting_localize("remoting_windows_resources") { 675 remoting_localize("remoting_windows_resources") {
(...skipping 29 matching lines...) Expand all
703 if (enable_remoting_host && !is_android) { 705 if (enable_remoting_host && !is_android) {
704 executable("remoting_start_host") { 706 executable("remoting_start_host") {
705 sources = [ 707 sources = [
706 "setup/host_starter.cc", 708 "setup/host_starter.cc",
707 "setup/host_starter.h", 709 "setup/host_starter.h",
708 "setup/start_host.cc", 710 "setup/start_host.cc",
709 ] 711 ]
710 712
711 deps = [ 713 deps = [
712 "//build/config/sanitizers:deps", 714 "//build/config/sanitizers:deps",
715 "//build/win:default_exe_manifest",
713 "//remoting/host/setup", 716 "//remoting/host/setup",
714 ] 717 ]
715 718
716 if (enable_webrtc) { 719 if (enable_webrtc) {
717 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 720 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
718 } 721 }
719 } 722 }
720 723
721 action_foreach("remoting_native_messaging_manifests") { 724 action_foreach("remoting_native_messaging_manifests") {
722 if (is_mac) { 725 if (is_mac) {
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 "--target_arch", 1141 "--target_arch",
1139 "$target_cpu", 1142 "$target_cpu",
1140 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", 1143 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip",
1141 root_build_dir), 1144 root_build_dir),
1142 rebase_path(outputs[0], root_build_dir), 1145 rebase_path(outputs[0], root_build_dir),
1143 ] 1146 ]
1144 } 1147 }
1145 } 1148 }
1146 } 1149 }
1147 } 1150 }
OLDNEW
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698