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

Unified Diff: android_webview/BUILD.gn

Issue 2890813002: Separate WebView's locale paks from Chrome's locale paks (Closed)
Patch Set: remove unnecessary import Created 3 years, 7 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 | chrome/android/BUILD.gn » ('j') | chrome/android/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/BUILD.gn
diff --git a/android_webview/BUILD.gn b/android_webview/BUILD.gn
index cb2c49d3e351916b3a37dc917463752e5e4674a6..9246b4f6ab0c96918eb252c7c84783210be88e7a 100644
--- a/android_webview/BUILD.gn
+++ b/android_webview/BUILD.gn
@@ -112,9 +112,11 @@ webview_repack_locales("repack_locales") {
android_assets("locale_pak_assets") {
disable_compression = true
- sources = []
+ renaming_sources = []
+ renaming_destinations = []
foreach(_locale, locales) {
- sources += [ "$root_out_dir/android_webview/locales/$_locale.pak" ]
+ renaming_sources += [ "$root_out_dir/android_webview/locales/$_locale.pak" ]
+ renaming_destinations += [ "stored/$_locale.pak" ]
agrieve 2017/05/17 19:29:44 It's a bit odd that our other non-compressed .pak
F 2017/05/17 19:45:21 Done.
}
deps = [
":repack_locales",
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | chrome/android/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698