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

Side by Side Diff: remoting/remoting_version.gni

Issue 2424893003: Renaming package names to use no spaces. (Closed)
Patch Set: Merging master into mac_dmg_name. Created 4 years, 2 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/util/version.gni") 6 import("//build/util/version.gni")
7 7
8 remoting_version_file = "//remoting/VERSION" 8 remoting_version_file = "//remoting/VERSION"
9 9
10 _version_py_abspath = "//build/util/version.py" 10 _version_py_abspath = "//build/util/version.py"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 remoting_version_short = 70 remoting_version_short =
71 "$chrome_version_major.$remoting_version_patch.$chrome_version_build" 71 "$chrome_version_major.$remoting_version_patch.$chrome_version_build"
72 remoting_version_full = "$remoting_version_short.$chrome_version_patch" 72 remoting_version_full = "$remoting_version_short.$chrome_version_patch"
73 73
74 if (is_mac) { 74 if (is_mac) {
75 host_bundle_id = _result.host_bundle_id 75 host_bundle_id = _result.host_bundle_id
76 native_messaging_host_bundle_id = _result.native_messaging_host_bundle_id 76 native_messaging_host_bundle_id = _result.native_messaging_host_bundle_id
77 prefpane_bundle_id = _result.prefpane_bundle_id 77 prefpane_bundle_id = _result.prefpane_bundle_id
78 remote_assistance_host_bundle_id = _result.remote_assistance_host_bundle_id 78 remote_assistance_host_bundle_id = _result.remote_assistance_host_bundle_id
79 uninstaller_bundle_id = _result.uninstaller_bundle_id 79 uninstaller_bundle_id = _result.uninstaller_bundle_id
80
81 host_name_nospace = exec_script("//remoting/tools/remove_spaces.py",
Lambros 2016/10/17 23:09:20 Do we need these exec_script() calls? IIRC, Chrome
82 [ "$host_name" ],
83 "trim string")
84 host_service_name_nospace = exec_script("//remoting/tools/remove_spaces.py",
85 [ "$host_service_name" ],
86 "trim string")
87 host_uninstaller_name_nospace =
88 exec_script("//remoting/tools/remove_spaces.py",
89 [ "$host_uninstaller_name" ],
90 "trim string")
80 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698