Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: content/content.gyp

Issue 1417753004: Reland Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/html_viewer/BUILD.gn ('k') | content/content_shell.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 'sources': [ 623 'sources': [
624 'public/android/java/src/org/chromium/content/browser/input/Card boardVRDevice.java', 624 'public/android/java/src/org/chromium/content/browser/input/Card boardVRDevice.java',
625 ], 625 ],
626 'dependencies': [ 626 'dependencies': [
627 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar', 627 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar',
628 ], 628 ],
629 }], 629 }],
630 ], 630 ],
631 }, 631 },
632 { 632 {
633 'target_name': 'content_icudata', 633 'target_name': 'content_shell_assets_copy',
634 'type': 'none', 634 'type': 'none',
635 'conditions': [ 635 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'],
636 ['icu_use_data_file_flag==1', { 636 'variables': {
637 'copies': [ 637 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'],
638 { 638 'conditions': [
639 'destination': '<(PRODUCT_DIR)/content_shell/assets', 639 ['v8_use_external_startup_data==1', {
640 'files': [ 640 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps hot'],
641 '<(PRODUCT_DIR)/icudtl.dat', 641 'renaming_sources': [
642 ], 642 '<(PRODUCT_DIR)/natives_blob.bin',
643 }, 643 '<(PRODUCT_DIR)/snapshot_blob.bin',
644 ], 644 ],
645 }], 645 'renaming_destinations': [
646 ], 646 'natives_blob_<(arch_suffix).bin',
647 }, 647 'snapshot_blob_<(arch_suffix).bin',
648 { 648 ],
649 'target_name': 'content_v8_external_data', 649 }],
650 'type': 'none', 650 ['icu_use_data_file_flag==1', {
651 'conditions': [ 651 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'],
652 ['v8_use_external_startup_data==1', { 652 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'],
653 'copies': [ 653 }],
654 { 654 ],
655 'destination': '<(PRODUCT_DIR)/content_shell/assets', 655 'dest_path': '<(PRODUCT_DIR)/content_shell/assets',
656 'files': [ 656 'clear': 1,
657 '<(PRODUCT_DIR)/natives_blob.bin', 657 },
658 '<(PRODUCT_DIR)/snapshot_blob.bin', 658 'includes': [
659 ], 659 '../build/android/copy_ex.gypi',
660 }, 660 '../build/android/v8_external_startup_data_arch_suffix.gypi',
661 ],
662 }],
663 ], 661 ],
664 }, 662 },
665 ], 663 ],
666 }], # OS == "android" 664 }], # OS == "android"
667 ], 665 ],
668 } 666 }
OLDNEW
« no previous file with comments | « components/html_viewer/BUILD.gn ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698