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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'type': 'static_library', | 56 'type': 'static_library', |
57 'dependencies': [ | 57 'dependencies': [ |
58 'device_bluetooth', | 58 'device_bluetooth', |
59 '../testing/gmock.gyp:gmock', | 59 '../testing/gmock.gyp:gmock', |
60 ], | 60 ], |
61 'sources': [ | 61 'sources': [ |
62 'bluetooth/test/mock_bluetooth_adapter.cc', | 62 'bluetooth/test/mock_bluetooth_adapter.cc', |
63 'bluetooth/test/mock_bluetooth_adapter.h', | 63 'bluetooth/test/mock_bluetooth_adapter.h', |
64 'bluetooth/test/mock_bluetooth_device.cc', | 64 'bluetooth/test/mock_bluetooth_device.cc', |
65 'bluetooth/test/mock_bluetooth_device.h', | 65 'bluetooth/test/mock_bluetooth_device.h', |
| 66 'bluetooth/test/mock_bluetooth_socket.cc', |
| 67 'bluetooth/test/mock_bluetooth_socket.h', |
66 ], | 68 ], |
67 'include_dirs': [ | 69 'include_dirs': [ |
68 '..', | 70 '..', |
69 ], | 71 ], |
70 }, | 72 }, |
71 { | 73 { |
72 'target_name': 'device_unittests', | 74 'target_name': 'device_unittests', |
73 'type': '<(gtest_target_type)', | 75 'type': '<(gtest_target_type)', |
74 'dependencies': [ | 76 'dependencies': [ |
75 'device_bluetooth', | 77 'device_bluetooth', |
(...skipping 17 matching lines...) Expand all Loading... |
93 'dependencies': [ | 95 'dependencies': [ |
94 '../build/linux/system.gyp:dbus', | 96 '../build/linux/system.gyp:dbus', |
95 '../chromeos/chromeos.gyp:chromeos_test_support', | 97 '../chromeos/chromeos.gyp:chromeos_test_support', |
96 '../dbus/dbus.gyp:dbus', | 98 '../dbus/dbus.gyp:dbus', |
97 ] | 99 ] |
98 }], | 100 }], |
99 ], | 101 ], |
100 }, | 102 }, |
101 ], | 103 ], |
102 } | 104 } |
OLD | NEW |