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 'copies': [{ | 549 'variables': { |
550 'destination': '<(PRODUCT_DIR)/assets', | 550 'dest_path': '<(PRODUCT_DIR)/assets', |
551 'files': [ | 551 'src_files': [ |
552 '<(PRODUCT_DIR)/icudtl.dat', | 552 '<(PRODUCT_DIR)/icudtl.dat', |
| 553 ], |
| 554 'renaming_sources': [ |
553 '<(PRODUCT_DIR)/natives_blob.bin', | 555 '<(PRODUCT_DIR)/natives_blob.bin', |
554 '<(PRODUCT_DIR)/snapshot_blob.bin', | 556 '<(PRODUCT_DIR)/snapshot_blob.bin', |
555 ], | 557 ], |
556 }], | 558 'renaming_destinations': [ |
| 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 ], |
557 }, | 568 }, |
558 { | 569 { |
559 'target_name': 'libcast_shell_android', | 570 'target_name': 'libcast_shell_android', |
560 'type': 'shared_library', | 571 'type': 'shared_library', |
561 'dependencies': [ | 572 'dependencies': [ |
562 'cast_jni_headers', | 573 'cast_jni_headers', |
563 'cast_shell_common', | 574 'cast_shell_common', |
564 'cast_shell_icudata', | 575 'cast_shell_icudata', |
565 'cast_shell_pak', | 576 'cast_shell_pak', |
566 'cast_version_header', | 577 'cast_version_header', |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 'cast_shell_core', | 770 'cast_shell_core', |
760 ], | 771 ], |
761 'sources': [ | 772 'sources': [ |
762 'app/cast_main.cc', | 773 'app/cast_main.cc', |
763 ], | 774 ], |
764 }, | 775 }, |
765 ], # end of targets | 776 ], # end of targets |
766 }], | 777 }], |
767 ], # end of conditions | 778 ], # end of conditions |
768 } | 779 } |
OLD | NEW |