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 13 matching lines...) Expand all Loading... |
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_out_of_band_pairing_data.h', | 33 'bluetooth/bluetooth_out_of_band_pairing_data.h', |
| 34 'bluetooth/bluetooth_polling_thread_win.cc', |
| 35 'bluetooth/bluetooth_polling_thread_win.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', |
| 43 'bluetooth/bluetooth_task_manager_win.cc', |
| 44 'bluetooth/bluetooth_task_manager_win.h', |
41 'bluetooth/bluetooth_utils.cc', | 45 'bluetooth/bluetooth_utils.cc', |
42 'bluetooth/bluetooth_utils.h', | 46 'bluetooth/bluetooth_utils.h', |
43 ], | 47 ], |
44 'conditions': [ | 48 'conditions': [ |
45 ['chromeos==1', { | 49 ['chromeos==1', { |
46 'dependencies': [ | 50 'dependencies': [ |
47 '../build/linux/system.gyp:dbus', | 51 '../build/linux/system.gyp:dbus', |
48 '../chromeos/chromeos.gyp:chromeos', | 52 '../chromeos/chromeos.gyp:chromeos', |
49 '../dbus/dbus.gyp:dbus', | 53 '../dbus/dbus.gyp:dbus', |
50 ] | 54 ] |
51 }], | 55 }], |
52 ['OS=="win"', { | 56 ['OS=="win"', { |
53 'all_dependent_settings': { | 57 'all_dependent_settings': { |
54 'msvs_settings': { | 58 'msvs_settings': { |
55 'VCLinkerTool': { | 59 'VCLinkerTool': { |
56 'DelayLoadDLLs': [ | 60 'DelayLoadDLLs': [ |
57 # Despite MSDN stating that Bthprops.dll contains the | 61 # Despite MSDN stating that Bthprops.dll contains the |
58 # symbols declared by bthprops.lib, they actually reside here: | 62 # symbols declared by bthprops.lib, they actually reside here: |
59 'Bthprops.cpl', | 63 'Bthprops.cpl', |
60 ], | 64 ], |
61 }, | 65 }, |
62 }, | 66 }, |
63 }, | 67 }, |
| 68 'dependencies': [ |
| 69 '../content/content.gyp:content_browser', |
| 70 ] |
64 }], | 71 }], |
65 ], | 72 ], |
66 }, | 73 }, |
67 { | 74 { |
68 'target_name': 'device_bluetooth_mocks', | 75 'target_name': 'device_bluetooth_mocks', |
69 'type': 'static_library', | 76 'type': 'static_library', |
70 'dependencies': [ | 77 'dependencies': [ |
71 'device_bluetooth', | 78 'device_bluetooth', |
72 '../testing/gmock.gyp:gmock', | 79 '../testing/gmock.gyp:gmock', |
73 ], | 80 ], |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'dependencies': [ | 152 'dependencies': [ |
146 '../build/linux/system.gyp:dbus', | 153 '../build/linux/system.gyp:dbus', |
147 '../chromeos/chromeos.gyp:chromeos_test_support', | 154 '../chromeos/chromeos.gyp:chromeos_test_support', |
148 '../dbus/dbus.gyp:dbus', | 155 '../dbus/dbus.gyp:dbus', |
149 ] | 156 ] |
150 }], | 157 }], |
151 ], | 158 ], |
152 }, | 159 }, |
153 ], | 160 ], |
154 } | 161 } |
OLD | NEW |