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 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1024 'native_lib_target': 'libcontent_shell_content_view', | 1024 'native_lib_target': 'libcontent_shell_content_view', |
1025 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 1025 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
1026 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', | 1026 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
1027 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], | 1027 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], |
1028 'conditions': [ | 1028 'conditions': [ |
1029 ['icu_use_data_file_flag==1', { | 1029 ['icu_use_data_file_flag==1', { |
1030 'additional_input_paths': [ | 1030 'additional_input_paths': [ |
1031 '<(PRODUCT_DIR)/icudtl.dat', | 1031 '<(PRODUCT_DIR)/icudtl.dat', |
1032 ], | 1032 ], |
1033 }], | 1033 }], |
1034 ['component != "shared_library" and target_arch != "arm64" and tar
get_arch != "x64" and profiling_full_stack_frames != 1', { | |
1035 # Only enable the chromium linker on regular builds, since the | |
1036 # component build crashes on Android 4.4. See b/11379966 | |
1037 'use_chromium_linker': '1', | |
1038 }], | |
1039 ], | 1034 ], |
1040 }, | 1035 }, |
1041 'conditions': [ | 1036 'conditions': [ |
1042 ['android_webview_build==0', { | 1037 ['android_webview_build==0', { |
1043 'dependencies': [ | 1038 'dependencies': [ |
1044 '../tools/imagediff/image_diff.gyp:image_diff#host', | 1039 '../tools/imagediff/image_diff.gyp:image_diff#host', |
1045 ], | 1040 ], |
1046 }], | 1041 }], |
1047 ], | 1042 ], |
1048 'includes': [ '../build/java_apk.gypi' ], | 1043 'includes': [ '../build/java_apk.gypi' ], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1095 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1101 '--destination_dir', '<(dest_dir)', | 1096 '--destination_dir', '<(dest_dir)', |
1102 ], | 1097 ], |
1103 }, | 1098 }, |
1104 ], | 1099 ], |
1105 }, | 1100 }, |
1106 ], | 1101 ], |
1107 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1102 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1108 ] | 1103 ] |
1109 } | 1104 } |
OLD | NEW |