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 _version_py_abspath = "//build/util/version.py" | 5 _version_py_abspath = "//build/util/version.py" |
6 _remoting_version_abspath = "//remoting/VERSION" | 6 _remoting_version_abspath = "//remoting/VERSION" |
7 _chrome_version_abspath = "//chrome/VERSION" | 7 _chrome_version_abspath = "//chrome/VERSION" |
8 if (is_chrome_branded) { | 8 if (is_chrome_branded) { |
9 _remoting_branding_abspath = "//remoting/branding_Chrome" | 9 _remoting_branding_abspath = "//remoting/branding_Chrome" |
10 } else { | 10 } else { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 ], | 66 ], |
67 "value", | 67 "value", |
68 _script_deps) | 68 _script_deps) |
69 | 69 |
70 prefpane_bundle_name = exec_script(_version_py_abspath, | 70 prefpane_bundle_name = exec_script(_version_py_abspath, |
71 [ | 71 [ |
72 "-f", | 72 "-f", |
73 _remoting_branding_path, | 73 _remoting_branding_path, |
74 "-t \"@MAC_PREFPANE_BUNDLE_NAME@\"", | 74 "-t \"@MAC_PREFPANE_BUNDLE_NAME@\"", |
75 ], | 75 ], |
76 "value", | 76 "string", |
Slava Chigrin
2014/12/15 19:25:08
Seems, there was a problem handling values, contai
| |
77 _script_deps) | 77 _script_deps) |
78 | 78 |
79 host_bundle_name = exec_script(_version_py_abspath, | 79 host_bundle_name = exec_script(_version_py_abspath, |
80 [ | 80 [ |
81 "-f", | 81 "-f", |
82 _remoting_branding_path, | 82 _remoting_branding_path, |
83 "-t \"@MAC_HOST_BUNDLE_NAME@\"", | 83 "-t \"@MAC_HOST_BUNDLE_NAME@\"", |
84 ], | 84 ], |
85 "value", | 85 "string", |
86 _script_deps) | 86 _script_deps) |
OLD | NEW |