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

Unified Diff: remoting/host/linux/linux_me2me_host.py

Issue 1899093002: [remoting host] Fix/remove version-reporting in 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 | « remoting/host/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/linux/linux_me2me_host.py
diff --git a/remoting/host/linux/linux_me2me_host.py b/remoting/host/linux/linux_me2me_host.py
index 9c80e789fea03b45f8023609b0e08d11677e9f38..ff284ea7d7f898d1e1c6977590a57d76878d86dc 100755
--- a/remoting/host/linux/linux_me2me_host.py
+++ b/remoting/host/linux/linux_me2me_host.py
@@ -1092,9 +1092,6 @@ Web Store: https://chrome.google.com/remotedesktop"""
action="store", metavar="USER",
help="Adds the specified user to the chrome-remote-desktop "
"group (must be run as root).")
- parser.add_option("", "--host-version", dest="host_version", default=False,
- action="store_true",
- help="Prints version of the host.")
parser.add_option("", "--watch-resolution", dest="watch_resolution",
type="int", nargs=2, default=False, action="store",
help=optparse.SUPPRESS_HELP)
@@ -1190,10 +1187,6 @@ Web Store: https://chrome.google.com/remotedesktop"""
return 0
- if options.host_version:
- # TODO(sergeyu): Also check RPM package version once we add RPM package.
- return os.system(locate_executable(HOST_BINARY_NAME) + " --version") >> 8
-
if options.watch_resolution:
watch_for_resolution_changes(options.watch_resolution)
return 0
« no previous file with comments | « remoting/host/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698