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