OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'dbus', | 11 'target_name': 'dbus', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../build/linux/system.gyp:dbus', | 15 '../build/linux/system.gyp:dbus', |
16 ], | 16 ], |
17 'sources': [ | 17 'sources': [ |
| 18 'bus.cc', |
| 19 'bus.h', |
| 20 'exported_object.h', |
| 21 'exported_object.cc', |
18 'message.cc', | 22 'message.cc', |
19 'message.h', | 23 'message.h', |
| 24 'object_proxy.cc', |
| 25 'object_proxy.h', |
| 26 'scoped_dbus_error.h', |
20 ], | 27 ], |
21 }, | 28 }, |
22 { | 29 { |
23 'target_name': 'dbus_unittests', | 30 'target_name': 'dbus_unittests', |
24 'type': 'executable', | 31 'type': 'executable', |
25 'dependencies': [ | 32 'dependencies': [ |
26 'dbus', | 33 'dbus', |
27 '../base/base.gyp:test_support_base', | 34 '../base/base.gyp:test_support_base', |
28 '../testing/gtest.gyp:gtest', | 35 '../testing/gtest.gyp:gtest', |
29 '../build/linux/system.gyp:dbus', | 36 '../build/linux/system.gyp:dbus', |
30 ], | 37 ], |
31 'sources': [ | 38 'sources': [ |
32 '../base/test/run_all_unittests.cc', | 39 '../base/test/run_all_unittests.cc', |
33 'message_unittest.cc', | 40 'message_unittest.cc', |
| 41 'end_to_end_async_unittest.cc', |
| 42 'end_to_end_sync_unittest.cc', |
| 43 'test_service.cc', |
| 44 'test_service.h', |
34 ], | 45 ], |
35 'include_dirs': [ | 46 'include_dirs': [ |
36 '..', | 47 '..', |
37 ], | 48 ], |
38 }, | 49 }, |
39 ], | 50 ], |
40 } | 51 } |
OLD | NEW |