blob: bb7ef35cb8c85452c5767104ee31947bc2c1fa84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- build/config/features.gni.orig 2017-04-19 19:06:28 UTC
+++ build/config/features.gni
@@ -60,13 +60,13 @@ declare_args() {
# libudev usage. This currently only affects the content layer.
use_udev = is_linux && !is_chromecast
- use_dbus = is_linux && !is_chromecast
+ use_dbus = (is_linux || is_bsd) && !is_chromecast
# Option controlling the use of GConf (the classic GNOME configuration
# system).
- use_gconf = is_linux && !is_chromeos && !is_chromecast
+ use_gconf = (is_linux || is_bsd) && !is_chromeos && !is_chromecast
- use_gio = is_linux && !is_chromeos && !is_chromecast
+ use_gio = (is_linux || is_bsd) && !is_chromeos && !is_chromecast
# Whether or not to use external popup menu.
use_external_popup_menu = is_android || is_mac
|