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 { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'target_name': 'dbus_unittests', | 30 'target_name': 'dbus_unittests', |
31 'type': 'executable', | 31 'type': 'executable', |
32 'dependencies': [ | 32 'dependencies': [ |
33 'dbus', | 33 'dbus', |
34 '../base/base.gyp:test_support_base', | 34 '../base/base.gyp:test_support_base', |
35 '../testing/gtest.gyp:gtest', | 35 '../testing/gtest.gyp:gtest', |
36 '../build/linux/system.gyp:dbus', | 36 '../build/linux/system.gyp:dbus', |
37 ], | 37 ], |
38 'sources': [ | 38 'sources': [ |
39 '../base/test/run_all_unittests.cc', | 39 '../base/test/run_all_unittests.cc', |
| 40 'bus_unittest.cc', |
40 'message_unittest.cc', | 41 'message_unittest.cc', |
41 'end_to_end_async_unittest.cc', | 42 'end_to_end_async_unittest.cc', |
42 'end_to_end_sync_unittest.cc', | 43 'end_to_end_sync_unittest.cc', |
43 'test_service.cc', | 44 'test_service.cc', |
44 'test_service.h', | 45 'test_service.h', |
45 ], | 46 ], |
46 'include_dirs': [ | 47 'include_dirs': [ |
47 '..', | 48 '..', |
48 ], | 49 ], |
49 }, | 50 }, |
50 ], | 51 ], |
51 } | 52 } |
OLD | NEW |