| 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_shell_assets_copy', | 617 'target_name': 'content_icudata', |
| 618 'type': 'none', | 618 'type': 'none', |
| 619 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], | 619 'conditions': [ |
| 620 'variables': { | 620 ['icu_use_data_file_flag==1', { |
| 621 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], | 621 'copies': [ |
| 622 'conditions': [ | 622 { |
| 623 ['v8_use_external_startup_data==1', { | 623 'destination': '<(PRODUCT_DIR)/content_shell/assets', |
| 624 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps
hot'], | 624 'files': [ |
| 625 'renaming_sources': [ | 625 '<(PRODUCT_DIR)/icudtl.dat', |
| 626 '<(PRODUCT_DIR)/natives_blob.bin', | 626 ], |
| 627 '<(PRODUCT_DIR)/snapshot_blob.bin', | 627 }, |
| 628 ], | 628 ], |
| 629 'renaming_destinations': [ | 629 }], |
| 630 'natives_blob_<(arch_suffix).bin', | 630 ], |
| 631 'snapshot_blob_<(arch_suffix).bin', | 631 }, |
| 632 ], | 632 { |
| 633 }], | 633 'target_name': 'content_v8_external_data', |
| 634 ['icu_use_data_file_flag==1', { | 634 'type': 'none', |
| 635 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'], | 635 'conditions': [ |
| 636 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'], | 636 ['v8_use_external_startup_data==1', { |
| 637 }], | 637 'copies': [ |
| 638 ], | 638 { |
| 639 'dest_path': '<(PRODUCT_DIR)/content_shell/assets', | 639 'destination': '<(PRODUCT_DIR)/content_shell/assets', |
| 640 'clear': 1, | 640 'files': [ |
| 641 }, | 641 '<(PRODUCT_DIR)/natives_blob.bin', |
| 642 'includes': [ | 642 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 643 '../build/android/copy_ex.gypi', | 643 ], |
| 644 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 644 }, |
| 645 ], |
| 646 }], |
| 645 ], | 647 ], |
| 646 }, | 648 }, |
| 647 ], | 649 ], |
| 648 }], # OS == "android" | 650 }], # OS == "android" |
| 649 ], | 651 ], |
| 650 } | 652 } |
| OLD | NEW |