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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 'native_lib_target': 'libcontent_shell_content_view', | 1026 'native_lib_target': 'libcontent_shell_content_view', |
1027 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 1027 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
1028 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', | 1028 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
1029 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], | 1029 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], |
1030 'conditions': [ | 1030 'conditions': [ |
1031 ['icu_use_data_file_flag==1', { | 1031 ['icu_use_data_file_flag==1', { |
1032 'additional_input_paths': [ | 1032 'additional_input_paths': [ |
1033 '<(PRODUCT_DIR)/icudtl.dat', | 1033 '<(PRODUCT_DIR)/icudtl.dat', |
1034 ], | 1034 ], |
1035 }], | 1035 }], |
1036 ['component != "shared_library" and target_arch != "arm64" and tar
get_arch != "x64" and enable_dart_native_extensions != 1', { | |
1037 # Only enable the chromium linker on regular builds, since the | |
1038 # component build crashes on Android 4.4. See b/11379966 | |
1039 | |
1040 # Disable when using dart native extensions, so the extensions | |
1041 # do not get sent through the crazy linker. | |
1042 'use_chromium_linker': '1', | |
1043 }], | |
1044 ], | 1036 ], |
1045 }, | 1037 }, |
1046 'conditions': [ | 1038 'conditions': [ |
1047 ['android_webview_build==0', { | 1039 ['android_webview_build==0', { |
1048 'dependencies': [ | 1040 'dependencies': [ |
1049 '../tools/imagediff/image_diff.gyp:image_diff#host', | 1041 '../tools/imagediff/image_diff.gyp:image_diff#host', |
1050 ], | 1042 ], |
1051 }], | 1043 }], |
1052 ['enable_dart_native_extensions==1', { | 1044 ['enable_dart_native_extensions==1', { |
1053 'dependencies': [ | 1045 'dependencies': [ |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1110 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1102 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1111 '--destination_dir', '<(dest_dir)', | 1103 '--destination_dir', '<(dest_dir)', |
1112 ], | 1104 ], |
1113 }, | 1105 }, |
1114 ], | 1106 ], |
1115 }, | 1107 }, |
1116 ], | 1108 ], |
1117 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1109 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1118 ] | 1110 ] |
1119 } | 1111 } |
OLD | NEW |