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 12 matching lines...) Expand all Loading... |
23 'bluetooth/bluetooth_adapter_factory.cc', | 23 'bluetooth/bluetooth_adapter_factory.cc', |
24 'bluetooth/bluetooth_adapter_factory.h', | 24 'bluetooth/bluetooth_adapter_factory.h', |
25 'bluetooth/bluetooth_adapter_win.cc', | 25 'bluetooth/bluetooth_adapter_win.cc', |
26 'bluetooth/bluetooth_adapter_win.h', | 26 'bluetooth/bluetooth_adapter_win.h', |
27 'bluetooth/bluetooth_device.cc', | 27 'bluetooth/bluetooth_device.cc', |
28 'bluetooth/bluetooth_device.h', | 28 'bluetooth/bluetooth_device.h', |
29 'bluetooth/bluetooth_device_chromeos.cc', | 29 'bluetooth/bluetooth_device_chromeos.cc', |
30 'bluetooth/bluetooth_device_chromeos.h', | 30 'bluetooth/bluetooth_device_chromeos.h', |
31 'bluetooth/bluetooth_device_win.cc', | 31 'bluetooth/bluetooth_device_win.cc', |
32 'bluetooth/bluetooth_device_win.h', | 32 'bluetooth/bluetooth_device_win.h', |
| 33 'bluetooth/bluetooth_manager_win.cc', |
| 34 'bluetooth/bluetooth_manager_win.h', |
33 'bluetooth/bluetooth_out_of_band_pairing_data.h', | 35 'bluetooth/bluetooth_out_of_band_pairing_data.h', |
34 'bluetooth/bluetooth_service_record.cc', | 36 'bluetooth/bluetooth_service_record.cc', |
35 'bluetooth/bluetooth_service_record.h', | 37 'bluetooth/bluetooth_service_record.h', |
36 'bluetooth/bluetooth_socket.h', | 38 'bluetooth/bluetooth_socket.h', |
37 'bluetooth/bluetooth_socket_chromeos.cc', | 39 'bluetooth/bluetooth_socket_chromeos.cc', |
38 'bluetooth/bluetooth_socket_chromeos.h', | 40 'bluetooth/bluetooth_socket_chromeos.h', |
39 'bluetooth/bluetooth_socket_win.cc', | 41 'bluetooth/bluetooth_socket_win.cc', |
40 'bluetooth/bluetooth_socket_win.h', | 42 'bluetooth/bluetooth_socket_win.h', |
41 'bluetooth/bluetooth_utils.cc', | 43 'bluetooth/bluetooth_utils.cc', |
42 'bluetooth/bluetooth_utils.h', | 44 'bluetooth/bluetooth_utils.h', |
43 ], | 45 ], |
44 'conditions': [ | 46 'conditions': [ |
45 ['chromeos==1', { | 47 ['chromeos==1', { |
46 'dependencies': [ | 48 'dependencies': [ |
47 '../build/linux/system.gyp:dbus', | 49 '../build/linux/system.gyp:dbus', |
48 '../chromeos/chromeos.gyp:chromeos', | 50 '../chromeos/chromeos.gyp:chromeos', |
49 '../dbus/dbus.gyp:dbus', | 51 '../dbus/dbus.gyp:dbus', |
50 ] | 52 ] |
51 }], | 53 }], |
| 54 ['OS=="win"', { |
| 55 'dependencies': [ |
| 56 '../content/content.gyp:content_browser', |
| 57 ] |
| 58 }], |
52 ], | 59 ], |
53 }, | 60 }, |
54 { | 61 { |
55 'target_name': 'device_bluetooth_mocks', | 62 'target_name': 'device_bluetooth_mocks', |
56 'type': 'static_library', | 63 'type': 'static_library', |
57 'dependencies': [ | 64 'dependencies': [ |
58 'device_bluetooth', | 65 'device_bluetooth', |
59 '../testing/gmock.gyp:gmock', | 66 '../testing/gmock.gyp:gmock', |
60 ], | 67 ], |
61 'sources': [ | 68 'sources': [ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 'dependencies': [ | 103 'dependencies': [ |
97 '../build/linux/system.gyp:dbus', | 104 '../build/linux/system.gyp:dbus', |
98 '../chromeos/chromeos.gyp:chromeos_test_support', | 105 '../chromeos/chromeos.gyp:chromeos_test_support', |
99 '../dbus/dbus.gyp:dbus', | 106 '../dbus/dbus.gyp:dbus', |
100 ] | 107 ] |
101 }], | 108 }], |
102 ], | 109 ], |
103 }, | 110 }, |
104 ], | 111 ], |
105 } | 112 } |
OLD | NEW |