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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 }, 263 },
264 ], 264 ],
265 }, 265 },
266 ], # end of targets 266 ], # end of targets
267 267
268 # Targets for Android receiver. 268 # Targets for Android receiver.
269 'conditions': [ 269 'conditions': [
270 ['OS=="android"', { 270 ['OS=="android"', {
271 'targets': [ 271 'targets': [
272 { 272 {
273 'target_name': 'cast_shell_icudata',
274 'type': 'none',
275 'dependencies': [
276 '../third_party/icu/icu.gyp:icudata',
277 ],
278 'copies': [{
279 'destination': '<(PRODUCT_DIR)/assets',
280 'files': ['<(PRODUCT_DIR)/icudtl.dat'],
281 }],
282 },
283 {
273 'target_name': 'libcast_shell_android', 284 'target_name': 'libcast_shell_android',
274 'type': 'shared_library', 285 'type': 'shared_library',
275 'dependencies': [ 286 'dependencies': [
276 'cast_jni_headers', 287 'cast_jni_headers',
277 'cast_shell_common', 288 'cast_shell_common',
289 'cast_shell_icudata',
278 'cast_shell_pak', 290 'cast_shell_pak',
279 'cast_version_header', 291 'cast_version_header',
280 '../base/base.gyp:base', 292 '../base/base.gyp:base',
281 '../breakpad/breakpad.gyp:breakpad_client', 293 '../breakpad/breakpad.gyp:breakpad_client',
282 '../components/components.gyp:breakpad_host', 294 '../components/components.gyp:breakpad_host',
283 '../components/components.gyp:crash_component', 295 '../components/components.gyp:crash_component',
284 '../content/content.gyp:content_app_browser', 296 '../content/content.gyp:content_app_browser',
285 '../content/content.gyp:content', 297 '../content/content.gyp:content',
286 '../skia/skia.gyp:skia', 298 '../skia/skia.gyp:skia',
287 '../ui/gfx/gfx.gyp:gfx', 299 '../ui/gfx/gfx.gyp:gfx',
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 'cast_shell_core', 501 'cast_shell_core',
490 ], 502 ],
491 'sources': [ 503 'sources': [
492 'app/cast_main.cc', 504 'app/cast_main.cc',
493 ], 505 ],
494 }, 506 },
495 ], # end of targets 507 ], # end of targets
496 }], 508 }],
497 ], # end of conditions 509 ], # end of conditions
498 } 510 }
OLDNEW
« 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