summaryrefslogtreecommitdiffstats
path: root/build/java_apk.gypi
diff options
context:
space:
mode:
authoragrieve <agrieve@chromium.org>2015-06-19 08:35:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-19 15:36:17 +0000
commitf3930cfae7a93c5065588c9ba7be5c6927f46588 (patch)
treebbfc5d0f5e8070abe3966b5698c90411bb5144da /build/java_apk.gypi
parent97de162a0bd8dc7dc012c31e9c7b1a981ef23acb (diff)
downloadchromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.zip
chromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.tar.gz
chromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.tar.bz2
Store and load icudtl.dat directly from the apk rather than extracting on start-up.
Also changes so that browser process caches a FD to the file rather than re-opening it for each child process. We store icudtl.dat uncompressed in the apk now, increasing the apk size, but saving 6mb on-disk. BUG=394502 Review URL: https://codereview.chromium.org/1147213004 Cr-Commit-Position: refs/heads/master@{#335261}
Diffstat (limited to 'build/java_apk.gypi')
-rw-r--r--build/java_apk.gypi3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index 976c90e..e07ce5a 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -89,7 +89,8 @@
'additional_res_packages': [],
'additional_bundled_libs%': [],
'is_test_apk%': 0,
- 'extensions_to_not_compress%': '',
+ # Allow icu data to be loaded directly from the .apk.
+ 'extensions_to_not_compress%': 'dat',
'resource_input_paths': [],
'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)',
'asset_location%': '<(intermediate_dir)/assets',