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

Unified Diff: content/content_browser.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, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/power_save_blocker_empty.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_browser.gypi
diff --git a/content/content_browser.gypi b/content/content_browser.gypi
index 4032dda06d28d339d6f41fc0efb143be572efc22..66aeb14bdca42c36f30b248db0a569625f87041f 100644
--- a/content/content_browser.gypi
+++ b/content/content_browser.gypi
@@ -588,6 +588,7 @@
'browser/plugin_service_impl.h',
'browser/power_save_blocker_android.cc',
'browser/power_save_blocker_chromeos.cc',
+ 'browser/power_save_blocker_empty.cc',
'browser/power_save_blocker_impl.cc',
'browser/power_save_blocker_impl.h',
'browser/power_save_blocker_linux.cc',
@@ -1080,6 +1081,23 @@
}],
],
}],
+ ['OS=="linux" and use_dbus==0', {
+ 'sources!': [
+ 'browser/power_save_blocker_linux.cc',
+ 'browser/geolocation/wifi_data_provider_linux.cc',
+ ],
+ 'dependencies!': [
+ '../build/linux/system.gyp:dbus',
+ '../dbus/dbus.gyp:dbus',
+ ],
+ }],
+ ['OS=="win" or OS=="mac" or (OS=="linux" and use_dbus==1)', {
+ 'sources!': [
+ 'browser/geolocation/empty_device_data_provider.cc',
+ 'browser/geolocation/empty_device_data_provider.h',
+ 'browser/power_save_blocker_empty.cc',
+ ],
+ }],
['OS=="linux" and use_aura==1', {
'dependencies': [
'../build/linux/system.gyp:dbus',
« no previous file with comments | « content/browser/power_save_blocker_empty.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698