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

Side by Side Diff: third_party/WebKit/Source/modules/bluetooth/BUILD.gn

Issue 2466223002: Implement WebBluetooth getDescriptor[s] (Closed)
Patch Set: Implement WebBluetooth getDescriptor[s] Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//third_party/WebKit/Source/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("bluetooth") { 7 blink_modules_sources("bluetooth") {
8 sources = [ 8 sources = [
9 "Bluetooth.cpp", 9 "Bluetooth.cpp",
10 "Bluetooth.h", 10 "Bluetooth.h",
11 "BluetoothAttributeInstanceMap.cpp", 11 "BluetoothAttributeInstanceMap.cpp",
12 "BluetoothAttributeInstanceMap.h", 12 "BluetoothAttributeInstanceMap.h",
13 "BluetoothCharacteristicProperties.cpp", 13 "BluetoothCharacteristicProperties.cpp",
14 "BluetoothCharacteristicProperties.h", 14 "BluetoothCharacteristicProperties.h",
15 "BluetoothDevice.cpp", 15 "BluetoothDevice.cpp",
16 "BluetoothDevice.h", 16 "BluetoothDevice.h",
17 "BluetoothError.cpp", 17 "BluetoothError.cpp",
18 "BluetoothError.h", 18 "BluetoothError.h",
19 "BluetoothRemoteGATTCharacteristic.cpp", 19 "BluetoothRemoteGATTCharacteristic.cpp",
20 "BluetoothRemoteGATTCharacteristic.h", 20 "BluetoothRemoteGATTCharacteristic.h",
21 "BluetoothRemoteGATTDescriptor.cpp",
22 "BluetoothRemoteGATTDescriptor.h",
21 "BluetoothRemoteGATTServer.cpp", 23 "BluetoothRemoteGATTServer.cpp",
22 "BluetoothRemoteGATTServer.h", 24 "BluetoothRemoteGATTServer.h",
23 "BluetoothRemoteGATTService.cpp", 25 "BluetoothRemoteGATTService.cpp",
24 "BluetoothRemoteGATTService.h", 26 "BluetoothRemoteGATTService.h",
25 "BluetoothUUID.cpp", 27 "BluetoothUUID.cpp",
26 "BluetoothUUID.h", 28 "BluetoothUUID.h",
27 "NavigatorBluetooth.cpp", 29 "NavigatorBluetooth.cpp",
28 "NavigatorBluetooth.h", 30 "NavigatorBluetooth.h",
29 ] 31 ]
30 32
31 deps = [ 33 deps = [
32 "//device/bluetooth/public/interfaces:interfaces_blink", 34 "//device/bluetooth/public/interfaces:interfaces_blink",
33 ] 35 ]
34 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698