Chromium Code Reviews

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

Powered by Google App Engine