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

Unified Diff: content/content_tests.gypi

Issue 156333002: Enable icu_use_data_file_flag on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copy icudtl.dat to assets directory to be included in apk Created 6 years, 10 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: content/content_tests.gypi
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index 0e436297f850e9ae4b424094f203193d6b78fdb0..973a225ca92b0ae4708805bb1a3a0de6c9f36e5e 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -1388,7 +1388,26 @@
'native_lib_target': 'libcontent_browsertests',
'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/content_shell.pak'],
'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'additional_input_paths': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ }],
+ ],
},
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'copies': [
+ {
+ 'destination': '<(asset_location)',
+ 'files': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ },
+ ],
+ }],
+ ],
'includes': [ '../build/java_apk.gypi' ],
},
{
@@ -1408,7 +1427,26 @@
'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
'use_chromium_linker': '1',
'enable_chromium_linker_tests': '1',
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'additional_input_paths': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ }],
+ ],
},
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'copies': [
+ {
+ 'destination': '<(asset_location)',
+ 'files': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ },
+ ],
+ }],
+ ],
'includes': [ '../build/java_apk.gypi' ],
jungshik at Google 2014/02/11 19:55:06 With this PS, content_shell now works. However, I'
cjhopman 2014/02/11 20:55:00 Hm. I think adding something to java_apk.gypi to m
bulach 2014/02/12 10:53:19 +1 for encapsulating within java_apk.gypi and +1 f
},
{
« no previous file with comments | « content/content_shell.gypi ('k') | content/public/android/java/src/org/chromium/content/browser/ResourceExtractor.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698