OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, | 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, |
10 }, | 10 }, |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 }, | 631 }, |
632 { | 632 { |
633 'target_name': 'content_shell_assets_copy', | 633 'target_name': 'content_shell_assets_copy', |
634 'type': 'none', | 634 'type': 'none', |
635 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], | 635 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], |
636 'variables': { | 636 'variables': { |
637 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], | 637 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], |
638 'conditions': [ | 638 'conditions': [ |
639 ['v8_use_external_startup_data==1', { | 639 ['v8_use_external_startup_data==1', { |
640 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps
hot'], | 640 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps
hot'], |
641 'renaming_sources': [ | 641 'src_files': [ |
642 '<(PRODUCT_DIR)/natives_blob.bin', | 642 '<(PRODUCT_DIR)/natives_blob.bin', |
643 '<(PRODUCT_DIR)/snapshot_blob.bin', | 643 '<(PRODUCT_DIR)/snapshot_blob.bin', |
644 ], | 644 ], |
645 'renaming_destinations': [ | |
646 'natives_blob_<(arch_suffix).bin', | |
647 'snapshot_blob_<(arch_suffix).bin', | |
648 ], | |
649 }], | 645 }], |
650 ['icu_use_data_file_flag==1', { | 646 ['icu_use_data_file_flag==1', { |
651 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'], | 647 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'], |
652 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'], | 648 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'], |
653 }], | 649 }], |
654 ], | 650 ], |
655 'dest_path': '<(PRODUCT_DIR)/content_shell/assets', | 651 'dest_path': '<(PRODUCT_DIR)/content_shell/assets', |
656 'clear': 1, | 652 'clear': 1, |
657 }, | 653 }, |
658 'includes': [ | 654 'includes': [ |
659 '../build/android/copy_ex.gypi', | 655 '../build/android/copy_ex.gypi', |
660 '../build/android/v8_external_startup_data_arch_suffix.gypi', | |
661 ], | 656 ], |
662 }, | 657 }, |
663 ], | 658 ], |
664 }], # OS == "android" | 659 }], # OS == "android" |
665 ], | 660 ], |
666 } | 661 } |
OLD | NEW |