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

Unified Diff: chromecast/chromecast.gyp

Issue 835273004: Chromecast Android: must explicitly bundle and extract icudtl.dat. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastApplication.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/chromecast.gyp
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp
index 74525ac6b70d1bddbf038e4417444d235dcd7a5c..673e3e870bb1f288699b34ea9f8f15b06218242d 100644
--- a/chromecast/chromecast.gyp
+++ b/chromecast/chromecast.gyp
@@ -270,11 +270,23 @@
['OS=="android"', {
'targets': [
{
+ 'target_name': 'cast_shell_icudata',
+ 'type': 'none',
+ 'dependencies': [
+ '../third_party/icu/icu.gyp:icudata',
+ ],
+ 'copies': [{
+ 'destination': '<(PRODUCT_DIR)/assets',
+ 'files': ['<(PRODUCT_DIR)/icudtl.dat'],
+ }],
+ },
+ {
'target_name': 'libcast_shell_android',
'type': 'shared_library',
'dependencies': [
'cast_jni_headers',
'cast_shell_common',
+ 'cast_shell_icudata',
'cast_shell_pak',
'cast_version_header',
'../base/base.gyp:base',
« no previous file with comments | « chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastApplication.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698