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

Unified Diff: android_webview/glue/BUILD.gn

Issue 2345143002: Move language pak files to assets. (Closed)
Patch Set: Move resource initialization back to ChromeApplication Created 4 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: android_webview/glue/BUILD.gn
diff --git a/android_webview/glue/BUILD.gn b/android_webview/glue/BUILD.gn
index 4347ccdfbb747a72bad671608dbfd8e70b0a46b8..c34ac276d6356cf3308a3c8724a44363acf3d6ff 100644
--- a/android_webview/glue/BUILD.gn
+++ b/android_webview/glue/BUILD.gn
@@ -43,11 +43,17 @@ android_library("glue") {
deps = glue_library_deps
srcjar_deps = [
":glue_resource_rewriter",
+ "//android_webview:locale_pak_srcjar",
"//base:base_build_config_gen",
]
- # New versions of BuildConfig.java will be created when creating an apk.
- jar_excluded_patterns = [ "*/BuildConfig.class" ]
+ jar_excluded_patterns = [
+ # New versions of BuildConfig.java will be created when creating an apk.
+ "*/BuildConfig.class",
+
+ # Allow downstream targets to specify their own locale pak files.
+ "*/LocalePakFiles.class",
+ ]
# Always build upstream or downstream target with public or internal
# framework jar respectively.

Powered by Google App Engine
This is Rietveld 408576698