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

Side by Side Diff: content/content_shell.gypi

Issue 329223002: Android: enable chromium linker on the shells. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_android.gypi ('k') | no next file » | 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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 'native_lib_target': 'libcontent_shell_content_view', 1022 'native_lib_target': 'libcontent_shell_content_view',
1023 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1023 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1024 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1024 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1025 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], 1025 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'],
1026 'conditions': [ 1026 'conditions': [
1027 ['icu_use_data_file_flag==1', { 1027 ['icu_use_data_file_flag==1', {
1028 'additional_input_paths': [ 1028 'additional_input_paths': [
1029 '<(PRODUCT_DIR)/icudtl.dat', 1029 '<(PRODUCT_DIR)/icudtl.dat',
1030 ], 1030 ],
1031 }], 1031 }],
1032 ['component != "shared_library" and target_arch != "arm64" and tar get_arch != "x64"', {
1033 # Only enable the chromium linker on regular builds, since the
1034 # component build crashes on Android 4.4. See b/11379966
1035 'use_chromium_linker': '1',
1036 }],
1032 ], 1037 ],
1033 }, 1038 },
1034 'conditions': [ 1039 'conditions': [
1035 ['android_webview_build==0', { 1040 ['android_webview_build==0', {
1036 'dependencies': [ 1041 'dependencies': [
1037 '../tools/imagediff/image_diff.gyp:image_diff#host', 1042 '../tools/imagediff/image_diff.gyp:image_diff#host',
1038 ], 1043 ],
1039 }], 1044 }],
1040 ], 1045 ],
1041 'includes': [ '../build/java_apk.gypi' ], 1046 'includes': [ '../build/java_apk.gypi' ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1098 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1094 '--destination_dir', '<(dest_dir)', 1099 '--destination_dir', '<(dest_dir)',
1095 ], 1100 ],
1096 }, 1101 },
1097 ], 1102 ],
1098 }, 1103 },
1099 ], 1104 ],
1100 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1105 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1101 ] 1106 ]
1102 } 1107 }
OLDNEW
« no previous file with comments | « chrome/chrome_android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698