summaryrefslogtreecommitdiffstats
path: root/dbus/dbus.gyp
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-17 20:58:12 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-17 20:58:12 +0000
commita510761104333ec7da3943399f059ff693839856 (patch)
tree2a9f81a60bccf4db3367ad1b8f71e9ea130efb7d /dbus/dbus.gyp
parent07f93af15169ee054552a376ac4953abd1346cb2 (diff)
downloadchromium_src-a510761104333ec7da3943399f059ff693839856.zip
chromium_src-a510761104333ec7da3943399f059ff693839856.tar.gz
chromium_src-a510761104333ec7da3943399f059ff693839856.tar.bz2
Implement Bus and ObjectProxy classes for our D-Bus library.
ObjectProxy is used to access remote objects. ExportedObject is used to export objects to other D-Bus BUG=90036 TEST=run unit tests. The code is not yet used in Chrome. Review URL: http://codereview.chromium.org/7491029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97204 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/dbus.gyp')
-rw-r--r--dbus/dbus.gyp11
1 files changed, 11 insertions, 0 deletions
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp
index c1fd9fe..a310931 100644
--- a/dbus/dbus.gyp
+++ b/dbus/dbus.gyp
@@ -15,8 +15,15 @@
'../build/linux/system.gyp:dbus',
],
'sources': [
+ 'bus.cc',
+ 'bus.h',
+ 'exported_object.h',
+ 'exported_object.cc',
'message.cc',
'message.h',
+ 'object_proxy.cc',
+ 'object_proxy.h',
+ 'scoped_dbus_error.h',
],
},
{
@@ -31,6 +38,10 @@
'sources': [
'../base/test/run_all_unittests.cc',
'message_unittest.cc',
+ 'end_to_end_async_unittest.cc',
+ 'end_to_end_sync_unittest.cc',
+ 'test_service.cc',
+ 'test_service.h',
],
'include_dirs': [
'..',