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

Side by Side Diff: content/content.gyp

Issue 1421893002: Revert of Reland Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months 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_shell_assets_copy', 633 'target_name': 'content_icudata',
634 'type': 'none', 634 'type': 'none',
635 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], 635 'conditions': [
636 'variables': { 636 ['icu_use_data_file_flag==1', {
637 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], 637 'copies': [
638 'conditions': [ 638 {
639 ['v8_use_external_startup_data==1', { 639 'destination': '<(PRODUCT_DIR)/content_shell/assets',
640 'dependencies': ['<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snaps hot'], 640 'files': [
641 'renaming_sources': [ 641 '<(PRODUCT_DIR)/icudtl.dat',
642 '<(PRODUCT_DIR)/natives_blob.bin', 642 ],
643 '<(PRODUCT_DIR)/snapshot_blob.bin', 643 },
644 ], 644 ],
645 'renaming_destinations': [ 645 }],
646 'natives_blob_<(arch_suffix).bin', 646 ],
647 'snapshot_blob_<(arch_suffix).bin', 647 },
648 ], 648 {
649 }], 649 'target_name': 'content_v8_external_data',
650 ['icu_use_data_file_flag==1', { 650 'type': 'none',
651 'dependencies': ['<(DEPTH)/third_party/icu/icu.gyp:icudata'], 651 'conditions': [
652 'src_files': ['<(PRODUCT_DIR)/icudtl.dat'], 652 ['v8_use_external_startup_data==1', {
653 }], 653 'copies': [
654 ], 654 {
655 'dest_path': '<(PRODUCT_DIR)/content_shell/assets', 655 'destination': '<(PRODUCT_DIR)/content_shell/assets',
656 'clear': 1, 656 'files': [
657 }, 657 '<(PRODUCT_DIR)/natives_blob.bin',
658 'includes': [ 658 '<(PRODUCT_DIR)/snapshot_blob.bin',
659 '../build/android/copy_ex.gypi', 659 ],
660 '../build/android/v8_external_startup_data_arch_suffix.gypi', 660 },
661 ],
662 }],
661 ], 663 ],
662 }, 664 },
663 ], 665 ],
664 }], # OS == "android" 666 }], # OS == "android"
665 ], 667 ],
666 } 668 }
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