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

Side by Side Diff: third_party/WebKit/Source/modules/modules_idl_files.gni

Issue 2332323002: [sensors] Ambient light sensor bindings implementation (Closed)
Patch Set: Fixes for comments from Haraken Created 4 years, 3 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/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 6
7 # The paths in this file are absolute since this file is imported and the 7 # The paths in this file are absolute since this file is imported and the
8 # file lists must be valid from multple "current directories". 8 # file lists must be valid from multple "current directories".
9 9
10 bindings_modules_output_dir = "$bindings_output_dir/modules" 10 bindings_modules_output_dir = "$bindings_output_dir/modules"
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 "quota/DeprecatedStorageQuota.idl", 208 "quota/DeprecatedStorageQuota.idl",
209 "quota/StorageErrorCallback.idl", 209 "quota/StorageErrorCallback.idl",
210 "quota/StorageInfo.idl", 210 "quota/StorageInfo.idl",
211 "quota/StorageManager.idl", 211 "quota/StorageManager.idl",
212 "quota/StorageQuota.idl", 212 "quota/StorageQuota.idl",
213 "quota/StorageQuotaCallback.idl", 213 "quota/StorageQuotaCallback.idl",
214 "quota/StorageUsageCallback.idl", 214 "quota/StorageUsageCallback.idl",
215 "remoteplayback/RemotePlayback.idl", 215 "remoteplayback/RemotePlayback.idl",
216 "remoteplayback/RemotePlaybackAvailability.idl", 216 "remoteplayback/RemotePlaybackAvailability.idl",
217 "screen_orientation/ScreenOrientation.idl", 217 "screen_orientation/ScreenOrientation.idl",
218 "sensor/AmbientLightSensor.idl",
219 "sensor/AmbientLightSensorReading.idl",
218 "sensor/Sensor.idl", 220 "sensor/Sensor.idl",
219 "sensor/SensorErrorEvent.idl", 221 "sensor/SensorErrorEvent.idl",
220 "sensor/SensorReading.idl", 222 "sensor/SensorReading.idl",
221 "sensor/SensorReadingEvent.idl", 223 "sensor/SensorReadingEvent.idl",
222 "serviceworkers/Client.idl", 224 "serviceworkers/Client.idl",
223 "serviceworkers/Clients.idl", 225 "serviceworkers/Clients.idl",
224 "serviceworkers/ExtendableEvent.idl", 226 "serviceworkers/ExtendableEvent.idl",
225 "serviceworkers/ExtendableMessageEvent.idl", 227 "serviceworkers/ExtendableMessageEvent.idl",
226 "serviceworkers/FetchEvent.idl", 228 "serviceworkers/FetchEvent.idl",
227 "serviceworkers/ForeignFetchEvent.idl", 229 "serviceworkers/ForeignFetchEvent.idl",
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 "peerconnection/RTCOfferOptions.idl", 437 "peerconnection/RTCOfferOptions.idl",
436 "peerconnection/RTCSessionDescriptionInit.idl", 438 "peerconnection/RTCSessionDescriptionInit.idl",
437 "permissions/MidiPermissionDescriptor.idl", 439 "permissions/MidiPermissionDescriptor.idl",
438 "permissions/PermissionDescriptor.idl", 440 "permissions/PermissionDescriptor.idl",
439 "permissions/PushPermissionDescriptor.idl", 441 "permissions/PushPermissionDescriptor.idl",
440 "presentation/PresentationConnectionAvailableEventInit.idl", 442 "presentation/PresentationConnectionAvailableEventInit.idl",
441 "presentation/PresentationConnectionCloseEventInit.idl", 443 "presentation/PresentationConnectionCloseEventInit.idl",
442 "push_messaging/PushEventInit.idl", 444 "push_messaging/PushEventInit.idl",
443 "push_messaging/PushSubscriptionOptionsInit.idl", 445 "push_messaging/PushSubscriptionOptionsInit.idl",
444 "quota/StorageEstimate.idl", 446 "quota/StorageEstimate.idl",
447 "sensor/AmbientLightSensorReadingInit.idl",
445 "sensor/SensorErrorEventInit.idl", 448 "sensor/SensorErrorEventInit.idl",
446 "sensor/SensorReadingEventInit.idl", 449 "sensor/SensorReadingEventInit.idl",
447 "sensor/SensorOptions.idl", 450 "sensor/SensorOptions.idl",
448 "serviceworkers/ClientQueryOptions.idl", 451 "serviceworkers/ClientQueryOptions.idl",
449 "serviceworkers/ExtendableEventInit.idl", 452 "serviceworkers/ExtendableEventInit.idl",
450 "serviceworkers/ExtendableMessageEventInit.idl", 453 "serviceworkers/ExtendableMessageEventInit.idl",
451 "serviceworkers/FetchEventInit.idl", 454 "serviceworkers/FetchEventInit.idl",
452 "serviceworkers/ForeignFetchEventInit.idl", 455 "serviceworkers/ForeignFetchEventInit.idl",
453 "serviceworkers/ForeignFetchOptions.idl", 456 "serviceworkers/ForeignFetchOptions.idl",
454 "serviceworkers/ForeignFetchResponse.idl", 457 "serviceworkers/ForeignFetchResponse.idl",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 modules_dependency_idl_files + modules_testing_dependency_idl_files 586 modules_dependency_idl_files + modules_testing_dependency_idl_files
584 587
585 modules_generated_dependency_idl_files = 588 modules_generated_dependency_idl_files =
586 modules_core_global_constructors_generated_idl_files + 589 modules_core_global_constructors_generated_idl_files +
587 modules_global_constructors_generated_idl_files 590 modules_global_constructors_generated_idl_files
588 591
589 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid 592 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid
590 # collision 593 # collision
591 modules_all_dependency_idl_files = 594 modules_all_dependency_idl_files =
592 modules_static_dependency_idl_files + modules_generated_dependency_idl_files 595 modules_static_dependency_idl_files + modules_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698