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

Unified Diff: chrome/chrome_repack_locales.gni

Issue 575923004: Fix is_chrome_branded check in chrome_repack_locales.gni. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_repack_locales.gni
diff --git a/chrome/chrome_repack_locales.gni b/chrome/chrome_repack_locales.gni
index a9bc8e861435e72c7a74a9e089e7006ab50c81ac..cc3f5b9478bf1cd12eab178b0342f23f28345a82 100644
--- a/chrome/chrome_repack_locales.gni
+++ b/chrome/chrome_repack_locales.gni
@@ -87,17 +87,17 @@ template("_repack_one_locale") {
if (is_chrome_branded) {
sources += [
- "${root_gen_dir}/chrome/chromium_strings_${locale}.pak",
+ "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak",
]
deps += [
- "//chrome/app:chromium_strings",
+ "//chrome/app:google_chrome_strings",
]
} else {
sources += [
- "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak",
+ "${root_gen_dir}/chrome/chromium_strings_${locale}.pak",
]
deps += [
- "//chrome/app:google_chrome_strings",
+ "//chrome/app:chromium_strings",
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698