| 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 'cast_is_debug_build%': 0, | 10 'cast_is_debug_build%': 0, |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 'conditions': [ | 543 'conditions': [ |
| 544 ['OS=="android"', { | 544 ['OS=="android"', { |
| 545 'targets': [ | 545 'targets': [ |
| 546 { | 546 { |
| 547 'target_name': 'cast_shell_icudata', | 547 'target_name': 'cast_shell_icudata', |
| 548 'type': 'none', | 548 'type': 'none', |
| 549 'dependencies': [ | 549 'dependencies': [ |
| 550 '../third_party/icu/icu.gyp:icudata', | 550 '../third_party/icu/icu.gyp:icudata', |
| 551 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', | 551 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', |
| 552 ], | 552 ], |
| 553 'copies': [{ | 553 'variables': { |
| 554 'destination': '<(PRODUCT_DIR)/assets', | 554 'dest_path': '<(PRODUCT_DIR)/assets', |
| 555 'files': [ | 555 'src_files': [ |
| 556 '<(PRODUCT_DIR)/icudtl.dat', | 556 '<(PRODUCT_DIR)/icudtl.dat', |
| 557 ], |
| 558 'renaming_sources': [ |
| 557 '<(PRODUCT_DIR)/natives_blob.bin', | 559 '<(PRODUCT_DIR)/natives_blob.bin', |
| 558 '<(PRODUCT_DIR)/snapshot_blob.bin', | 560 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 559 ], | 561 ], |
| 560 }], | 562 'renaming_destinations': [ |
| 563 'natives_blob_<(arch_suffix).bin', |
| 564 'snapshot_blob_<(arch_suffix).bin', |
| 565 ], |
| 566 'clear': 1, |
| 567 }, |
| 568 'includes': [ |
| 569 '../build/android/copy_ex.gypi', |
| 570 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 571 ], |
| 561 }, | 572 }, |
| 562 { | 573 { |
| 563 'target_name': 'libcast_shell_android', | 574 'target_name': 'libcast_shell_android', |
| 564 'type': 'shared_library', | 575 'type': 'shared_library', |
| 565 'dependencies': [ | 576 'dependencies': [ |
| 566 'cast_jni_headers', | 577 'cast_jni_headers', |
| 567 'cast_shell_common', | 578 'cast_shell_common', |
| 568 'cast_shell_icudata', | 579 'cast_shell_icudata', |
| 569 'cast_shell_pak', | 580 'cast_shell_pak', |
| 570 'cast_version_header', | 581 'cast_version_header', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 'cast_shell_core', | 768 'cast_shell_core', |
| 758 ], | 769 ], |
| 759 'sources': [ | 770 'sources': [ |
| 760 'app/cast_main.cc', | 771 'app/cast_main.cc', |
| 761 ], | 772 ], |
| 762 }, | 773 }, |
| 763 ], # end of targets | 774 ], # end of targets |
| 764 }], | 775 }], |
| 765 ], # end of conditions | 776 ], # end of conditions |
| 766 } | 777 } |
| OLD | NEW |