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

Side by Side Diff: build/common.gypi

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error (previous patch was a mistake). Created 7 years, 3 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 # Default architecture we're building for is the architecture we're 115 # Default architecture we're building for is the architecture we're
116 # building on. 116 # building on.
117 'target_arch%': '<(host_arch)', 117 'target_arch%': '<(host_arch)',
118 118
119 # This is set when building the Android WebView inside the Android 119 # This is set when building the Android WebView inside the Android
120 # build system, using the 'android' gyp backend. The WebView code is 120 # build system, using the 'android' gyp backend. The WebView code is
121 # still built when this is unset, but builds using the normal chromium 121 # still built when this is unset, but builds using the normal chromium
122 # build system. 122 # build system.
123 'android_webview_build%': 0, 123 'android_webview_build%': 0,
124 124
125 # This is set to enable the Chrome-specific dynamic linker on
126 # Android.
127 'android_use_crazy_linker%': 0,
128
125 # Sets whether chrome is built for google tv device. 129 # Sets whether chrome is built for google tv device.
126 'google_tv%': 0, 130 'google_tv%': 0,
127 131
128 # Set ARM architecture version. 132 # Set ARM architecture version.
129 'arm_version%': 7, 133 'arm_version%': 7,
130 134
131 'conditions': [ 135 'conditions': [
132 # Set default value of toolkit_views based on OS. 136 # Set default value of toolkit_views based on OS.
133 ['OS=="win" or chromeos==1 or use_aura==1', { 137 ['OS=="win" or chromeos==1 or use_aura==1', {
134 'toolkit_views%': 1, 138 'toolkit_views%': 1,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'desktop_linux%': '<(desktop_linux)', 188 'desktop_linux%': '<(desktop_linux)',
185 'use_aura%': '<(use_aura)', 189 'use_aura%': '<(use_aura)',
186 'use_ash%': '<(use_ash)', 190 'use_ash%': '<(use_ash)',
187 'use_cras%': '<(use_cras)', 191 'use_cras%': '<(use_cras)',
188 'use_ozone%': '<(use_ozone)', 192 'use_ozone%': '<(use_ozone)',
189 'use_openssl%': '<(use_openssl)', 193 'use_openssl%': '<(use_openssl)',
190 'enable_viewport%': '<(enable_viewport)', 194 'enable_viewport%': '<(enable_viewport)',
191 'enable_hidpi%': '<(enable_hidpi)', 195 'enable_hidpi%': '<(enable_hidpi)',
192 'enable_touch_ui%': '<(enable_touch_ui)', 196 'enable_touch_ui%': '<(enable_touch_ui)',
193 'android_webview_build%': '<(android_webview_build)', 197 'android_webview_build%': '<(android_webview_build)',
198 'android_use_crazy_linker%': '<android_use_crazy_linker)',
194 'google_tv%': '<(google_tv)', 199 'google_tv%': '<(google_tv)',
195 'enable_app_list%': '<(enable_app_list)', 200 'enable_app_list%': '<(enable_app_list)',
196 'use_default_render_theme%': '<(use_default_render_theme)', 201 'use_default_render_theme%': '<(use_default_render_theme)',
197 'buildtype%': '<(buildtype)', 202 'buildtype%': '<(buildtype)',
198 'branding%': '<(branding)', 203 'branding%': '<(branding)',
199 'arm_version%': '<(arm_version)', 204 'arm_version%': '<(arm_version)',
200 205
201 # Set to 1 to enable fast builds. Set to 2 for even faster builds 206 # Set to 1 to enable fast builds. Set to 2 for even faster builds
202 # (it disables debug info for fastest compilation - only for use 207 # (it disables debug info for fastest compilation - only for use
203 # on compile-only bots). 208 # on compile-only bots).
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 'enable_google_now%': '<(enable_google_now)', 879 'enable_google_now%': '<(enable_google_now)',
875 'cld_version%': '<(cld_version)', 880 'cld_version%': '<(cld_version)',
876 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 881 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
877 'disable_ftp_support%': '<(disable_ftp_support)', 882 'disable_ftp_support%': '<(disable_ftp_support)',
878 'enable_task_manager%': '<(enable_task_manager)', 883 'enable_task_manager%': '<(enable_task_manager)',
879 'sas_dll_path%': '<(sas_dll_path)', 884 'sas_dll_path%': '<(sas_dll_path)',
880 'wix_path%': '<(wix_path)', 885 'wix_path%': '<(wix_path)',
881 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 886 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
882 'use_system_libjpeg%': '<(use_system_libjpeg)', 887 'use_system_libjpeg%': '<(use_system_libjpeg)',
883 'android_webview_build%': '<(android_webview_build)', 888 'android_webview_build%': '<(android_webview_build)',
889 'android_use_crazy_linker%': '<android_use_crazy_linker)',
884 'gyp_managed_install%': 0, 890 'gyp_managed_install%': 0,
885 'create_standalone_apk%': 1, 891 'create_standalone_apk%': 1,
886 'google_tv%': '<(google_tv)', 892 'google_tv%': '<(google_tv)',
887 'enable_app_list%': '<(enable_app_list)', 893 'enable_app_list%': '<(enable_app_list)',
888 'use_default_render_theme%': '<(use_default_render_theme)', 894 'use_default_render_theme%': '<(use_default_render_theme)',
889 'enable_settings_app%': '<(enable_settings_app)', 895 'enable_settings_app%': '<(enable_settings_app)',
890 'google_api_key%': '<(google_api_key)', 896 'google_api_key%': '<(google_api_key)',
891 'google_default_client_id%': '<(google_default_client_id)', 897 'google_default_client_id%': '<(google_default_client_id)',
892 'google_default_client_secret%': '<(google_default_client_secret)', 898 'google_default_client_secret%': '<(google_default_client_secret)',
893 'enable_managed_users%': '<(enable_managed_users)', 899 'enable_managed_users%': '<(enable_managed_users)',
(...skipping 3841 matching lines...) Expand 10 before | Expand all | Expand 10 after
4735 # settings in target dicts. SYMROOT is a special case, because many other 4741 # settings in target dicts. SYMROOT is a special case, because many other
4736 # Xcode variables depend on it, including variables such as 4742 # Xcode variables depend on it, including variables such as
4737 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4738 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4739 # files to appear (when present) in the UI as actual files and not red 4745 # files to appear (when present) in the UI as actual files and not red
4740 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4741 # and therefore SYMROOT, needs to be set at the project level. 4747 # and therefore SYMROOT, needs to be set at the project level.
4742 'SYMROOT': '<(DEPTH)/xcodebuild', 4748 'SYMROOT': '<(DEPTH)/xcodebuild',
4743 }, 4749 },
4744 } 4750 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698