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

Side by Side Diff: content/content_shell.gypi

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Ross' comments Created 6 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
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 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 ], 863 ],
864 }], 864 }],
865 }], 865 }],
866 ], 866 ],
867 }], 867 }],
868 ['icu_use_data_file_flag==1', { 868 ['icu_use_data_file_flag==1', {
869 'mac_bundle_resources': [ 869 'mac_bundle_resources': [
870 '<(PRODUCT_DIR)/icudtl.dat', 870 '<(PRODUCT_DIR)/icudtl.dat',
871 ], 871 ],
872 }], 872 }],
873 ['v8_use_external_startup_data==1', {
874 'mac_bundle_resources': [
875 '<(PRODUCT_DIR)/natives_blob.bin',
876 '<(PRODUCT_DIR)/snapshot_blob.bin',
877 ],
878 }],
873 ], 879 ],
874 }, # target content_shell_framework 880 }, # target content_shell_framework
875 { 881 {
876 'target_name': 'content_shell_helper_app', 882 'target_name': 'content_shell_helper_app',
877 'type': 'executable', 883 'type': 'executable',
878 'variables': { 'enable_wexit_time_destructors': 1, }, 884 'variables': { 'enable_wexit_time_destructors': 1, },
879 'product_name': '<(content_shell_product_name) Helper', 885 'product_name': '<(content_shell_product_name) Helper',
880 'mac_bundle': 1, 886 'mac_bundle': 1,
881 'dependencies': [ 887 'dependencies': [
882 'content_shell_framework', 888 'content_shell_framework',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 'content_shell_apk', 1025 'content_shell_apk',
1020 ], 1026 ],
1021 'includes': [ '../build/apk_fake_jar.gypi' ], 1027 'includes': [ '../build/apk_fake_jar.gypi' ],
1022 }, 1028 },
1023 { 1029 {
1024 'target_name': 'content_shell_apk', 1030 'target_name': 'content_shell_apk',
1025 'type': 'none', 1031 'type': 'none',
1026 'dependencies': [ 1032 'dependencies': [
1027 'content.gyp:content_icudata', 1033 'content.gyp:content_icudata',
1028 'content.gyp:content_java', 1034 'content.gyp:content_java',
1035 'content.gyp:content_v8_external_data',
1029 'content_java_test_support', 1036 'content_java_test_support',
1030 'content_shell_java', 1037 'content_shell_java',
1031 'libcontent_shell_content_view', 1038 'libcontent_shell_content_view',
1032 '../base/base.gyp:base_java', 1039 '../base/base.gyp:base_java',
1033 '../media/media.gyp:media_java', 1040 '../media/media.gyp:media_java',
1034 '../net/net.gyp:net_java', 1041 '../net/net.gyp:net_java',
1035 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir', 1042 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir',
1036 '../tools/android/forwarder/forwarder.gyp:forwarder', 1043 '../tools/android/forwarder/forwarder.gyp:forwarder',
1037 '../ui/android/ui_android.gyp:ui_java', 1044 '../ui/android/ui_android.gyp:ui_java',
1038 ], 1045 ],
1039 'variables': { 1046 'variables': {
1040 'apk_name': 'ContentShell', 1047 'apk_name': 'ContentShell',
1041 'manifest_package_name': 'org.chromium.content_shell_apk', 1048 'manifest_package_name': 'org.chromium.content_shell_apk',
1042 'java_in_dir': 'shell/android/shell_apk', 1049 'java_in_dir': 'shell/android/shell_apk',
1043 'resource_dir': 'shell/android/shell_apk/res', 1050 'resource_dir': 'shell/android/shell_apk/res',
1044 'native_lib_target': 'libcontent_shell_content_view', 1051 'native_lib_target': 'libcontent_shell_content_view',
1045 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1052 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1046 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1053 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1047 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], 1054 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'],
1048 'conditions': [ 1055 'conditions': [
1049 ['icu_use_data_file_flag==1', { 1056 ['icu_use_data_file_flag==1', {
1050 'additional_input_paths': [ 1057 'additional_input_paths': [
1051 '<(PRODUCT_DIR)/icudtl.dat', 1058 '<(PRODUCT_DIR)/icudtl.dat',
1052 ], 1059 ],
1053 }], 1060 }],
1061 ['v8_use_external_startup_data==1', {
1062 'additional_input_paths': [
1063 '<(PRODUCT_DIR)/natives_blob.bin',
1064 '<(PRODUCT_DIR)/snapshot_blob.bin',
1065 ],
1066 }],
1054 ], 1067 ],
1055 }, 1068 },
1056 'conditions': [ 1069 'conditions': [
1057 ['android_webview_build==0', { 1070 ['android_webview_build==0', {
1058 'dependencies': [ 1071 'dependencies': [
1059 '../tools/imagediff/image_diff.gyp:image_diff#host', 1072 '../tools/imagediff/image_diff.gyp:image_diff#host',
1060 ], 1073 ],
1061 }], 1074 }],
1062 ], 1075 ],
1063 'includes': [ '../build/java_apk.gypi' ], 1076 'includes': [ '../build/java_apk.gypi' ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1128 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1116 '--destination_dir', '<(dest_dir)', 1129 '--destination_dir', '<(dest_dir)',
1117 ], 1130 ],
1118 }, 1131 },
1119 ], 1132 ],
1120 }, 1133 },
1121 ], 1134 ],
1122 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1135 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1123 ] 1136 ]
1124 } 1137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698