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

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: import chrome_build.gni in remoting_options.gni 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/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..fba8d2595fe206ad5a9c97026adf9fe272e3577e 100644
--- a/build/util/version.gni
+++ b/build/util/version.gni
@@ -17,11 +17,15 @@
# 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"
+
_result = exec_script("version.py",
[
"-f",
@@ -40,3 +44,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/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698