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

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

Issue 2771893002: Move Bluetooth.Web.FunctionCall.Count UMA from browser to WebKit (Closed)
Patch Set: move Bluetooth.Web.FunctionCall.Count UMA from browser to WebKit Created 3 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 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 "BluetoothMetrics.cpp",
20 "BluetoothMetrics.h",
19 "BluetoothRemoteGATTCharacteristic.cpp", 21 "BluetoothRemoteGATTCharacteristic.cpp",
20 "BluetoothRemoteGATTCharacteristic.h", 22 "BluetoothRemoteGATTCharacteristic.h",
21 "BluetoothRemoteGATTDescriptor.cpp", 23 "BluetoothRemoteGATTDescriptor.cpp",
22 "BluetoothRemoteGATTDescriptor.h", 24 "BluetoothRemoteGATTDescriptor.h",
23 "BluetoothRemoteGATTServer.cpp", 25 "BluetoothRemoteGATTServer.cpp",
24 "BluetoothRemoteGATTServer.h", 26 "BluetoothRemoteGATTServer.h",
25 "BluetoothRemoteGATTService.cpp", 27 "BluetoothRemoteGATTService.cpp",
26 "BluetoothRemoteGATTService.h", 28 "BluetoothRemoteGATTService.h",
27 "BluetoothRemoteGATTUtils.cpp", 29 "BluetoothRemoteGATTUtils.cpp",
28 "BluetoothRemoteGATTUtils.h", 30 "BluetoothRemoteGATTUtils.h",
29 "BluetoothUUID.cpp", 31 "BluetoothUUID.cpp",
30 "BluetoothUUID.h", 32 "BluetoothUUID.h",
31 "NavigatorBluetooth.cpp", 33 "NavigatorBluetooth.cpp",
32 "NavigatorBluetooth.h", 34 "NavigatorBluetooth.h",
33 ] 35 ]
34 36
35 deps = [ 37 deps = [
36 "//device/bluetooth/public/interfaces:interfaces_blink", 38 "//device/bluetooth/public/interfaces:interfaces_blink",
37 ] 39 ]
38 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698