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

Side by Side Diff: android_webview/BUILD.gn

Issue 2894763002: Revert of Separate WebView's locale paks from Chrome's locale paks (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//android_webview/system_webview_apk_tmpl.gni") 5 import("//android_webview/system_webview_apk_tmpl.gni")
6 import("//android_webview/webview_repack_locales.gni") 6 import("//android_webview/webview_repack_locales.gni")
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//components/spellcheck/spellcheck_build_features.gni") 10 import("//components/spellcheck/spellcheck_build_features.gni")
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 if (enable_resource_whitelist_generation) { 105 if (enable_resource_whitelist_generation) {
106 repack_whitelist = system_webview_pak_whitelist 106 repack_whitelist = system_webview_pak_whitelist
107 deps = [ 107 deps = [
108 ":system_webview_pak_whitelist", 108 ":system_webview_pak_whitelist",
109 ] 109 ]
110 } 110 }
111 } 111 }
112 112
113 android_assets("locale_pak_assets") { 113 android_assets("locale_pak_assets") {
114 disable_compression = true 114 disable_compression = true
115 renaming_sources = [] 115 sources = []
116 renaming_destinations = []
117 foreach(_locale, locales) { 116 foreach(_locale, locales) {
118 renaming_sources += [ "$root_out_dir/android_webview/locales/$_locale.pak" ] 117 sources += [ "$root_out_dir/android_webview/locales/$_locale.pak" ]
119 renaming_destinations += [ "stored-locales/$_locale.pak" ]
120 } 118 }
121 deps = [ 119 deps = [
122 ":repack_locales", 120 ":repack_locales",
123 ] 121 ]
124 } 122 }
125 123
126 repack("repack_pack") { 124 repack("repack_pack") {
127 sources = [ 125 sources = [
128 "$root_gen_dir/blink/public/resources/blink_resources.pak", 126 "$root_gen_dir/blink/public/resources/blink_resources.pak",
129 "$root_gen_dir/content/content_resources.pak", 127 "$root_gen_dir/content/content_resources.pak",
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 system_webview_apk_tmpl("system_webview_apk") { 965 system_webview_apk_tmpl("system_webview_apk") {
968 android_manifest = system_webview_android_manifest 966 android_manifest = system_webview_android_manifest
969 android_manifest_dep = ":system_webview_manifest" 967 android_manifest_dep = ":system_webview_manifest"
970 deps = [ 968 deps = [
971 ":system_webview_resources", 969 ":system_webview_resources",
972 "//android_webview/glue", 970 "//android_webview/glue",
973 ] 971 ]
974 apk_name = "SystemWebView" 972 apk_name = "SystemWebView"
975 } 973 }
976 } 974 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698