Index: build/linux/system.gyp |
diff --git a/build/linux/system.gyp b/build/linux/system.gyp |
index 8d82eabe163988a31810cc2a5f3c22cd56ae1589..c8e00f71ea1e619ebf8ad32ab3690c9429786e43 100644 |
--- a/build/linux/system.gyp |
+++ b/build/linux/system.gyp |
@@ -412,6 +412,24 @@ |
], |
}, |
{ |
+ 'target_name': 'dbus', |
+ 'type': 'settings', |
+ 'direct_dependent_settings': { |
+ 'cflags': [ |
+ '<!@(<(pkg-config) --cflags dbus-1)', |
+ ], |
+ }, |
+ 'link_settings': { |
+ 'ldflags': [ |
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-1)', |
+ ], |
+ 'libraries': [ |
+ '<!@(<(pkg-config) --libs-only-l dbus-1)', |
+ ], |
+ }, |
+ }, |
+ { |
+ # TODO(satorux): Remove this once dbus-glib clients are gone. |
'target_name': 'dbus-glib', |
'type': 'settings', |
'direct_dependent_settings': { |