OLD | NEW |
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", |
(...skipping 10 matching lines...) Expand all Loading... |
21 "BluetoothRemoteGATTDescriptor.cpp", | 21 "BluetoothRemoteGATTDescriptor.cpp", |
22 "BluetoothRemoteGATTDescriptor.h", | 22 "BluetoothRemoteGATTDescriptor.h", |
23 "BluetoothRemoteGATTServer.cpp", | 23 "BluetoothRemoteGATTServer.cpp", |
24 "BluetoothRemoteGATTServer.h", | 24 "BluetoothRemoteGATTServer.h", |
25 "BluetoothRemoteGATTService.cpp", | 25 "BluetoothRemoteGATTService.cpp", |
26 "BluetoothRemoteGATTService.h", | 26 "BluetoothRemoteGATTService.h", |
27 "BluetoothRemoteGATTUtils.cpp", | 27 "BluetoothRemoteGATTUtils.cpp", |
28 "BluetoothRemoteGATTUtils.h", | 28 "BluetoothRemoteGATTUtils.h", |
29 "BluetoothUUID.cpp", | 29 "BluetoothUUID.cpp", |
30 "BluetoothUUID.h", | 30 "BluetoothUUID.h", |
| 31 "BluetoothFakeBluetooth.cpp", |
| 32 "BluetoothFakeBluetooth.h", |
| 33 "FakeBluetooth.cpp", |
| 34 "FakeBluetooth.h", |
| 35 "FakeBluetoothChooser.cpp", |
| 36 "FakeBluetoothChooser.h", |
| 37 "FakeBluetoothChooserEvent.cpp", |
| 38 "FakeBluetoothChooserEvent.h", |
| 39 "FakeLECentralManager.cpp", |
| 40 "FakeLECentralManager.h", |
| 41 "FakeLEPeripheral.cpp", |
| 42 "FakeLEPeripheral.h", |
| 43 "FakeRemoteGATTService.cpp", |
| 44 "FakeRemoteGATTService.h", |
| 45 "FakeRemoteGATTCharacteristic.cpp", |
| 46 "FakeRemoteGATTCharacteristic.h", |
| 47 "FakeRemoteGATTDescriptor.cpp", |
| 48 "FakeRemoteGATTDescriptor.h", |
31 "NavigatorBluetooth.cpp", | 49 "NavigatorBluetooth.cpp", |
32 "NavigatorBluetooth.h", | 50 "NavigatorBluetooth.h", |
33 ] | 51 ] |
34 | |
35 deps = [ | 52 deps = [ |
36 "//device/bluetooth/public/interfaces:interfaces_blink", | 53 "//device/bluetooth/public/interfaces:interfaces_blink", |
37 ] | 54 ] |
38 } | 55 } |
OLD | NEW |