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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/linux/linux_me2me_host.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/BUILD.gn
diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn
index f8cc938e24212af90951038848bb8f541660c8ed..aa416b41d7327715414d6d8e6dabfb98ab39c5c2 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -847,6 +847,35 @@ if (is_mac) { # TODO(GYP) Mac build of remoting host.
]
}
+ if (is_linux) {
+ copy("remoting_me2me_host_copy_script") {
+ sources = [
+ "linux/linux_me2me_host.py",
+ ]
+ outputs = [
+ "$root_build_dir/remoting/chrome-remote-desktop",
+ ]
+ }
+ copy("remoting_me2me_host_copy_host") {
+ sources = [
+ "linux/remoting_me2me_host_wrapper.sh",
+ ]
+ outputs = [
+ "$root_build_dir/remoting/chrome-remote-desktop-host",
+ ]
+ deps = [
+ ":remoting_me2me_host",
+ ]
+ }
+ group("remoting_dev_me2me_host") {
+ deps = [
+ ":remoting_me2me_host",
+ ":remoting_me2me_host_copy_host",
+ ":remoting_me2me_host_copy_script",
+ ]
+ }
+ }
+
executable("native_messaging_host") {
sources = [
"setup/me2me_native_messaging_host_entry_point.cc",
« 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