| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'mock_object_proxy.h', | 79 'mock_object_proxy.h', |
| 80 ], | 80 ], |
| 81 'include_dirs': [ | 81 'include_dirs': [ |
| 82 '..', | 82 '..', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 { | 85 { |
| 86 'target_name': 'dbus_unittests', | 86 'target_name': 'dbus_unittests', |
| 87 'type': 'executable', | 87 'type': 'executable', |
| 88 'dependencies': [ | 88 'dependencies': [ |
| 89 '../base/base.gyp:run_all_unittests', | |
| 90 '../base/base.gyp:test_support_base', | 89 '../base/base.gyp:test_support_base', |
| 91 '../build/linux/system.gyp:dbus', | 90 '../build/linux/system.gyp:dbus', |
| 92 '../testing/gmock.gyp:gmock', | 91 '../testing/gmock.gyp:gmock', |
| 93 '../testing/gtest.gyp:gtest', | 92 '../testing/gtest.gyp:gtest', |
| 94 'dbus', | 93 'dbus', |
| 95 'dbus_test_proto', | 94 'dbus_test_proto', |
| 96 'dbus_test_support', | 95 'dbus_test_support', |
| 97 ], | 96 ], |
| 98 'sources': [ | 97 'sources': [ |
| 99 'bus_unittest.cc', | 98 'bus_unittest.cc', |
| 100 'dbus_statistics_unittest.cc', | 99 'dbus_statistics_unittest.cc', |
| 101 'end_to_end_async_unittest.cc', | 100 'end_to_end_async_unittest.cc', |
| 102 'end_to_end_sync_unittest.cc', | 101 'end_to_end_sync_unittest.cc', |
| 103 'message_unittest.cc', | 102 'message_unittest.cc', |
| 104 'mock_unittest.cc', | 103 'mock_unittest.cc', |
| 105 'object_manager_unittest.cc', | 104 'object_manager_unittest.cc', |
| 106 'object_proxy_unittest.cc', | 105 'object_proxy_unittest.cc', |
| 107 'property_unittest.cc', | 106 'property_unittest.cc', |
| 107 'run_all_unittests.cc', |
| 108 'signal_sender_verification_unittest.cc', | 108 'signal_sender_verification_unittest.cc', |
| 109 'string_util_unittest.cc', | 109 'string_util_unittest.cc', |
| 110 'test_service.cc', | 110 'test_service.cc', |
| 111 'test_service.h', | 111 'test_service.h', |
| 112 'values_util_unittest.cc', | 112 'values_util_unittest.cc', |
| 113 ], | 113 ], |
| 114 'include_dirs': [ | 114 'include_dirs': [ |
| 115 '..', | 115 '..', |
| 116 ], | 116 ], |
| 117 }, | 117 }, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 128 'test_server.cc', | 128 'test_server.cc', |
| 129 'test_service.cc', | 129 'test_service.cc', |
| 130 'test_service.h', | 130 'test_service.h', |
| 131 ], | 131 ], |
| 132 'include_dirs': [ | 132 'include_dirs': [ |
| 133 '..', | 133 '..', |
| 134 ], | 134 ], |
| 135 }, | 135 }, |
| 136 ], | 136 ], |
| 137 } | 137 } |
| OLD | NEW |