OLD | NEW |
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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1095 'variables': { | 1095 'variables': { |
1096 'apk_name': 'ContentShell', | 1096 'apk_name': 'ContentShell', |
1097 'manifest_package_name': 'org.chromium.content_shell_apk', | 1097 'manifest_package_name': 'org.chromium.content_shell_apk', |
1098 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_shell_m
anifest/AndroidManifest.xml', | 1098 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_shell_m
anifest/AndroidManifest.xml', |
1099 'java_in_dir': 'shell/android/shell_apk', | 1099 'java_in_dir': 'shell/android/shell_apk', |
1100 'resource_dir': 'shell/android/shell_apk/res', | 1100 'resource_dir': 'shell/android/shell_apk/res', |
1101 'native_lib_target': 'libcontent_shell_content_view', | 1101 'native_lib_target': 'libcontent_shell_content_view', |
1102 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 1102 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
1103 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', | 1103 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
1104 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], | 1104 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], |
| 1105 # Allow v8 snapshots to be loaded directly from the .apk. |
| 1106 'extensions_to_not_compress': 'bin', |
1105 'conditions': [ | 1107 'conditions': [ |
1106 ['icu_use_data_file_flag==1', { | 1108 ['icu_use_data_file_flag==1', { |
1107 'additional_input_paths': [ | 1109 'additional_input_paths': [ |
1108 '<(PRODUCT_DIR)/icudtl.dat', | 1110 '<(PRODUCT_DIR)/icudtl.dat', |
1109 ], | 1111 ], |
1110 }], | 1112 }], |
1111 ['v8_use_external_startup_data==1', { | 1113 ['v8_use_external_startup_data==1', { |
1112 'additional_input_paths': [ | 1114 'additional_input_paths': [ |
1113 '<(PRODUCT_DIR)/natives_blob.bin', | 1115 '<(PRODUCT_DIR)/natives_blob.bin', |
1114 '<(PRODUCT_DIR)/snapshot_blob.bin', | 1116 '<(PRODUCT_DIR)/snapshot_blob.bin', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1172 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1174 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1173 '--destination_dir', '<(dest_dir)', | 1175 '--destination_dir', '<(dest_dir)', |
1174 ], | 1176 ], |
1175 }, | 1177 }, |
1176 ], | 1178 ], |
1177 }, | 1179 }, |
1178 ], | 1180 ], |
1179 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1181 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1180 ] | 1182 ] |
1181 } | 1183 } |
OLD | NEW |