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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 'sources': [ | 607 'sources': [ |
608 'public/android/java/src/org/chromium/content/browser/input/Card
boardVRDevice.java', | 608 'public/android/java/src/org/chromium/content/browser/input/Card
boardVRDevice.java', |
609 ], | 609 ], |
610 'dependencies': [ | 610 'dependencies': [ |
611 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar', | 611 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar', |
612 ], | 612 ], |
613 }], | 613 }], |
614 ], | 614 ], |
615 }, | 615 }, |
616 { | 616 { |
617 'target_name': 'content_icudata', | 617 'target_name': 'content_shell_assets_copy', |
618 'type': 'none', | 618 'type': 'none', |
619 'conditions': [ | 619 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], |
620 ['icu_use_data_file_flag==1', { | 620 'variables': { |
621 'copies': [ | 621 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], |
622 { | 622 'conditions': [ |
623 'destination': '<(PRODUCT_DIR)/content_shell/assets', | 623 ['v8_use_external_startup_data==1', { |
624 'files': [ | 624 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps
hot'], |
625 '<(PRODUCT_DIR)/icudtl.dat', | 625 'renaming_sources': [ |
626 ], | 626 '<(PRODUCT_DIR)/natives_blob.bin', |
627 }, | 627 '<(PRODUCT_DIR)/snapshot_blob.bin', |
628 ], | 628 ], |
629 }], | 629 'renaming_destinations': [ |
630 ], | 630 'natives_blob_<(arch_suffix).bin', |
631 }, | 631 'snapshot_blob_<(arch_suffix).bin', |
632 { | 632 ], |
633 'target_name': 'content_v8_external_data', | 633 }], |
634 'type': 'none', | 634 ['icu_use_data_file_flag==1', { |
635 'conditions': [ | 635 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'], |
636 ['v8_use_external_startup_data==1', { | 636 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'], |
637 'copies': [ | 637 }], |
638 { | 638 ], |
639 'destination': '<(PRODUCT_DIR)/content_shell/assets', | 639 'dest_path': '<(PRODUCT_DIR)/content_shell/assets', |
640 'files': [ | 640 'clear': 1, |
641 '<(PRODUCT_DIR)/natives_blob.bin', | 641 }, |
642 '<(PRODUCT_DIR)/snapshot_blob.bin', | 642 'includes': [ |
643 ], | 643 '../build/android/copy_ex.gypi', |
644 }, | 644 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
645 ], | |
646 }], | |
647 ], | 645 ], |
648 }, | 646 }, |
649 ], | 647 ], |
650 }], # OS == "android" | 648 }], # OS == "android" |
651 ], | 649 ], |
652 } | 650 } |
OLD | NEW |