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

Unified Diff: remoting/host/BUILD.gn

Issue 2098773003: [Mac/GN] Add missing import //build/config/zip.gni after cf63a9a5e547. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | no next file » | 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 2b69c874f19e346cb3f79d8f96ba9ca26c829978..d7fe1f38f138cdd001e158d7f836a9402552c8d3 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -1139,17 +1139,18 @@ if (enable_me2me_host) {
]
}
} else if (is_mac && is_chrome_branded) {
+ import("//build/config/zip.gni")
zip("remoting_me2me_host_archive") {
# TODO(crbug.com/622415) - This list of inputs is totally wrong
# and we need the real installer ported over from
# remoting/remoting_host_mac.gypi but for now this creates at
# least a placeholder .zip file.
inputs = [
- "$root_build_dir/remoting_me2me_host",
+ # "$root_build_dir/remoting_me2me_host",
]
output = "$root_build_dir/remoting-me2me-host-mac.zip"
deps = [
- ":remoting_me2me_host",
+ # ":remoting_me2me_host",
Robert Sesek 2016/06/24 18:40:42 FAILED: remoting_me2me_host remoting_me2me_host.dS
]
}
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698