OLD | NEW |
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 'cast_build_release': 'internal/build/cast_build_release', | 9 'cast_build_release': 'internal/build/cast_build_release', |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 | 347 |
348 # Targets for Android receiver. | 348 # Targets for Android receiver. |
349 'conditions': [ | 349 'conditions': [ |
350 ['OS=="android"', { | 350 ['OS=="android"', { |
351 'targets': [ | 351 'targets': [ |
352 { | 352 { |
353 'target_name': 'cast_shell_icudata', | 353 'target_name': 'cast_shell_icudata', |
354 'type': 'none', | 354 'type': 'none', |
355 'dependencies': [ | 355 'dependencies': [ |
356 '../third_party/icu/icu.gyp:icudata', | 356 '../third_party/icu/icu.gyp:icudata', |
357 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', | |
358 ], | 357 ], |
359 'copies': [{ | 358 'copies': [{ |
360 'destination': '<(PRODUCT_DIR)/assets', | 359 'destination': '<(PRODUCT_DIR)/assets', |
361 'files': [ | 360 'files': [ |
362 '<(PRODUCT_DIR)/icudtl.dat', | 361 '<(PRODUCT_DIR)/icudtl.dat', |
363 '<(PRODUCT_DIR)/natives_blob.bin', | |
364 '<(PRODUCT_DIR)/snapshot_blob.bin', | |
365 ], | 362 ], |
366 }], | 363 }], |
367 }, | 364 }, |
368 { | 365 { |
369 'target_name': 'libcast_shell_android', | 366 'target_name': 'libcast_shell_android', |
370 'type': 'shared_library', | 367 'type': 'shared_library', |
371 'dependencies': [ | 368 'dependencies': [ |
372 'cast_jni_headers', | 369 'cast_jni_headers', |
373 'cast_shell_common', | 370 'cast_shell_common', |
374 'cast_shell_icudata', | 371 'cast_shell_icudata', |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 'cast_public_api' | 579 'cast_public_api' |
583 ], | 580 ], |
584 'sources': [ | 581 'sources': [ |
585 'graphics/cast_egl_platform_default.cc' | 582 'graphics/cast_egl_platform_default.cc' |
586 ], | 583 ], |
587 } | 584 } |
588 ] | 585 ] |
589 }], | 586 }], |
590 ], # end of conditions | 587 ], # end of conditions |
591 } | 588 } |
OLD | NEW |