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

Unified Diff: components/data_reduction_proxy/common/version.gni

Issue 533003002: Use chromium version for data reduction proxy version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: components/data_reduction_proxy/common/version.gni
diff --git a/chrome/version.gni b/components/data_reduction_proxy/common/version.gni
similarity index 73%
copy from chrome/version.gni
copy to components/data_reduction_proxy/common/version.gni
index 771ea28541d39b6ea0373a6485e6132622b4dfbd..647d6d2ad68732c0b9dc68da6f3574a7485a9581 100644
--- a/chrome/version.gni
+++ b/components/data_reduction_proxy/common/version.gni
@@ -6,7 +6,7 @@
# an output file. This is used for generating various forms of files that
# incorporate the product name and version.
#
-# This template automatically includes VERSION, LASTCHANGE, and BRANDING,
+# This template automatically includes VERSION,
#
# Parameters:
# source:
@@ -32,27 +32,17 @@ template("process_version") {
}
script = "//build/util/version.py"
- lastchange_path = "//build/util/LASTCHANGE"
version_path = "//chrome/VERSION"
- if (is_chrome_branded) {
- branding_path = "//chrome/app/theme/google_chrome/BRANDING"
- } else {
- branding_path = "//chrome/app/theme/chromium/BRANDING"
- }
inputs = [
version_path,
invoker.source,
- lastchange_path,
- branding_path,
]
outputs = [ invoker.output ]
args = [
"-f", rebase_path(version_path, root_build_dir),
- "-f", rebase_path(branding_path, root_build_dir),
- "-f", rebase_path(lastchange_path, root_build_dir),
rebase_path(invoker.source, root_build_dir),
rebase_path(invoker.output, root_build_dir),
]
« no previous file with comments | « components/data_reduction_proxy/common/BUILD.gn ('k') | components/data_reduction_proxy/common/version.h.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698