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

Side by Side Diff: Source/modules/modules.gypi

Issue 1153343002: bluetooth: Add BluetoothGATTCharacteristic IDL and Blink interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@bluetooth-get-primary-service-implementation
Patch Set: Added BluetoothGATTCharacteristic to global interface test Created 5 years, 6 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 { 1 {
2 'includes': [ 2 'includes': [
3 '../core/core_generated.gypi', 3 '../core/core_generated.gypi',
4 'modules_generated.gypi', 4 'modules_generated.gypi',
5 ], 5 ],
6 'variables': { 6 'variables': {
7 # Experimental hooks for embedder to provide extra IDL and source files. 7 # Experimental hooks for embedder to provide extra IDL and source files.
8 # 8 #
9 # Note: this is not a supported API. If you rely on this, you will be broken 9 # Note: this is not a supported API. If you rely on this, you will be broken
10 # from time to time as the code generator changes in backward incompatible 10 # from time to time as the code generator changes in backward incompatible
11 # ways. 11 # ways.
12 'extra_blink_module_idl_files': [], 12 'extra_blink_module_idl_files': [],
13 'extra_blink_module_files': [], 13 'extra_blink_module_files': [],
14 # Files for which bindings (.cpp and .h files) will be generated 14 # Files for which bindings (.cpp and .h files) will be generated
15 'modules_idl_files': [ 15 'modules_idl_files': [
16 '<@(extra_blink_module_idl_files)', 16 '<@(extra_blink_module_idl_files)',
17 'app_banner/AppBannerPromptResult.idl', 17 'app_banner/AppBannerPromptResult.idl',
18 'app_banner/BeforeInstallPromptEvent.idl', 18 'app_banner/BeforeInstallPromptEvent.idl',
19 'background_sync/PeriodicSyncEvent.idl', 19 'background_sync/PeriodicSyncEvent.idl',
20 'background_sync/PeriodicSyncManager.idl', 20 'background_sync/PeriodicSyncManager.idl',
21 'background_sync/PeriodicSyncRegistration.idl', 21 'background_sync/PeriodicSyncRegistration.idl',
22 'background_sync/SyncEvent.idl', 22 'background_sync/SyncEvent.idl',
23 'background_sync/SyncManager.idl', 23 'background_sync/SyncManager.idl',
24 'background_sync/SyncRegistration.idl', 24 'background_sync/SyncRegistration.idl',
25 'battery/BatteryManager.idl', 25 'battery/BatteryManager.idl',
26 'bluetooth/Bluetooth.idl', 26 'bluetooth/Bluetooth.idl',
27 'bluetooth/BluetoothDevice.idl', 27 'bluetooth/BluetoothDevice.idl',
28 'bluetooth/BluetoothGATTCharacteristic.idl',
28 'bluetooth/BluetoothGATTRemoteServer.idl', 29 'bluetooth/BluetoothGATTRemoteServer.idl',
29 'bluetooth/BluetoothGATTService.idl', 30 'bluetooth/BluetoothGATTService.idl',
30 'cachestorage/Cache.idl', 31 'cachestorage/Cache.idl',
31 'cachestorage/CacheStorage.idl', 32 'cachestorage/CacheStorage.idl',
32 'compositorworker/CompositorWorker.idl', 33 'compositorworker/CompositorWorker.idl',
33 'compositorworker/CompositorWorkerGlobalScope.idl', 34 'compositorworker/CompositorWorkerGlobalScope.idl',
34 'credentialmanager/Credential.idl', 35 'credentialmanager/Credential.idl',
35 'credentialmanager/CredentialsContainer.idl', 36 'credentialmanager/CredentialsContainer.idl',
36 'credentialmanager/FederatedCredential.idl', 37 'credentialmanager/FederatedCredential.idl',
37 'credentialmanager/LocalCredential.idl', 38 'credentialmanager/LocalCredential.idl',
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 'battery/NavigatorBattery.cpp', 596 'battery/NavigatorBattery.cpp',
596 'battery/NavigatorBattery.h', 597 'battery/NavigatorBattery.h',
597 'beacon/NavigatorBeacon.cpp', 598 'beacon/NavigatorBeacon.cpp',
598 'beacon/NavigatorBeacon.h', 599 'beacon/NavigatorBeacon.h',
599 'bluetooth/Bluetooth.h', 600 'bluetooth/Bluetooth.h',
600 'bluetooth/Bluetooth.cpp', 601 'bluetooth/Bluetooth.cpp',
601 'bluetooth/BluetoothDevice.cpp', 602 'bluetooth/BluetoothDevice.cpp',
602 'bluetooth/BluetoothDevice.h', 603 'bluetooth/BluetoothDevice.h',
603 'bluetooth/BluetoothError.cpp', 604 'bluetooth/BluetoothError.cpp',
604 'bluetooth/BluetoothError.h', 605 'bluetooth/BluetoothError.h',
606 'bluetooth/BluetoothGATTCharacteristic.h',
605 'bluetooth/BluetoothGATTService.h', 607 'bluetooth/BluetoothGATTService.h',
606 'bluetooth/BluetoothGATTService.cpp', 608 'bluetooth/BluetoothGATTService.cpp',
607 'bluetooth/BluetoothGATTRemoteServer.h', 609 'bluetooth/BluetoothGATTRemoteServer.h',
608 'bluetooth/BluetoothGATTRemoteServer.cpp', 610 'bluetooth/BluetoothGATTRemoteServer.cpp',
609 'bluetooth/NavigatorBluetooth.cpp', 611 'bluetooth/NavigatorBluetooth.cpp',
610 'bluetooth/NavigatorBluetooth.h', 612 'bluetooth/NavigatorBluetooth.h',
611 'cachestorage/Cache.cpp', 613 'cachestorage/Cache.cpp',
612 'cachestorage/Cache.h', 614 'cachestorage/Cache.h',
613 'cachestorage/CacheStorage.cpp', 615 'cachestorage/CacheStorage.cpp',
614 'cachestorage/CacheStorage.h', 616 'cachestorage/CacheStorage.h',
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1441 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1440 'webaudio/ConvolverNodeTest.cpp', 1442 'webaudio/ConvolverNodeTest.cpp',
1441 'webaudio/DynamicsCompressorNodeTest.cpp', 1443 'webaudio/DynamicsCompressorNodeTest.cpp',
1442 'webaudio/ScriptProcessorNodeTest.cpp', 1444 'webaudio/ScriptProcessorNodeTest.cpp',
1443 'webaudio/StereoPannerNodeTest.cpp', 1445 'webaudio/StereoPannerNodeTest.cpp',
1444 'websockets/DOMWebSocketTest.cpp', 1446 'websockets/DOMWebSocketTest.cpp',
1445 'websockets/DocumentWebSocketChannelTest.cpp', 1447 'websockets/DocumentWebSocketChannelTest.cpp',
1446 ], 1448 ],
1447 }, 1449 },
1448 } 1450 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698