Chromium Code Reviews| Index: remoting/remoting_version.gni |
| diff --git a/remoting/remoting_version.gni b/remoting/remoting_version.gni |
| index 565011b15e3fb59310e716b49203ce6435272c35..8a0df67463f101465406c2847f643707cb7a314c 100644 |
| --- a/remoting/remoting_version.gni |
| +++ b/remoting/remoting_version.gni |
| @@ -77,4 +77,15 @@ if (is_mac) { |
| prefpane_bundle_id = _result.prefpane_bundle_id |
| remote_assistance_host_bundle_id = _result.remote_assistance_host_bundle_id |
| uninstaller_bundle_id = _result.uninstaller_bundle_id |
| + |
| + 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
|
| + [ "$host_name" ], |
| + "trim string") |
| + host_service_name_nospace = exec_script("//remoting/tools/remove_spaces.py", |
| + [ "$host_service_name" ], |
| + "trim string") |
| + host_uninstaller_name_nospace = |
| + exec_script("//remoting/tools/remove_spaces.py", |
| + [ "$host_uninstaller_name" ], |
| + "trim string") |
| } |