Chromium Code Reviews| Index: build/util/version.gni |
| diff --git a/build/util/version.gni b/build/util/version.gni |
| index d1bf6ef3b6c132516b55d50182aca0d456e9cb62..0eec4f2b7ac6db93a955ebafb023519d5e707e1e 100644 |
| --- a/build/util/version.gni |
| +++ b/build/util/version.gni |
| @@ -17,11 +17,16 @@ |
| # all values we need at once. |
| _version_dictionary_template = "full = \"@MAJOR@.@MINOR@.@BUILD@.@PATCH@\" " + |
| "major = \"@MAJOR@\" minor = \"@MINOR@\" " + |
| - "build = \"@BUILD@\" patch = \"@PATCH@\"" |
| + "build = \"@BUILD@\" patch = \"@PATCH@\" " + |
| + "remoting = \"@REMOTING_PATCH\" " |
| # The file containing the Chrome version number. |
| chrome_version_file = "//chrome/VERSION" |
| +# The file containing the Chromoting version number. |
| +remoting_version_file = "//remoting/VERSION" |
| + |
| +# The |
|
Sergey Ulanov
2015/11/03 18:21:37
Finish the comment or remove it.
Dirk Pranke
2015/11/03 21:10:20
Whoops. I will remove it. Good catch.
|
| _result = exec_script("version.py", |
| [ |
| "-f", |
| @@ -40,3 +45,4 @@ chrome_version_major = _result.major |
| chrome_version_minor = _result.minor |
| chrome_version_build = _result.build |
| chrome_version_patch = _result.patch |
| +remoting_version_patch = _result.remoting |