Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: device/device.gyp

Issue 12929003: Implemented BluetoothAdapterMac::AddDevices(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted BluetoothDevice interface. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'usb/usb_ids_unittest.cc', 171 'usb/usb_ids_unittest.cc',
172 ], 172 ],
173 'conditions': [ 173 'conditions': [
174 ['chromeos==1', { 174 ['chromeos==1', {
175 'dependencies': [ 175 'dependencies': [
176 '../build/linux/system.gyp:dbus', 176 '../build/linux/system.gyp:dbus',
177 '../chromeos/chromeos.gyp:chromeos_test_support', 177 '../chromeos/chromeos.gyp:chromeos_test_support',
178 '../dbus/dbus.gyp:dbus', 178 '../dbus/dbus.gyp:dbus',
179 ] 179 ]
180 }], 180 }],
181 ['OS=="mac"', {
182 'link_settings': {
183 'libraries': [
184 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
185 ],
186 },
187 }],
181 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 188 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
182 'conditions': [ 189 'conditions': [
183 ['linux_use_tcmalloc == 1', { 190 ['linux_use_tcmalloc == 1', {
184 'dependencies': [ 191 'dependencies': [
185 '../base/allocator/allocator.gyp:allocator', 192 '../base/allocator/allocator.gyp:allocator',
186 ], 193 ],
187 }], 194 }],
188 ], 195 ],
189 }], 196 }],
190 ], 197 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'media_transfer_protocol/media_transfer_protocol_daemon_client.cc', 240 'media_transfer_protocol/media_transfer_protocol_daemon_client.cc',
234 'media_transfer_protocol/media_transfer_protocol_daemon_client.h', 241 'media_transfer_protocol/media_transfer_protocol_daemon_client.h',
235 'media_transfer_protocol/media_transfer_protocol_manager.cc', 242 'media_transfer_protocol/media_transfer_protocol_manager.cc',
236 'media_transfer_protocol/media_transfer_protocol_manager.h', 243 'media_transfer_protocol/media_transfer_protocol_manager.h',
237 ], 244 ],
238 }, 245 },
239 ], 246 ],
240 }], 247 }],
241 ], 248 ],
242 } 249 }
OLDNEW
« device/bluetooth/bluetooth_device_mac.mm ('K') | « device/bluetooth/test/mock_bluetooth_device.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698