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

Unified Diff: dbus/dbus.gyp

Issue 7491029: Implement Bus and ObjectProxy classes for our D-Bus library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: work-in-progress Created 9 years, 5 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
« dbus/bus.cc ('K') | « dbus/bus.cc ('k') | dbus/dbus_test_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/dbus.gyp
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp
index c1fd9fedea960f23ed78f1ae09dd851a90b4c978..e13554bf8faba78921d97678aa5fd8af76ea2c78 100644
--- a/dbus/dbus.gyp
+++ b/dbus/dbus.gyp
@@ -17,6 +17,10 @@
'sources': [
'message.cc',
'message.h',
+ 'bus.cc',
+ 'bus.h',
+ 'object_proxy.cc',
+ 'object_proxy.h',
],
},
{
@@ -36,5 +40,21 @@
'..',
],
},
+ {
+ # Similar to dbus-send. Useful for manual testing.
+ 'target_name': 'dbus_test_client',
+ 'type': 'executable',
+ 'dependencies': [
+ 'dbus',
+ '../base/base.gyp:base',
+ '../build/linux/system.gyp:dbus',
+ ],
+ 'sources': [
+ 'dbus_test_client.cc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ },
],
}
« dbus/bus.cc ('K') | « dbus/bus.cc ('k') | dbus/dbus_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698