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

Side by Side Diff: device/bluetooth/bluetooth.gyp

Issue 395633003: Enumerate Bluetooth LE services and expose them to chrome.bluetooth API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix x64 build. Created 6 years, 5 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
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_device_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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
56 'bluetooth_gatt_notify_session.cc', 56 'bluetooth_gatt_notify_session.cc',
57 'bluetooth_gatt_notify_session.h', 57 'bluetooth_gatt_notify_session.h',
58 'bluetooth_gatt_notify_session_chromeos.cc', 58 'bluetooth_gatt_notify_session_chromeos.cc',
59 'bluetooth_gatt_notify_session_chromeos.h', 59 'bluetooth_gatt_notify_session_chromeos.h',
60 'bluetooth_gatt_service.cc', 60 'bluetooth_gatt_service.cc',
61 'bluetooth_gatt_service.h', 61 'bluetooth_gatt_service.h',
62 'bluetooth_init_win.cc', 62 'bluetooth_init_win.cc',
63 'bluetooth_init_win.h', 63 'bluetooth_init_win.h',
64 'bluetooth_l2cap_channel_mac.mm', 64 'bluetooth_l2cap_channel_mac.mm',
65 'bluetooth_l2cap_channel_mac.h', 65 'bluetooth_l2cap_channel_mac.h',
66 'bluetooth_low_energy_defs_win.cc',
67 'bluetooth_low_energy_defs_win.h',
66 'bluetooth_low_energy_win.cc', 68 'bluetooth_low_energy_win.cc',
67 'bluetooth_low_energy_win.h', 69 'bluetooth_low_energy_win.h',
68 'bluetooth_pairing_chromeos.cc', 70 'bluetooth_pairing_chromeos.cc',
69 'bluetooth_pairing_chromeos.h', 71 'bluetooth_pairing_chromeos.h',
70 'bluetooth_remote_gatt_characteristic_chromeos.cc', 72 'bluetooth_remote_gatt_characteristic_chromeos.cc',
71 'bluetooth_remote_gatt_characteristic_chromeos.h', 73 'bluetooth_remote_gatt_characteristic_chromeos.h',
72 'bluetooth_remote_gatt_descriptor_chromeos.cc', 74 'bluetooth_remote_gatt_descriptor_chromeos.cc',
73 'bluetooth_remote_gatt_descriptor_chromeos.h', 75 'bluetooth_remote_gatt_descriptor_chromeos.h',
74 'bluetooth_remote_gatt_service_chromeos.cc', 76 'bluetooth_remote_gatt_service_chromeos.cc',
75 'bluetooth_remote_gatt_service_chromeos.h', 77 'bluetooth_remote_gatt_service_chromeos.h',
(...skipping 24 matching lines...) Expand all
100 '../../build/linux/system.gyp:dbus', 102 '../../build/linux/system.gyp:dbus',
101 '../../chromeos/chromeos.gyp:chromeos', 103 '../../chromeos/chromeos.gyp:chromeos',
102 '../../dbus/dbus.gyp:dbus', 104 '../../dbus/dbus.gyp:dbus',
103 ] 105 ]
104 }], 106 }],
105 ['OS=="win"', { 107 ['OS=="win"', {
106 'all_dependent_settings': { 108 'all_dependent_settings': {
107 'msvs_settings': { 109 'msvs_settings': {
108 'VCLinkerTool': { 110 'VCLinkerTool': {
109 'DelayLoadDLLs': [ 111 'DelayLoadDLLs': [
112 'BluetoothApis.dll',
110 # Despite MSDN stating that Bthprops.dll contains the 113 # Despite MSDN stating that Bthprops.dll contains the
111 # symbols declared by bthprops.lib, they actually reside here: 114 # symbols declared by bthprops.lib, they actually reside here:
112 'Bthprops.cpl', 115 'Bthprops.cpl',
113 'setupapi.dll', 116 'setupapi.dll',
114 ], 117 ],
115 }, 118 },
116 }, 119 },
117 }, 120 },
118 }], 121 }],
119 ['OS=="mac"', { 122 ['OS=="mac"', {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'test/mock_bluetooth_gatt_notify_session.cc', 154 'test/mock_bluetooth_gatt_notify_session.cc',
152 'test/mock_bluetooth_gatt_notify_session.h', 155 'test/mock_bluetooth_gatt_notify_session.h',
153 'test/mock_bluetooth_gatt_service.cc', 156 'test/mock_bluetooth_gatt_service.cc',
154 'test/mock_bluetooth_gatt_service.h', 157 'test/mock_bluetooth_gatt_service.h',
155 'test/mock_bluetooth_socket.cc', 158 'test/mock_bluetooth_socket.cc',
156 'test/mock_bluetooth_socket.h', 159 'test/mock_bluetooth_socket.h',
157 ], 160 ],
158 }, 161 },
159 ], 162 ],
160 } 163 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_device_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698