diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 17:05:36 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 17:05:36 +0000 |
commit | 500456fa14e6e1aac51baaf636d86a29a5dde6ec (patch) | |
tree | 905c1854164dbcaf1f00ee295f47b5977d0f0ce4 /dbus/dbus.gyp | |
parent | ba0e06914ae47acc6fcfd84a6ac8447b14c7e1e4 (diff) | |
download | chromium_src-500456fa14e6e1aac51baaf636d86a29a5dde6ec.zip chromium_src-500456fa14e6e1aac51baaf636d86a29a5dde6ec.tar.gz chromium_src-500456fa14e6e1aac51baaf636d86a29a5dde6ec.tar.bz2 |
dbus: Add test_server.cc used for manual testing.
The server was used for investigating crbug.com/126217.
end_to_end_async_unittest.cc runs both the server and the client
in the same process. It's useful to have a server program
that runs as a separate process.
BUG=none
TEST=out/Debug/dbus_test_server; (from another terminal) dbus-send --print-reply --type=method_call --dest=org.chromium.TestService /org/chromium/TestObject org.chromium.TestInterface.SlowEcho string:hello
Review URL: https://chromiumcodereview.appspot.com/10540032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141023 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/dbus.gyp')
-rw-r--r-- | dbus/dbus.gyp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp index c2244cd..a902b07 100644 --- a/dbus/dbus.gyp +++ b/dbus/dbus.gyp @@ -101,5 +101,23 @@ '..', ], }, + { + 'target_name': 'dbus_test_server', + 'type': 'executable', + 'dependencies': [ + '../base/base.gyp:test_support_base', + '../base/base.gyp:base', + '../build/linux/system.gyp:dbus', + 'dbus', + ], + 'sources': [ + 'test_server.cc', + 'test_service.cc', + 'test_service.h', + ], + 'include_dirs': [ + '..', + ], + }, ], } |