| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
 | # Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chrome_build.gni")
_version_py_abspath = "//build/util/version.py"
_remoting_version_abspath = "//remoting/VERSION"
_chrome_version_abspath = "//chrome/VERSION"
if (is_chrome_branded) {
  _remoting_branding_abspath = "//remoting/branding_Chrome"
} else {
  _remoting_branding_abspath = "//remoting/branding_Chromium"
}
# Set these files as being input dependencies to the scripts, so the build will
# be re-run if the files change.
remoting_version_files = [
  _remoting_version_abspath,
  _chrome_version_abspath,
  _remoting_branding_abspath,
]
_chrome_version_path = rebase_path(_chrome_version_abspath, root_build_dir)
_remoting_version_path = rebase_path(_remoting_version_abspath, root_build_dir)
_remoting_branding_path =
    rebase_path(_remoting_branding_abspath, root_build_dir)
version_major = exec_script(_version_py_abspath,
                            [
                              "-f",
                              _chrome_version_path,
                              "-f",
                              _remoting_version_path,
                              "-t \"@MAJOR@\"",
                            ],
                            "value",
                            remoting_version_files)
version_minor = exec_script(_version_py_abspath,
                            [
                              "-f",
                              _remoting_version_path,
                              "-t \"@REMOTING_PATCH@\"",
                            ],
                            "value",
                            remoting_version_files)
version_short =
    "${version_major}.${version_minor}." + exec_script(_version_py_abspath,
                                                       [
                                                         "-f",
                                                         _chrome_version_path,
                                                         "-f",
                                                         _remoting_version_path,
                                                         "-t \"@BUILD@\"",
                                                       ],
                                                       "value",
                                                       remoting_version_files)
version_full = "${version_short}." + exec_script(_version_py_abspath,
                                                 [
                                                   "-f",
                                                   _chrome_version_path,
                                                   "-f",
                                                   _remoting_version_path,
                                                   "-t \"@PATCH@\"",
                                                 ],
                                                 "value",
                                                 remoting_version_files)
prefpane_bundle_name = exec_script(_version_py_abspath,
                                   [
                                     "-f",
                                     _remoting_branding_path,
                                     "-t \"@MAC_PREFPANE_BUNDLE_NAME@\"",
                                   ],
                                   "string",
                                   remoting_version_files)
host_bundle_name = exec_script(_version_py_abspath,
                               [
                                 "-f",
                                 _remoting_branding_path,
                                 "-t \"@MAC_HOST_BUNDLE_NAME@\"",
                               ],
                               "string",
                               remoting_version_files)
 |