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

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: 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') | remoting/host/linux/linux_me2me_host.py » ('J')
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 618850d5d5e57aad08516fff7f8a4c2c5c19cf49..a79e9c325596b4fc8fcbecd2c295e3fae25d99cf 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -837,6 +837,21 @@ if (is_mac) { # TODO(GYP) Mac build of remoting host.
":remoting_me2me_host_static",
"//build/config/sanitizers:deps",
]
+
+ if (is_linux) {
+ deps += [ ":remoting_me2me_host_runner" ]
+ }
+ }
+
+ if (is_linux) {
+ copy("remoting_me2me_host_runner") {
+ sources = [
+ "linux/linux_me2me_host.py",
+ ]
+ outputs = [
+ "$root_build_dir/run_me2me_host",
+ ]
+ }
}
executable("native_messaging_host") {
« no previous file with comments | « no previous file | remoting/host/linux/linux_me2me_host.py » ('j') | remoting/host/linux/linux_me2me_host.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698