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

Unified Diff: third_party/WebKit/Source/modules/modules.gypi

Issue 1942663003: [sensors]: Introduce the Generic Sensor API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix final comments Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/modules.gypi
diff --git a/third_party/WebKit/Source/modules/modules.gypi b/third_party/WebKit/Source/modules/modules.gypi
index 26cf0f59958ebff629f61f26815bd072e258a040..53cfa4e314cb25f0a022bff2c1c61d5780b06975 100644
--- a/third_party/WebKit/Source/modules/modules.gypi
+++ b/third_party/WebKit/Source/modules/modules.gypi
@@ -182,6 +182,10 @@
'remoteplayback/RemotePlayback.idl',
'remoteplayback/RemotePlaybackAvailability.idl',
'screen_orientation/ScreenOrientation.idl',
+ 'sensor/Sensor.idl',
+ 'sensor/SensorErrorEvent.idl',
+ 'sensor/SensorReading.idl',
+ 'sensor/SensorReadingEvent.idl',
'serviceworkers/Client.idl',
'serviceworkers/Clients.idl',
'serviceworkers/ExtendableEvent.idl',
@@ -426,6 +430,8 @@
'presentation/PresentationConnectionAvailableEvent.idl',
'presentation/PresentationConnectionCloseEvent.idl',
'push_messaging/PushEvent.idl',
+ 'sensor/SensorErrorEvent.idl',
+ 'sensor/SensorReadingEvent.idl',
'serviceworkers/ExtendableEvent.idl',
'serviceworkers/ExtendableMessageEvent.idl',
'serviceworkers/FetchEvent.idl',
@@ -514,6 +520,9 @@
'push_messaging/PushEventInit.idl',
'push_messaging/PushSubscriptionOptions.idl',
'quota/StorageEstimate.idl',
+ 'sensor/SensorErrorEventInit.idl',
+ 'sensor/SensorReadingEventInit.idl',
+ 'sensor/SensorOptions.idl',
'serviceworkers/ClientQueryOptions.idl',
'serviceworkers/ExtendableEventInit.idl',
'serviceworkers/ExtendableMessageEventInit.idl',
@@ -692,6 +701,12 @@
'<(blink_modules_output_dir)/push_messaging/PushSubscriptionOptions.h',
'<(blink_modules_output_dir)/quota/StorageEstimate.cpp',
'<(blink_modules_output_dir)/quota/StorageEstimate.h',
+ '<(blink_modules_output_dir)/sensor/SensorErrorEventInit.cpp',
+ '<(blink_modules_output_dir)/sensor/SensorErrorEventInit.h',
+ '<(blink_modules_output_dir)/sensor/SensorReadingEventInit.cpp',
+ '<(blink_modules_output_dir)/sensor/SensorReadingEventInit.h',
+ '<(blink_modules_output_dir)/sensor/SensorOptions.cpp',
+ '<(blink_modules_output_dir)/sensor/SensorOptions.h',
'<(blink_modules_output_dir)/serviceworkers/ClientQueryOptions.cpp',
'<(blink_modules_output_dir)/serviceworkers/ClientQueryOptions.h',
'<(blink_modules_output_dir)/serviceworkers/ExtendableEventInit.cpp',
@@ -1460,6 +1475,15 @@
'screen_orientation/ScreenOrientationController.h',
'screen_orientation/ScreenOrientationDispatcher.cpp',
'screen_orientation/ScreenOrientationDispatcher.h',
+ 'sensor/Sensor.cpp',
+ 'sensor/Sensor.h',
+ 'sensor/SensorErrorEvent.cpp',
+ 'sensor/SensorErrorEvent.h',
+ 'sensor/SensorReading.cpp',
+ 'sensor/SensorReading.h',
+ 'sensor/SensorReadingEvent.cpp',
+ 'sensor/SensorReadingEvent.h',
+ 'sensor/SensorState.h',
'serviceworkers/ExtendableEvent.cpp',
'serviceworkers/ExtendableEvent.h',
'serviceworkers/ExtendableMessageEvent.cpp',

Powered by Google App Engine
This is Rietveld 408576698