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

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: Sync master 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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 'content_shell_apk', 1041 'content_shell_apk',
1042 ], 1042 ],
1043 'includes': [ '../build/apk_fake_jar.gypi' ], 1043 'includes': [ '../build/apk_fake_jar.gypi' ],
1044 }, 1044 },
1045 { 1045 {
1046 'target_name': 'content_shell_apk', 1046 'target_name': 'content_shell_apk',
1047 'type': 'none', 1047 'type': 'none',
1048 'dependencies': [ 1048 'dependencies': [
1049 'content.gyp:content_icudata', 1049 'content.gyp:content_icudata',
1050 'content.gyp:content_java', 1050 'content.gyp:content_java',
1051 'content.gyp:content_v8_external_data',
1051 'content_java_test_support', 1052 'content_java_test_support',
1052 'content_shell_java', 1053 'content_shell_java',
1053 'libcontent_shell_content_view', 1054 'libcontent_shell_content_view',
1054 '../base/base.gyp:base_java', 1055 '../base/base.gyp:base_java',
1055 '../media/media.gyp:media_java', 1056 '../media/media.gyp:media_java',
1056 '../net/net.gyp:net_java', 1057 '../net/net.gyp:net_java',
1057 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir', 1058 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir',
1058 '../tools/android/forwarder/forwarder.gyp:forwarder', 1059 '../tools/android/forwarder/forwarder.gyp:forwarder',
1059 '../ui/android/ui_android.gyp:ui_java', 1060 '../ui/android/ui_android.gyp:ui_java',
1060 ], 1061 ],
1061 'variables': { 1062 'variables': {
1062 'apk_name': 'ContentShell', 1063 'apk_name': 'ContentShell',
1063 'manifest_package_name': 'org.chromium.content_shell_apk', 1064 'manifest_package_name': 'org.chromium.content_shell_apk',
1064 'java_in_dir': 'shell/android/shell_apk', 1065 'java_in_dir': 'shell/android/shell_apk',
1065 'resource_dir': 'shell/android/shell_apk/res', 1066 'resource_dir': 'shell/android/shell_apk/res',
1066 'native_lib_target': 'libcontent_shell_content_view', 1067 'native_lib_target': 'libcontent_shell_content_view',
1067 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1068 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1068 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1069 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1069 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], 1070 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'],
1070 'conditions': [ 1071 'conditions': [
1071 ['icu_use_data_file_flag==1', { 1072 ['icu_use_data_file_flag==1', {
1072 'additional_input_paths': [ 1073 'additional_input_paths': [
1073 '<(PRODUCT_DIR)/icudtl.dat', 1074 '<(PRODUCT_DIR)/icudtl.dat',
1074 ], 1075 ],
1075 }], 1076 }],
1077 ['v8_use_external_startup_data==1', {
1078 'additional_input_paths': [
1079 '<(PRODUCT_DIR)/natives_blob.bin',
1080 '<(PRODUCT_DIR)/snapshot_blob.bin',
1081 ],
1082 }],
1076 ], 1083 ],
1077 }, 1084 },
1078 'conditions': [ 1085 'conditions': [
1079 ['android_webview_build==0', { 1086 ['android_webview_build==0', {
1080 'dependencies': [ 1087 'dependencies': [
1081 '../tools/imagediff/image_diff.gyp:image_diff#host', 1088 '../tools/imagediff/image_diff.gyp:image_diff#host',
1082 ], 1089 ],
1083 }], 1090 }],
1084 ], 1091 ],
1085 'includes': [ '../build/java_apk.gypi' ], 1092 'includes': [ '../build/java_apk.gypi' ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1144 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1138 '--destination_dir', '<(dest_dir)', 1145 '--destination_dir', '<(dest_dir)',
1139 ], 1146 ],
1140 }, 1147 },
1141 ], 1148 ],
1142 }, 1149 },
1143 ], 1150 ],
1144 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1151 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1145 ] 1152 ]
1146 } 1153 }
OLDNEW
« no previous file with comments | « content/content_gl_tests.isolate ('k') | content/content_tests.gypi » ('j') | tools/gypv8sh.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698