OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 'mock_object_proxy.h', | 65 'mock_object_proxy.h', |
66 ], | 66 ], |
67 'include_dirs': [ | 67 'include_dirs': [ |
68 '..', | 68 '..', |
69 ], | 69 ], |
70 }, | 70 }, |
71 { | 71 { |
72 'target_name': 'dbus_unittests', | 72 'target_name': 'dbus_unittests', |
73 'type': 'executable', | 73 'type': 'executable', |
74 'dependencies': [ | 74 'dependencies': [ |
| 75 '../base/base.gyp:run_all_unittests', |
75 '../base/base.gyp:test_support_base', | 76 '../base/base.gyp:test_support_base', |
76 '../build/linux/system.gyp:dbus', | 77 '../build/linux/system.gyp:dbus', |
77 '../testing/gmock.gyp:gmock', | 78 '../testing/gmock.gyp:gmock', |
78 '../testing/gtest.gyp:gtest', | 79 '../testing/gtest.gyp:gtest', |
79 'dbus', | 80 'dbus', |
80 'dbus_test_proto', | 81 'dbus_test_proto', |
81 'dbus_test_support', | 82 'dbus_test_support', |
82 ], | 83 ], |
83 'sources': [ | 84 'sources': [ |
84 '../base/test/run_all_unittests.cc', | |
85 'bus_unittest.cc', | 85 'bus_unittest.cc', |
86 'end_to_end_async_unittest.cc', | 86 'end_to_end_async_unittest.cc', |
87 'end_to_end_sync_unittest.cc', | 87 'end_to_end_sync_unittest.cc', |
88 'message_unittest.cc', | 88 'message_unittest.cc', |
89 'mock_unittest.cc', | 89 'mock_unittest.cc', |
90 'property_unittest.cc', | 90 'property_unittest.cc', |
91 'test_service.cc', | 91 'test_service.cc', |
92 'test_service.h', | 92 'test_service.h', |
93 'values_util_unittest.cc', | 93 'values_util_unittest.cc', |
94 ], | 94 ], |
95 'include_dirs': [ | 95 'include_dirs': [ |
96 '..', | 96 '..', |
97 ], | 97 ], |
98 }, | 98 }, |
99 ], | 99 ], |
100 } | 100 } |
OLD | NEW |