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

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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 ], 865 ],
866 }], 866 }],
867 }], 867 }],
868 ], 868 ],
869 }], 869 }],
870 ['icu_use_data_file_flag==1', { 870 ['icu_use_data_file_flag==1', {
871 'mac_bundle_resources': [ 871 'mac_bundle_resources': [
872 '<(PRODUCT_DIR)/icudtl.dat', 872 '<(PRODUCT_DIR)/icudtl.dat',
873 ], 873 ],
874 }], 874 }],
875 ['v8_use_external_startup_data==1', {
876 'mac_bundle_resources': [
877 '<(PRODUCT_DIR)/natives_blob.bin',
878 '<(PRODUCT_DIR)/snapshot_blob.bin',
879 ],
880 }],
875 ], 881 ],
876 }, # target content_shell_framework 882 }, # target content_shell_framework
877 { 883 {
878 'target_name': 'content_shell_helper_app', 884 'target_name': 'content_shell_helper_app',
879 'type': 'executable', 885 'type': 'executable',
880 'variables': { 'enable_wexit_time_destructors': 1, }, 886 'variables': { 'enable_wexit_time_destructors': 1, },
881 'product_name': '<(content_shell_product_name) Helper', 887 'product_name': '<(content_shell_product_name) Helper',
882 'mac_bundle': 1, 888 'mac_bundle': 1,
883 'dependencies': [ 889 'dependencies': [
884 'content_shell_framework', 890 'content_shell_framework',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 'content_shell_apk', 1027 'content_shell_apk',
1022 ], 1028 ],
1023 'includes': [ '../build/apk_fake_jar.gypi' ], 1029 'includes': [ '../build/apk_fake_jar.gypi' ],
1024 }, 1030 },
1025 { 1031 {
1026 'target_name': 'content_shell_apk', 1032 'target_name': 'content_shell_apk',
1027 'type': 'none', 1033 'type': 'none',
1028 'dependencies': [ 1034 'dependencies': [
1029 'content.gyp:content_icudata', 1035 'content.gyp:content_icudata',
1030 'content.gyp:content_java', 1036 'content.gyp:content_java',
1037 'content.gyp:content_v8_external_data',
1031 'content_java_test_support', 1038 'content_java_test_support',
1032 'content_shell_java', 1039 'content_shell_java',
1033 'libcontent_shell_content_view', 1040 'libcontent_shell_content_view',
1034 '../base/base.gyp:base_java', 1041 '../base/base.gyp:base_java',
1035 '../media/media.gyp:media_java', 1042 '../media/media.gyp:media_java',
1036 '../net/net.gyp:net_java', 1043 '../net/net.gyp:net_java',
1037 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir', 1044 '../third_party/mesa/mesa.gyp:osmesa_in_lib_dir',
1038 '../tools/android/forwarder/forwarder.gyp:forwarder', 1045 '../tools/android/forwarder/forwarder.gyp:forwarder',
1039 '../ui/android/ui_android.gyp:ui_java', 1046 '../ui/android/ui_android.gyp:ui_java',
1040 ], 1047 ],
1041 'variables': { 1048 'variables': {
1042 'apk_name': 'ContentShell', 1049 'apk_name': 'ContentShell',
1043 'manifest_package_name': 'org.chromium.content_shell_apk', 1050 'manifest_package_name': 'org.chromium.content_shell_apk',
1044 'java_in_dir': 'shell/android/shell_apk', 1051 'java_in_dir': 'shell/android/shell_apk',
1045 'resource_dir': 'shell/android/shell_apk/res', 1052 'resource_dir': 'shell/android/shell_apk/res',
1046 'native_lib_target': 'libcontent_shell_content_view', 1053 'native_lib_target': 'libcontent_shell_content_view',
1047 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1054 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1048 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1055 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1049 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], 1056 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'],
1050 'conditions': [ 1057 'conditions': [
1051 ['icu_use_data_file_flag==1', { 1058 ['icu_use_data_file_flag==1', {
1052 'additional_input_paths': [ 1059 'additional_input_paths': [
1053 '<(PRODUCT_DIR)/icudtl.dat', 1060 '<(PRODUCT_DIR)/icudtl.dat',
1054 ], 1061 ],
1055 }], 1062 }],
1063 ['v8_use_external_startup_data==1', {
1064 'additional_input_paths': [
1065 '<(PRODUCT_DIR)/natives_blob.bin',
1066 '<(PRODUCT_DIR)/snapshot_blob.bin',
1067 ],
1068 }],
1056 ], 1069 ],
1057 }, 1070 },
1058 'conditions': [ 1071 'conditions': [
1059 ['android_webview_build==0', { 1072 ['android_webview_build==0', {
1060 'dependencies': [ 1073 'dependencies': [
1061 '../tools/imagediff/image_diff.gyp:image_diff#host', 1074 '../tools/imagediff/image_diff.gyp:image_diff#host',
1062 ], 1075 ],
1063 }], 1076 }],
1064 ], 1077 ],
1065 'includes': [ '../build/java_apk.gypi' ], 1078 'includes': [ '../build/java_apk.gypi' ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1130 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1118 '--destination_dir', '<(dest_dir)', 1131 '--destination_dir', '<(dest_dir)',
1119 ], 1132 ],
1120 }, 1133 },
1121 ], 1134 ],
1122 }, 1135 },
1123 ], 1136 ],
1124 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1137 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1125 ] 1138 ]
1126 } 1139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698