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

Unified Diff: base/BUILD.gn

Issue 1418243003: Add GN template for android_assets(). Use it in content_shell_apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review1 Created 5 years, 2 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 | build/android/gyp/apkbuilder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index 9c067e3748400023ce60f73a66e78931a41a4bb4..33595d2d8dec45d0ff419bc524887993d1dd1d9f 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -5,6 +5,7 @@
import("//build/config/compiler/compiler.gni")
import("//build/config/ui.gni")
import("//testing/test.gni")
+import("//third_party/icu/config.gni")
if (is_android) {
import("//build/config/android/rules.gni")
@@ -1032,6 +1033,20 @@ component("i18n") {
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}
+if (is_android) {
+ android_assets("icu_assets") {
brettw 2015/10/25 23:51:22 Can this be in the ICU file instead of base?
agrieve 2015/10/26 15:43:48 pkotwicz suggested this as well, but I think it's
+ if (icu_use_data_file) {
+ deps = [
+ "//third_party/icu:icudata",
+ ]
+ sources = [
+ "$root_build_dir/icudtl.dat",
+ ]
+ }
+ disable_compression = true
+ }
+}
+
if (is_ios || is_win || (is_linux && !is_chromeos)) {
# TODO(GYP): Figure out which of these work and are needed on other platforms.
test("base_perftests") {
« no previous file with comments | « no previous file | build/android/gyp/apkbuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698