Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |