diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-30 19:13:31 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-30 19:13:31 +0000 |
commit | a9e9149c236b28426c061dc964c3be86571c342f (patch) | |
tree | 985d1772b1d0d6b423d274497ac43b33391ab24a /dbus/dbus.gyp | |
parent | 08bb1e7204b84f029d78db6871497bac5597e3a6 (diff) | |
download | chromium_src-a9e9149c236b28426c061dc964c3be86571c342f.zip chromium_src-a9e9149c236b28426c061dc964c3be86571c342f.tar.gz chromium_src-a9e9149c236b28426c061dc964c3be86571c342f.tar.bz2 |
Implement classes used for manipulating D-Bus messages.
Message/MethodCall/Response classes wrap around DBusMessage.
MessageReader and Message Writer provide API to read and write
D-Bus messages in a type safe fashion.
BUG=90036
TEST=The code is not yet used in Chrome. Run unit tests.
Review URL: http://codereview.chromium.org/7492029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94845 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/dbus.gyp')
-rw-r--r-- | dbus/dbus.gyp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp index f2f842b..c1fd9fe 100644 --- a/dbus/dbus.gyp +++ b/dbus/dbus.gyp @@ -15,6 +15,25 @@ '../build/linux/system.gyp:dbus', ], 'sources': [ + 'message.cc', + 'message.h', + ], + }, + { + 'target_name': 'dbus_unittests', + 'type': 'executable', + 'dependencies': [ + 'dbus', + '../base/base.gyp:test_support_base', + '../testing/gtest.gyp:gtest', + '../build/linux/system.gyp:dbus', + ], + 'sources': [ + '../base/test/run_all_unittests.cc', + 'message_unittest.cc', + ], + 'include_dirs': [ + '..', ], }, ], |