| 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") | |
| 6 | |
| 7 _version_py_abspath = "//build/util/version.py" | 5 _version_py_abspath = "//build/util/version.py" |
| 8 _remoting_version_abspath = "//remoting/VERSION" | 6 _remoting_version_abspath = "//remoting/VERSION" |
| 9 _chrome_version_abspath = "//chrome/VERSION" | 7 _chrome_version_abspath = "//chrome/VERSION" |
| 10 if (is_chrome_branded) { | 8 if (is_chrome_branded) { |
| 11 _remoting_branding_abspath = "//remoting/branding_Chrome" | 9 _remoting_branding_abspath = "//remoting/branding_Chrome" |
| 12 } else { | 10 } else { |
| 13 _remoting_branding_abspath = "//remoting/branding_Chromium" | 11 _remoting_branding_abspath = "//remoting/branding_Chromium" |
| 14 } | 12 } |
| 15 | 13 |
| 16 # Set these files as being input dependencies to the scripts, so the build will | 14 # Set these files as being input dependencies to the scripts, so the build will |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 _script_deps) | 77 _script_deps) |
| 80 | 78 |
| 81 host_bundle_name = exec_script(_version_py_abspath, | 79 host_bundle_name = exec_script(_version_py_abspath, |
| 82 [ | 80 [ |
| 83 "-f", | 81 "-f", |
| 84 _remoting_branding_path, | 82 _remoting_branding_path, |
| 85 "-t \"@MAC_HOST_BUNDLE_NAME@\"", | 83 "-t \"@MAC_HOST_BUNDLE_NAME@\"", |
| 86 ], | 84 ], |
| 87 "string", | 85 "string", |
| 88 _script_deps) | 86 _script_deps) |
| OLD | NEW |