Chromium Code Reviews| 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
|
| }, |
| { |