Index: build/util/version.gni |
diff --git a/build/util/version.gni b/build/util/version.gni |
index 6542341d2ee2651bfdbdd8808eb1e1b480161a27..dd28d7a4c6f00509e1b595b8032404cb01b25efb 100644 |
--- a/build/util/version.gni |
+++ b/build/util/version.gni |
@@ -17,15 +17,11 @@ |
# all values we need at once. |
_version_dictionary_template = "full = \"@MAJOR@.@MINOR@.@BUILD@.@PATCH@\" " + |
"major = \"@MAJOR@\" minor = \"@MINOR@\" " + |
- "build = \"@BUILD@\" patch = \"@PATCH@\" " + |
- "remoting = \"@REMOTING_PATCH\" " |
+ "build = \"@BUILD@\" patch = \"@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", |
@@ -44,7 +40,6 @@ 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 |
if (is_mac) { |
_result = exec_script("version.py", |