summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_version.gni
blob: 2ff0b107afd2f084f42da1b2b23be8a1fe30afc0 (plain)
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
# 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.

# TODO(brettw) Forking out to Python 4 times in serial just to get version
# numbers is highly undesirable. Instead, there should be a build step to
# generate an appropriate header so that the version can be generated at
# build-time, and not at GN-time.

# The |major|, |build| and |patch| versions are inherited from Chrome.
# Since Chrome's |minor| version is always '0', we replace it with a
# Chromoting-specific patch version.
# Note that we check both the |chrome_version_path| file and the
# |remoting_version_path| so that we can override the Chrome version
# numbers if needed.
_version_py_abspath = "//build/util/version.py"
_remoting_version_abspath = "//remoting/VERSION"
_chrome_version_abspath = "//chrome/VERSION"

# Set these files as being input dependencies to the scripts, so the build will
# be re-run if the files change.
_script_deps = [ _remoting_version_abspath, _chrome_version_abspath ]

_chrome_version_path = rebase_path(_chrome_version_abspath, root_build_dir)
_remoting_version_path = rebase_path(_remoting_version_abspath, root_build_dir)

version_major = exec_script(
    _version_py_abspath,
    [ "-f", _chrome_version_path,
      "-f", _remoting_version_path,
      "-t \"@MAJOR@\"" ],
    "value",
    _script_deps)

version_minor = exec_script(
    _version_py_abspath,
    [ "-f", _remoting_version_path,
      "-t \"@REMOTING_PATCH@\"" ],
    "value",
    _script_deps)

version_short = "${version_major}.${version_minor}." + exec_script(
    _version_py_abspath,
    [ "-f", _chrome_version_path,
      "-f", _remoting_version_path,
      "-t \"@BUILD@\"" ],
    "value",
    _script_deps)

version_full = "${version_short}." + exec_script(
    _version_py_abspath,
    [ "-f", _chrome_version_path,
      "-f", _remoting_version_path,
      "-t \"@PATCH@\"" ],
    "value",
    _script_deps)