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

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

Issue 1885483003: Copy Linux me2me script to output dir for GN builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « no previous file | remoting/host/linux/linux_me2me_host.py » ('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/util/version.gni") 7 import("//build/util/version.gni")
8 import("//remoting/remoting_enable.gni") 8 import("//remoting/remoting_enable.gni")
9 import("//remoting/remoting_locales.gni") 9 import("//remoting/remoting_locales.gni")
10 import("//remoting/remoting_options.gni") 10 import("//remoting/remoting_options.gni")
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 defines = [ "REMOTING_ENABLE_BREAKPAD" ] 840 defines = [ "REMOTING_ENABLE_BREAKPAD" ]
841 } 841 }
842 842
843 deps = [ 843 deps = [
844 ":credits", 844 ":credits",
845 ":remoting_me2me_host_static", 845 ":remoting_me2me_host_static",
846 "//build/config/sanitizers:deps", 846 "//build/config/sanitizers:deps",
847 ] 847 ]
848 } 848 }
849 849
850 if (is_linux) {
851 copy("remoting_me2me_host_copy_script") {
852 sources = [
853 "linux/linux_me2me_host.py",
854 ]
855 outputs = [
856 "$root_build_dir/remoting/chrome-remote-desktop",
857 ]
858 }
859 copy("remoting_me2me_host_copy_host") {
860 sources = [
861 "linux/remoting_me2me_host_wrapper.sh",
862 ]
863 outputs = [
864 "$root_build_dir/remoting/chrome-remote-desktop-host",
865 ]
866 deps = [
867 ":remoting_me2me_host",
868 ]
869 }
870 group("remoting_dev_me2me_host") {
871 deps = [
872 ":remoting_me2me_host",
873 ":remoting_me2me_host_copy_host",
874 ":remoting_me2me_host_copy_script",
875 ]
876 }
877 }
878
850 executable("native_messaging_host") { 879 executable("native_messaging_host") {
851 sources = [ 880 sources = [
852 "setup/me2me_native_messaging_host_entry_point.cc", 881 "setup/me2me_native_messaging_host_entry_point.cc",
853 "setup/me2me_native_messaging_host_main.cc", 882 "setup/me2me_native_messaging_host_main.cc",
854 "setup/me2me_native_messaging_host_main.h", 883 "setup/me2me_native_messaging_host_main.h",
855 ] 884 ]
856 885
857 deps = [ 886 deps = [
858 ":remoting_infoplist_strings", 887 ":remoting_infoplist_strings",
859 "//base", 888 "//base",
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1091 "--target_arch", 1120 "--target_arch",
1092 "$target_cpu", 1121 "$target_cpu",
1093 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", 1122 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip",
1094 root_build_dir), 1123 root_build_dir),
1095 rebase_path(outputs[0], root_build_dir), 1124 rebase_path(outputs[0], root_build_dir),
1096 ] 1125 ]
1097 } 1126 }
1098 } 1127 }
1099 } 1128 }
1100 } 1129 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/linux/linux_me2me_host.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698