Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: build/util/version.gni

Issue 1426113002: port remoting_me2me_host_archive to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix version and update comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/BUILD.gn » ('j') | remoting/host/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | remoting/BUILD.gn » ('j') | remoting/host/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698