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

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: Disable external snapshot for webview 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 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 'content_shell_apk', 1033 'content_shell_apk',
1034 ], 1034 ],
1035 'includes': [ '../build/apk_fake_jar.gypi' ], 1035 'includes': [ '../build/apk_fake_jar.gypi' ],
1036 }, 1036 },
1037 { 1037 {
1038 'target_name': 'content_shell_apk', 1038 'target_name': 'content_shell_apk',
1039 'type': 'none', 1039 'type': 'none',
1040 'dependencies': [ 1040 'dependencies': [
1041 'content.gyp:content_icudata', 1041 'content.gyp:content_icudata',
1042 'content.gyp:content_java', 1042 'content.gyp:content_java',
1043 'content.gyp:content_v8_external_data',
1043 'content_java_test_support', 1044 'content_java_test_support',
1044 'content_shell_java', 1045 'content_shell_java',
1045 'libcontent_shell_content_view', 1046 'libcontent_shell_content_view',
1046 '../base/base.gyp:base_java', 1047 '../base/base.gyp:base_java',
1047 '../media/media.gyp:media_java', 1048 '../media/media.gyp:media_java',
1048 '../net/net.gyp:net_java', 1049 '../net/net.gyp:net_java',
1049 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir', 1050 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir',
1050 '../tools/android/forwarder/forwarder.gyp:forwarder', 1051 '../tools/android/forwarder/forwarder.gyp:forwarder',
1051 '../ui/android/ui_android.gyp:ui_java', 1052 '../ui/android/ui_android.gyp:ui_java',
1052 ], 1053 ],
1053 'variables': { 1054 'variables': {
1054 'apk_name': 'ContentShell', 1055 'apk_name': 'ContentShell',
1055 'manifest_package_name': 'org.chromium.content_shell_apk', 1056 'manifest_package_name': 'org.chromium.content_shell_apk',
1056 'java_in_dir': 'shell/android/shell_apk', 1057 'java_in_dir': 'shell/android/shell_apk',
1057 'resource_dir': 'shell/android/shell_apk/res', 1058 'resource_dir': 'shell/android/shell_apk/res',
1058 'native_lib_target': 'libcontent_shell_content_view', 1059 'native_lib_target': 'libcontent_shell_content_view',
1059 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1060 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1060 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1061 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1061 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], 1062 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'],
1062 'conditions': [ 1063 'conditions': [
1063 ['icu_use_data_file_flag==1', { 1064 ['icu_use_data_file_flag==1', {
1064 'additional_input_paths': [ 1065 'additional_input_paths': [
1065 '<(PRODUCT_DIR)/icudtl.dat', 1066 '<(PRODUCT_DIR)/icudtl.dat',
1066 ], 1067 ],
1067 }], 1068 }],
1069 ['v8_use_external_startup_data==1', {
1070 'additional_input_paths': [
1071 '<(PRODUCT_DIR)/natives_blob.bin',
1072 '<(PRODUCT_DIR)/snapshot_blob.bin',
1073 ],
1074 }],
1068 ], 1075 ],
1069 }, 1076 },
1070 'conditions': [ 1077 'conditions': [
1071 ['android_webview_build==0', { 1078 ['android_webview_build==0', {
1072 'dependencies': [ 1079 'dependencies': [
1073 '../tools/imagediff/image_diff.gyp:image_diff#host', 1080 '../tools/imagediff/image_diff.gyp:image_diff#host',
1074 ], 1081 ],
1075 }], 1082 }],
1076 ], 1083 ],
1077 'includes': [ '../build/java_apk.gypi' ], 1084 'includes': [ '../build/java_apk.gypi' ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1136 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1130 '--destination_dir', '<(dest_dir)', 1137 '--destination_dir', '<(dest_dir)',
1131 ], 1138 ],
1132 }, 1139 },
1133 ], 1140 ],
1134 }, 1141 },
1135 ], 1142 ],
1136 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1143 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1137 ] 1144 ]
1138 } 1145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698