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

Side by Side Diff: build/common.gypi

Issue 12385071: Make it possible to disable dbus on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: copyright header date fix Created 7 years, 9 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
« no previous file with comments | « build/all.gyp ('k') | chrome/chrome_browser_extensions.gypi » ('j') | 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 # 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'toolkit_views%': 0, 118 'toolkit_views%': 0,
119 }], 119 }],
120 120
121 # Set toolkit_uses_gtk for the Chromium browser on Linux. 121 # Set toolkit_uses_gtk for the Chromium browser on Linux.
122 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_aura==0', { 122 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_aura==0', {
123 'toolkit_uses_gtk%': 1, 123 'toolkit_uses_gtk%': 1,
124 }, { 124 }, {
125 'toolkit_uses_gtk%': 0, 125 'toolkit_uses_gtk%': 0,
126 }], 126 }],
127 127
128 # Whether or not to use D-Bus for core functionality on linux.
129 # (eg use_gconf=1 will still pull in dbus as a dependency).
130 ['OS=="linux"', {
131 'use_dbus%': 1,
132 }, {
133 'use_dbus%': 0,
134 }],
135
128 # Enable HiDPI on Mac OS and Chrome OS. 136 # Enable HiDPI on Mac OS and Chrome OS.
129 ['OS=="mac" or chromeos==1', { 137 ['OS=="mac" or chromeos==1', {
130 'enable_hidpi%': 1, 138 'enable_hidpi%': 1,
131 }], 139 }],
132 140
133 # Enable touch UI on Metro. 141 # Enable touch UI on Metro.
134 ['OS=="win"', { 142 ['OS=="win"', {
135 'enable_touch_ui%': 1, 143 'enable_touch_ui%': 1,
136 }], 144 }],
137 145
(...skipping 30 matching lines...) Expand all
168 'use_openssl%': '<(use_openssl)', 176 'use_openssl%': '<(use_openssl)',
169 'enable_viewport%': '<(enable_viewport)', 177 'enable_viewport%': '<(enable_viewport)',
170 'enable_hidpi%': '<(enable_hidpi)', 178 'enable_hidpi%': '<(enable_hidpi)',
171 'enable_touch_ui%': '<(enable_touch_ui)', 179 'enable_touch_ui%': '<(enable_touch_ui)',
172 'android_build_type%': '<(android_build_type)', 180 'android_build_type%': '<(android_build_type)',
173 'google_tv%': '<(google_tv)', 181 'google_tv%': '<(google_tv)',
174 'enable_app_list%': '<(enable_app_list)', 182 'enable_app_list%': '<(enable_app_list)',
175 'enable_message_center%': '<(enable_message_center)', 183 'enable_message_center%': '<(enable_message_center)',
176 'use_default_render_theme%': '<(use_default_render_theme)', 184 'use_default_render_theme%': '<(use_default_render_theme)',
177 'buildtype%': '<(buildtype)', 185 'buildtype%': '<(buildtype)',
186 'use_dbus%': '<(use_dbus)',
178 187
179 # Override branding to select the desired branding flavor. 188 # Override branding to select the desired branding flavor.
180 'branding%': 'Chromium', 189 'branding%': 'Chromium',
181 190
182 # This variable tells WebCore.gyp and JavaScriptCore.gyp whether they are 191 # This variable tells WebCore.gyp and JavaScriptCore.gyp whether they are
183 # are built under a chromium full build (1) or a webkit.org chromium 192 # are built under a chromium full build (1) or a webkit.org chromium
184 # build (0). 193 # build (0).
185 'inside_chromium_build%': 1, 194 'inside_chromium_build%': 1,
186 195
187 # Set to 1 to enable fast builds. It disables debug info for fastest 196 # Set to 1 to enable fast builds. It disables debug info for fastest
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 'enable_message_center%': '<(enable_message_center)', 765 'enable_message_center%': '<(enable_message_center)',
757 'use_default_render_theme%': '<(use_default_render_theme)', 766 'use_default_render_theme%': '<(use_default_render_theme)',
758 'enable_settings_app%': '<(enable_settings_app)', 767 'enable_settings_app%': '<(enable_settings_app)',
759 'use_official_google_api_keys%': '<(use_official_google_api_keys)', 768 'use_official_google_api_keys%': '<(use_official_google_api_keys)',
760 'google_api_key%': '<(google_api_key)', 769 'google_api_key%': '<(google_api_key)',
761 'google_default_client_id%': '<(google_default_client_id)', 770 'google_default_client_id%': '<(google_default_client_id)',
762 'google_default_client_secret%': '<(google_default_client_secret)', 771 'google_default_client_secret%': '<(google_default_client_secret)',
763 'enable_managed_users%': '<(enable_managed_users)', 772 'enable_managed_users%': '<(enable_managed_users)',
764 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)', 773 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)',
765 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)', 774 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
775 'use_dbus%': '<(use_dbus)',
766 776
767 # Use system ffmpeg instead of bundled one. 777 # Use system ffmpeg instead of bundled one.
768 'use_system_ffmpeg%': 0, 778 'use_system_ffmpeg%': 0,
769 779
770 # Use system mesa instead of bundled one. 780 # Use system mesa instead of bundled one.
771 'use_system_mesa%': 0, 781 'use_system_mesa%': 0,
772 782
773 # Use system nspr instead of the bundled one. 783 # Use system nspr instead of the bundled one.
774 'use_system_nspr%': 0, 784 'use_system_nspr%': 0,
775 785
(...skipping 3349 matching lines...) Expand 10 before | Expand all | Expand 10 after
4125 # settings in target dicts. SYMROOT is a special case, because many other 4135 # settings in target dicts. SYMROOT is a special case, because many other
4126 # Xcode variables depend on it, including variables such as 4136 # Xcode variables depend on it, including variables such as
4127 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4137 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4128 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4138 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4129 # files to appear (when present) in the UI as actual files and not red 4139 # files to appear (when present) in the UI as actual files and not red
4130 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4140 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4131 # and therefore SYMROOT, needs to be set at the project level. 4141 # and therefore SYMROOT, needs to be set at the project level.
4132 'SYMROOT': '<(DEPTH)/xcodebuild', 4142 'SYMROOT': '<(DEPTH)/xcodebuild',
4133 }, 4143 },
4134 } 4144 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698