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

Unified Diff: build/util/version.gni

Issue 2169273002: [Mac/GN] Fix all the //remoting Info.plist substitutions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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/host/BUILD.gn » ('j') | no next file with comments »
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 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",
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698