File: modules.gypi

package info (click to toggle)
chromium-browser 41.0.2272.118-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,189,132 kB
  • sloc: cpp: 9,691,462; ansic: 3,341,451; python: 712,689; asm: 518,779; xml: 208,926; java: 169,820; sh: 119,353; perl: 68,907; makefile: 28,311; yacc: 13,305; objc: 11,385; tcl: 3,186; cs: 2,225; sql: 2,217; lex: 2,215; lisp: 1,349; pascal: 1,256; awk: 407; ruby: 155; sed: 53; php: 14; exp: 11
file content (1231 lines) | stat: -rw-r--r-- 53,719 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
{
  'includes': [
    '../core/core_generated.gypi',
    'modules_generated.gypi',
  ],
  'variables': {
    # Experimental hooks for embedder to provide extra IDL and source files.
    #
    # Note: this is not a supported API. If you rely on this, you will be broken
    # from time to time as the code generator changes in backward incompatible
    # ways.
    'extra_blink_module_idl_files': [],
    'extra_blink_module_files': [],
    # Files for which bindings (.cpp and .h files) will be generated
    'modules_idl_files': [
      '<@(extra_blink_module_idl_files)',
      'battery/BatteryManager.idl',
      'bluetooth/Bluetooth.idl',
      'bluetooth/BluetoothDevice.idl',
      'bluetooth/BluetoothDiscovery.idl',
      'credentialmanager/Credential.idl',
      'credentialmanager/CredentialsContainer.idl',
      'credentialmanager/FederatedCredential.idl',
      'credentialmanager/LocalCredential.idl',
      'crypto/Crypto.idl',
      'crypto/CryptoKey.idl',
      'crypto/SubtleCrypto.idl',
      'device_light/DeviceLightEvent.idl',
      'device_orientation/DeviceAcceleration.idl',
      'device_orientation/DeviceMotionEvent.idl',
      'device_orientation/DeviceOrientationEvent.idl',
      'device_orientation/DeviceRotationRate.idl',
      'encoding/TextDecoder.idl',
      'encoding/TextEncoder.idl',
      'encryptedmedia/MediaEncryptedEvent.idl',
      'encryptedmedia/MediaKeyMessageEvent.idl',
      'encryptedmedia/MediaKeySession.idl',
      'encryptedmedia/MediaKeySystemAccess.idl',
      'encryptedmedia/MediaKeys.idl',
      'fetch/Body.idl',
      'fetch/Headers.idl',
      'fetch/Request.idl',
      'fetch/Response.idl',
      'filesystem/DOMFileSystem.idl',
      'filesystem/DOMFileSystemSync.idl',
      'filesystem/DirectoryEntry.idl',
      'filesystem/DirectoryEntrySync.idl',
      'filesystem/DirectoryReader.idl',
      'filesystem/DirectoryReaderSync.idl',
      'filesystem/EntriesCallback.idl',
      'filesystem/Entry.idl',
      'filesystem/EntryCallback.idl',
      'filesystem/EntrySync.idl',
      'filesystem/ErrorCallback.idl',
      'filesystem/FileCallback.idl',
      'filesystem/FileEntry.idl',
      'filesystem/FileEntrySync.idl',
      'filesystem/FileSystemCallback.idl',
      'filesystem/FileWriter.idl',
      'filesystem/FileWriterCallback.idl',
      'filesystem/FileWriterSync.idl',
      'filesystem/Metadata.idl',
      'filesystem/MetadataCallback.idl',
      'gamepad/Gamepad.idl',
      'gamepad/GamepadButton.idl',
      'gamepad/GamepadEvent.idl',
      'gamepad/GamepadList.idl',
      'geofencing/CircularGeofencingRegion.idl',
      'geofencing/Geofencing.idl',
      'geofencing/GeofencingEvent.idl',
      'geofencing/GeofencingRegion.idl',
      'geolocation/Coordinates.idl',
      'geolocation/Geolocation.idl',
      'geolocation/Geoposition.idl',
      'geolocation/PositionCallback.idl',
      'geolocation/PositionError.idl',
      'geolocation/PositionErrorCallback.idl',
      'indexeddb/IDBCursor.idl',
      'indexeddb/IDBCursorWithValue.idl',
      'indexeddb/IDBDatabase.idl',
      'indexeddb/IDBFactory.idl',
      'indexeddb/IDBIndex.idl',
      'indexeddb/IDBKeyRange.idl',
      'indexeddb/IDBObjectStore.idl',
      'indexeddb/IDBOpenDBRequest.idl',
      'indexeddb/IDBRequest.idl',
      'indexeddb/IDBTransaction.idl',
      'indexeddb/IDBVersionChangeEvent.idl',
      'mediasource/MediaSource.idl',
      'mediasource/SourceBuffer.idl',
      'mediasource/SourceBufferList.idl',
      'mediasource/TrackDefault.idl',
      'mediasource/TrackDefaultList.idl',
      'mediasource/VideoPlaybackQuality.idl',
      'mediastream/MediaDeviceInfo.idl',
      'mediastream/MediaDeviceInfoCallback.idl',
      'mediastream/MediaStream.idl',
      'mediastream/MediaStreamEvent.idl',
      'mediastream/MediaStreamTrack.idl',
      'mediastream/MediaStreamTrackEvent.idl',
      'mediastream/MediaStreamTrackSourcesCallback.idl',
      'mediastream/NavigatorUserMediaError.idl',
      'mediastream/NavigatorUserMediaErrorCallback.idl',
      'mediastream/NavigatorUserMediaSuccessCallback.idl',
      'mediastream/RTCDTMFSender.idl',
      'mediastream/RTCDTMFToneChangeEvent.idl',
      'mediastream/RTCDataChannel.idl',
      'mediastream/RTCDataChannelEvent.idl',
      'mediastream/RTCErrorCallback.idl',
      'mediastream/RTCIceCandidate.idl',
      'mediastream/RTCIceCandidateEvent.idl',
      'mediastream/RTCPeerConnection.idl',
      'mediastream/RTCSessionDescription.idl',
      'mediastream/RTCSessionDescriptionCallback.idl',
      'mediastream/RTCStatsCallback.idl',
      'mediastream/RTCStatsReport.idl',
      'mediastream/RTCStatsResponse.idl',
      'mediastream/SourceInfo.idl',
      'navigatorconnect/CrossOriginConnectEvent.idl',
      'navigatorconnect/CrossOriginServiceWorkerClient.idl',
      'netinfo/NetworkInformation.idl',
      'notifications/Notification.idl',
      'notifications/NotificationEvent.idl',
      'notifications/NotificationPermissionCallback.idl',
      'performance/WorkerPerformance.idl',
      'permissions/Permissions.idl',
      'permissions/PermissionStatus.idl',
      'presentation/Presentation.idl',
      'presentation/PresentationSession.idl',
      'push_messaging/PushEvent.idl',
      'push_messaging/PushManager.idl',
      'push_messaging/PushMessageData.idl',
      'push_messaging/PushSubscription.idl',
      'quota/DeprecatedStorageInfo.idl',
      'quota/DeprecatedStorageQuota.idl',
      'quota/StorageErrorCallback.idl',
      'quota/StorageInfo.idl',
      'quota/StorageQuota.idl',
      'quota/StorageQuotaCallback.idl',
      'quota/StorageUsageCallback.idl',
      'screen_orientation/ScreenOrientation.idl',
      'serviceworkers/Cache.idl',
      'serviceworkers/CacheStorage.idl',
      'serviceworkers/Client.idl',
      'serviceworkers/Clients.idl',
      'serviceworkers/ExtendableEvent.idl',
      'serviceworkers/FetchEvent.idl',
      'serviceworkers/InstallEvent.idl',
      'serviceworkers/ServiceWorker.idl',
      'serviceworkers/ServiceWorkerContainer.idl',
      'serviceworkers/ServiceWorkerGlobalScope.idl',
      'serviceworkers/ServiceWorkerRegistration.idl',
      'serviceworkers/WindowClient.idl',
      'speech/SpeechGrammar.idl',
      'speech/SpeechGrammarList.idl',
      'speech/SpeechRecognition.idl',
      'speech/SpeechRecognitionAlternative.idl',
      'speech/SpeechRecognitionError.idl',
      'speech/SpeechRecognitionEvent.idl',
      'speech/SpeechRecognitionResult.idl',
      'speech/SpeechRecognitionResultList.idl',
      'speech/SpeechSynthesis.idl',
      'speech/SpeechSynthesisEvent.idl',
      'speech/SpeechSynthesisUtterance.idl',
      'speech/SpeechSynthesisVoice.idl',
      'webaudio/AnalyserNode.idl',
      'webaudio/AudioBuffer.idl',
      'webaudio/AudioBufferCallback.idl',
      'webaudio/AudioBufferSourceNode.idl',
      'webaudio/AudioContext.idl',
      'webaudio/AudioDestinationNode.idl',
      'webaudio/AudioListener.idl',
      'webaudio/AudioNode.idl',
      'webaudio/AudioParam.idl',
      'webaudio/AudioProcessingEvent.idl',
      'webaudio/AudioSourceNode.idl',
      'webaudio/BiquadFilterNode.idl',
      'webaudio/ChannelMergerNode.idl',
      'webaudio/ChannelSplitterNode.idl',
      'webaudio/ConvolverNode.idl',
      'webaudio/DelayNode.idl',
      'webaudio/DynamicsCompressorNode.idl',
      'webaudio/GainNode.idl',
      'webaudio/MediaElementAudioSourceNode.idl',
      'webaudio/MediaStreamAudioDestinationNode.idl',
      'webaudio/MediaStreamAudioSourceNode.idl',
      'webaudio/OfflineAudioCompletionEvent.idl',
      'webaudio/OfflineAudioContext.idl',
      'webaudio/OscillatorNode.idl',
      'webaudio/PannerNode.idl',
      'webaudio/PeriodicWave.idl',
      'webaudio/ScriptProcessorNode.idl',
      'webaudio/StereoPannerNode.idl',
      'webaudio/WaveShaperNode.idl',
      'webdatabase/Database.idl',
      'webdatabase/DatabaseCallback.idl',
      'webdatabase/SQLError.idl',
      'webdatabase/SQLResultSet.idl',
      'webdatabase/SQLResultSetRowList.idl',
      'webdatabase/SQLStatementCallback.idl',
      'webdatabase/SQLStatementErrorCallback.idl',
      'webdatabase/SQLTransaction.idl',
      'webdatabase/SQLTransactionCallback.idl',
      'webdatabase/SQLTransactionErrorCallback.idl',
      'webmidi/MIDIAccess.idl',
      'webmidi/MIDIConnectionEvent.idl',
      'webmidi/MIDIErrorCallback.idl',
      'webmidi/MIDIInput.idl',
      'webmidi/MIDIInputMap.idl',
      'webmidi/MIDIMessageEvent.idl',
      'webmidi/MIDIOutput.idl',
      'webmidi/MIDIOutputMap.idl',
      'webmidi/MIDIPort.idl',
      'webmidi/MIDISuccessCallback.idl',
      'websockets/CloseEvent.idl',
      'websockets/WebSocket.idl',
    ],
    # 'partial interface' or target (right side of) 'implements'
    'modules_dependency_idl_files': [
      'battery/NavigatorBattery.idl',
      'beacon/NavigatorBeacon.idl',
      'bluetooth/NavigatorBluetooth.idl',
      'credentialmanager/NavigatorCredentials.idl',
      'crypto/WindowCrypto.idl',
      'crypto/WorkerGlobalScopeCrypto.idl',
      'device_light/WindowDeviceLight.idl',
      'device_orientation/WindowDeviceMotion.idl',
      'device_orientation/WindowDeviceOrientation.idl',
      'donottrack/NavigatorDoNotTrack.idl',
      'encryptedmedia/HTMLMediaElementEncryptedMedia.idl',
      'encryptedmedia/NavigatorRequestMediaKeySystemAccess.idl',
      'fetch/WindowFetch.idl',
      'fetch/WorkerFetch.idl',
      'filesystem/DataTransferItemFileSystem.idl',
      'filesystem/DevToolsHostFileSystem.idl',
      'filesystem/HTMLInputElementFileSystem.idl',
      'filesystem/WindowFileSystem.idl',
      'filesystem/WorkerGlobalScopeFileSystem.idl',
      'gamepad/NavigatorGamepad.idl',
      'geofencing/ServiceWorkerGlobalScopeGeofencing.idl',
      'geofencing/ServiceWorkerRegistrationGeofencing.idl',
      'geofencing/WorkerNavigatorGeofencing.idl',
      'geolocation/NavigatorGeolocation.idl',
      'indexeddb/WindowIndexedDatabase.idl',
      'indexeddb/WorkerGlobalScopeIndexedDatabase.idl',
      'mediasource/HTMLVideoElementMediaSource.idl',
      'mediasource/URLMediaSource.idl',
      'mediastream/NavigatorMediaStream.idl',
      'mediastream/URLMediaStream.idl',
      'mediastream/WindowMediaStream.idl',
      'navigatorconnect/NavigatorConnect.idl',
      'navigatorconnect/WorkerNavigatorConnect.idl',
      'navigatorcontentutils/NavigatorContentUtils.idl',
      'netinfo/NavigatorNetworkInformation.idl',
      'netinfo/WorkerNavigatorNetworkInformation.idl',
      'notifications/ServiceWorkerGlobalScopeNotifications.idl',
      'notifications/ServiceWorkerRegistrationNotifications.idl',
      'performance/SharedWorkerPerformance.idl',
      'performance/WorkerGlobalScopePerformance.idl',
      'presentation/NavigatorPresentation.idl',
      'push_messaging/ServiceWorkerGlobalScopePush.idl',
      'push_messaging/ServiceWorkerRegistrationPush.idl',
      'quota/NavigatorStorageQuota.idl',
      'quota/WindowQuota.idl',
      'quota/WorkerNavigatorStorageQuota.idl',
      'screen_orientation/ScreenScreenOrientation.idl',
      'serviceworkers/NavigatorServiceWorker.idl',
      'speech/WindowSpeech.idl',
      'speech/WindowSpeechSynthesis.idl',
      'vibration/NavigatorVibration.idl',
      'webaudio/WindowWebAudio.idl',
      'webdatabase/WindowWebDatabase.idl',
      'webmidi/NavigatorWebMIDI.idl',
    ],
    # interfaces that inherit from Event
    'modules_event_idl_files': [
      'device_light/DeviceLightEvent.idl',
      'device_orientation/DeviceMotionEvent.idl',
      'device_orientation/DeviceOrientationEvent.idl',
      'encryptedmedia/MediaEncryptedEvent.idl',
      'encryptedmedia/MediaKeyMessageEvent.idl',
      'gamepad/GamepadEvent.idl',
      'geofencing/GeofencingEvent.idl',
      'indexeddb/IDBVersionChangeEvent.idl',
      'mediastream/MediaStreamEvent.idl',
      'mediastream/MediaStreamTrackEvent.idl',
      'mediastream/RTCDTMFToneChangeEvent.idl',
      'mediastream/RTCDataChannelEvent.idl',
      'mediastream/RTCIceCandidateEvent.idl',
      'navigatorconnect/CrossOriginConnectEvent.idl',
      'notifications/NotificationEvent.idl',
      'push_messaging/PushEvent.idl',
      'serviceworkers/ExtendableEvent.idl',
      'serviceworkers/FetchEvent.idl',
      'serviceworkers/InstallEvent.idl',
      'speech/SpeechRecognitionError.idl',
      'speech/SpeechRecognitionEvent.idl',
      'speech/SpeechSynthesisEvent.idl',
      'webaudio/AudioProcessingEvent.idl',
      'webaudio/OfflineAudioCompletionEvent.idl',
      'webmidi/MIDIConnectionEvent.idl',
      'webmidi/MIDIMessageEvent.idl',
      'websockets/CloseEvent.idl',
    ],
    'modules_dictionary_idl_files': [
      'device_light/DeviceLightEventInit.idl',
      'encoding/TextDecodeOptions.idl',
      'encoding/TextDecoderOptions.idl',
      'encryptedmedia/MediaEncryptedEventInit.idl',
      'encryptedmedia/MediaKeyMessageEventInit.idl',
      'encryptedmedia/MediaKeySystemConfiguration.idl',
      'encryptedmedia/MediaKeySystemMediaCapability.idl',
      'filesystem/FileSystemFlags.idl',
      'gamepad/GamepadEventInit.idl',
      'geofencing/CircularGeofencingRegionInit.idl',
      'geolocation/PositionOptions.idl',
      'indexeddb/IDBIndexParameters.idl',
      'indexeddb/IDBObjectStoreParameters.idl',
      'indexeddb/IDBVersionChangeEventInit.idl',
      'mediastream/MediaStreamEventInit.idl',
      'mediastream/RTCDTMFToneChangeEventInit.idl',
      'mediastream/RTCIceCandidateInit.idl',
      'mediastream/RTCSessionDescriptionInit.idl',
      'notifications/NotificationEventInit.idl',
      'notifications/NotificationOptions.idl',
      'push_messaging/PushEventInit.idl',
      'serviceworkers/CacheQueryOptions.idl',
      'serviceworkers/ClientQueryOptions.idl',
      'serviceworkers/ExtendableEventInit.idl',
      'serviceworkers/InstallEventInit.idl',
      'serviceworkers/RegistrationOptions.idl',
      'speech/SpeechRecognitionErrorInit.idl',
      'speech/SpeechRecognitionEventInit.idl',
      'webmidi/MIDIConnectionEventInit.idl',
      'webmidi/MIDIMessageEventInit.idl',
      'webmidi/MIDIOptions.idl',
      'websockets/CloseEventInit.idl',
    ],
    'generated_modules_files': [
      # .cpp files from make_modules_generated actions.
      '<(blink_modules_output_dir)/EventModules.cpp',
      '<(blink_modules_output_dir)/EventModulesHeaders.h',
      '<(blink_modules_output_dir)/EventModulesNames.cpp',
      '<(blink_modules_output_dir)/EventModulesNames.h',
      '<(blink_modules_output_dir)/EventTargetModulesNames.cpp',
      '<(blink_modules_output_dir)/EventTargetModulesNames.h',
      '<(blink_modules_output_dir)/IndexedDBNames.cpp',
      '<(blink_modules_output_dir)/IndexedDBNames.h',
    ],
    'generated_modules_dictionary_files': [
      '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
      '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
      '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
      '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h',
      '<(blink_modules_output_dir)/encoding/TextDecoderOptions.cpp',
      '<(blink_modules_output_dir)/encoding/TextDecoderOptions.h',
      '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.cpp',
      '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.h',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.cpp',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.h',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeySystemConfiguration.cpp',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeySystemConfiguration.h',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeySystemMediaCapability.cpp',
      '<(blink_modules_output_dir)/encryptedmedia/MediaKeySystemMediaCapability.h',
      '<(blink_modules_output_dir)/filesystem/FileSystemFlags.cpp',
      '<(blink_modules_output_dir)/filesystem/FileSystemFlags.h',
      '<(blink_modules_output_dir)/gamepad/GamepadEventInit.cpp',
      '<(blink_modules_output_dir)/gamepad/GamepadEventInit.h',
      '<(blink_modules_output_dir)/geofencing/CircularGeofencingRegionInit.cpp',
      '<(blink_modules_output_dir)/geofencing/CircularGeofencingRegionInit.h',
      '<(blink_modules_output_dir)/geolocation/PositionOptions.cpp',
      '<(blink_modules_output_dir)/geolocation/PositionOptions.h',
      '<(blink_modules_output_dir)/indexeddb/IDBIndexParameters.cpp',
      '<(blink_modules_output_dir)/indexeddb/IDBIndexParameters.h',
      '<(blink_modules_output_dir)/indexeddb/IDBObjectStoreParameters.cpp',
      '<(blink_modules_output_dir)/indexeddb/IDBObjectStoreParameters.h',
      '<(blink_modules_output_dir)/indexeddb/IDBVersionChangeEventInit.cpp',
      '<(blink_modules_output_dir)/indexeddb/IDBVersionChangeEventInit.h',
      '<(blink_modules_output_dir)/mediastream/MediaStreamEventInit.cpp',
      '<(blink_modules_output_dir)/mediastream/MediaStreamEventInit.h',
      '<(blink_modules_output_dir)/mediastream/RTCDTMFToneChangeEventInit.cpp',
      '<(blink_modules_output_dir)/mediastream/RTCDTMFToneChangeEventInit.h',
      '<(blink_modules_output_dir)/mediastream/RTCIceCandidateInit.cpp',
      '<(blink_modules_output_dir)/mediastream/RTCIceCandidateInit.h',
      '<(blink_modules_output_dir)/mediastream/RTCSessionDescriptionInit.cpp',
      '<(blink_modules_output_dir)/mediastream/RTCSessionDescriptionInit.h',
      '<(blink_modules_output_dir)/notifications/NotificationEventInit.cpp',
      '<(blink_modules_output_dir)/notifications/NotificationEventInit.h',
      '<(blink_modules_output_dir)/notifications/NotificationOptions.cpp',
      '<(blink_modules_output_dir)/notifications/NotificationOptions.h',
      '<(blink_modules_output_dir)/push_messaging/PushEventInit.cpp',
      '<(blink_modules_output_dir)/push_messaging/PushEventInit.h',
      '<(blink_modules_output_dir)/serviceworkers/CacheQueryOptions.cpp',
      '<(blink_modules_output_dir)/serviceworkers/CacheQueryOptions.h',
      '<(blink_modules_output_dir)/serviceworkers/ClientQueryOptions.cpp',
      '<(blink_modules_output_dir)/serviceworkers/ClientQueryOptions.h',
      '<(blink_modules_output_dir)/serviceworkers/ExtendableEventInit.cpp',
      '<(blink_modules_output_dir)/serviceworkers/ExtendableEventInit.h',
      '<(blink_modules_output_dir)/serviceworkers/InstallEventInit.cpp',
      '<(blink_modules_output_dir)/serviceworkers/InstallEventInit.h',
      '<(blink_modules_output_dir)/serviceworkers/RegistrationOptions.cpp',
      '<(blink_modules_output_dir)/serviceworkers/RegistrationOptions.h',
      '<(blink_modules_output_dir)/speech/SpeechRecognitionErrorInit.cpp',
      '<(blink_modules_output_dir)/speech/SpeechRecognitionErrorInit.h',
      '<(blink_modules_output_dir)/speech/SpeechRecognitionEventInit.cpp',
      '<(blink_modules_output_dir)/speech/SpeechRecognitionEventInit.h',
      '<(blink_modules_output_dir)/webmidi/MIDIConnectionEventInit.cpp',
      '<(blink_modules_output_dir)/webmidi/MIDIConnectionEventInit.h',
      '<(blink_modules_output_dir)/webmidi/MIDIMessageEventInit.h',
      '<(blink_modules_output_dir)/webmidi/MIDIMessageEventInit.cpp',
      '<(blink_modules_output_dir)/webmidi/MIDIOptions.cpp',
      '<(blink_modules_output_dir)/webmidi/MIDIOptions.h',
      '<(blink_modules_output_dir)/websockets/CloseEventInit.cpp',
      '<(blink_modules_output_dir)/websockets/CloseEventInit.h',
    ],
    'modules_files': [
      '<@(extra_blink_module_files)',
      '<@(generated_modules_dictionary_files)',
      '<@(generated_modules_files)',
      'InitModules.cpp',
      'InitModules.h',
      'accessibility/AXARIAGrid.cpp',
      'accessibility/AXARIAGrid.h',
      'accessibility/AXARIAGridCell.cpp',
      'accessibility/AXARIAGridCell.h',
      'accessibility/AXARIAGridRow.cpp',
      'accessibility/AXARIAGridRow.h',
      'accessibility/AXImageMapLink.cpp',
      'accessibility/AXImageMapLink.h',
      'accessibility/AXInlineTextBox.cpp',
      'accessibility/AXInlineTextBox.h',
      'accessibility/AXList.cpp',
      'accessibility/AXList.h',
      'accessibility/AXListBox.cpp',
      'accessibility/AXListBox.h',
      'accessibility/AXListBoxOption.cpp',
      'accessibility/AXListBoxOption.h',
      'accessibility/AXMediaControls.cpp',
      'accessibility/AXMediaControls.h',
      'accessibility/AXMenuList.cpp',
      'accessibility/AXMenuList.h',
      'accessibility/AXMenuListOption.cpp',
      'accessibility/AXMenuListOption.h',
      'accessibility/AXMenuListPopup.cpp',
      'accessibility/AXMenuListPopup.h',
      'accessibility/AXMockObject.cpp',
      'accessibility/AXMockObject.h',
      'accessibility/AXNodeObject.cpp',
      'accessibility/AXNodeObject.h',
      'accessibility/AXObjectCacheImpl.cpp',
      'accessibility/AXObjectCacheImpl.h',
      'accessibility/AXObject.cpp',
      'accessibility/AXObject.h',
      'accessibility/AXProgressIndicator.cpp',
      'accessibility/AXProgressIndicator.h',
      'accessibility/AXRenderObject.cpp',
      'accessibility/AXRenderObject.h',
      'accessibility/AXSVGRoot.cpp',
      'accessibility/AXSVGRoot.h',
      'accessibility/AXScrollView.cpp',
      'accessibility/AXScrollView.h',
      'accessibility/AXScrollbar.cpp',
      'accessibility/AXScrollbar.h',
      'accessibility/AXSlider.cpp',
      'accessibility/AXSlider.h',
      'accessibility/AXSpinButton.cpp',
      'accessibility/AXSpinButton.h',
      'accessibility/AXTable.cpp',
      'accessibility/AXTable.h',
      'accessibility/AXTableCell.cpp',
      'accessibility/AXTableCell.h',
      'accessibility/AXTableColumn.cpp',
      'accessibility/AXTableColumn.h',
      'accessibility/AXTableHeaderContainer.cpp',
      'accessibility/AXTableHeaderContainer.h',
      'accessibility/AXTableRow.cpp',
      'accessibility/AXTableRow.h',
      'battery/BatteryDispatcher.cpp',
      'battery/BatteryDispatcher.h',
      'battery/BatteryManager.cpp',
      'battery/BatteryManager.h',
      'battery/BatteryStatus.cpp',
      'battery/BatteryStatus.h',
      'battery/NavigatorBattery.cpp',
      'battery/NavigatorBattery.h',
      'beacon/NavigatorBeacon.cpp',
      'beacon/NavigatorBeacon.h',
      'bluetooth/Bluetooth.h',
      'bluetooth/BluetoothDevice.cpp',
      'bluetooth/BluetoothDevice.h',
      'bluetooth/BluetoothDiscovery.cpp',
      'bluetooth/BluetoothDiscovery.h',
      'bluetooth/BluetoothError.cpp',
      'bluetooth/BluetoothError.h',
      'bluetooth/NavigatorBluetooth.cpp',
      'bluetooth/NavigatorBluetooth.h',
      'credentialmanager/Credential.cpp',
      'credentialmanager/Credential.h',
      'credentialmanager/CredentialManagerClient.cpp',
      'credentialmanager/CredentialManagerClient.h',
      'credentialmanager/CredentialsContainer.cpp',
      'credentialmanager/CredentialsContainer.h',
      'credentialmanager/FederatedCredential.cpp',
      'credentialmanager/FederatedCredential.h',
      'credentialmanager/LocalCredential.cpp',
      'credentialmanager/LocalCredential.h',
      'credentialmanager/NavigatorCredentials.cpp',
      'credentialmanager/NavigatorCredentials.h',
      'crypto/Crypto.cpp',
      'crypto/Crypto.h',
      'crypto/CryptoKey.cpp',
      'crypto/CryptoKey.h',
      'crypto/CryptoResultImpl.cpp',
      'crypto/CryptoResultImpl.h',
      'crypto/DOMWindowCrypto.cpp',
      'crypto/DOMWindowCrypto.h',
      'crypto/NormalizeAlgorithm.cpp',
      'crypto/NormalizeAlgorithm.h',
      'crypto/SubtleCrypto.cpp',
      'crypto/SubtleCrypto.h',
      'crypto/WorkerGlobalScopeCrypto.cpp',
      'crypto/WorkerGlobalScopeCrypto.h',
      'device_light/DeviceLightController.cpp',
      'device_light/DeviceLightController.h',
      'device_light/DeviceLightDispatcher.cpp',
      'device_light/DeviceLightDispatcher.h',
      'device_light/DeviceLightEvent.cpp',
      'device_light/DeviceLightEvent.h',
      'device_orientation/DeviceAcceleration.cpp',
      'device_orientation/DeviceAcceleration.h',
      'device_orientation/DeviceMotionController.cpp',
      'device_orientation/DeviceMotionController.h',
      'device_orientation/DeviceMotionData.cpp',
      'device_orientation/DeviceMotionData.h',
      'device_orientation/DeviceMotionDispatcher.cpp',
      'device_orientation/DeviceMotionDispatcher.h',
      'device_orientation/DeviceMotionEvent.cpp',
      'device_orientation/DeviceMotionEvent.h',
      'device_orientation/DeviceOrientationController.cpp',
      'device_orientation/DeviceOrientationController.h',
      'device_orientation/DeviceOrientationData.cpp',
      'device_orientation/DeviceOrientationData.h',
      'device_orientation/DeviceOrientationDispatcher.cpp',
      'device_orientation/DeviceOrientationDispatcher.h',
      'device_orientation/DeviceOrientationEvent.cpp',
      'device_orientation/DeviceOrientationEvent.h',
      'device_orientation/DeviceOrientationInspectorAgent.cpp',
      'device_orientation/DeviceOrientationInspectorAgent.h',
      'device_orientation/DeviceRotationRate.cpp',
      'device_orientation/DeviceRotationRate.h',
      'donottrack/NavigatorDoNotTrack.cpp',
      'donottrack/NavigatorDoNotTrack.h',
      'encoding/TextDecoder.cpp',
      'encoding/TextDecoder.h',
      'encoding/TextEncoder.cpp',
      'encoding/TextEncoder.h',
      'encryptedmedia/ContentDecryptionModuleResultPromise.cpp',
      'encryptedmedia/ContentDecryptionModuleResultPromise.h',
      'encryptedmedia/HTMLMediaElementEncryptedMedia.cpp',
      'encryptedmedia/HTMLMediaElementEncryptedMedia.h',
      'encryptedmedia/MediaEncryptedEvent.cpp',
      'encryptedmedia/MediaEncryptedEvent.h',
      'encryptedmedia/MediaKeyMessageEvent.cpp',
      'encryptedmedia/MediaKeyMessageEvent.h',
      'encryptedmedia/MediaKeySession.cpp',
      'encryptedmedia/MediaKeySession.h',
      'encryptedmedia/MediaKeySystemAccess.cpp',
      'encryptedmedia/MediaKeySystemAccess.h',
      'encryptedmedia/MediaKeys.cpp',
      'encryptedmedia/MediaKeys.h',
      'encryptedmedia/MediaKeysClient.h',
      'encryptedmedia/MediaKeysController.cpp',
      'encryptedmedia/MediaKeysController.h',
      'encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp',
      'encryptedmedia/NavigatorRequestMediaKeySystemAccess.h',
      'encryptedmedia/SimpleContentDecryptionModuleResultPromise.cpp',
      'encryptedmedia/SimpleContentDecryptionModuleResultPromise.h',
      'fetch/Body.cpp',
      'fetch/Body.h',
      'fetch/BodyStreamBuffer.cpp',
      'fetch/BodyStreamBuffer.h',
      'fetch/FetchHeaderList.cpp',
      'fetch/FetchHeaderList.h',
      'fetch/FetchManager.cpp',
      'fetch/FetchManager.h',
      'fetch/FetchRequestData.cpp',
      'fetch/FetchRequestData.h',
      'fetch/FetchResponseData.cpp',
      'fetch/FetchResponseData.h',
      'fetch/GlobalFetch.cpp',
      'fetch/GlobalFetch.h',
      'fetch/Headers.cpp',
      'fetch/Headers.h',
      'fetch/Request.cpp',
      'fetch/Request.h',
      'fetch/RequestInit.cpp',
      'fetch/RequestInit.h',
      'fetch/Response.cpp',
      'fetch/Response.h',
      'fetch/ResponseInit.h',
      'filesystem/DOMFilePath.cpp',
      'filesystem/DOMFilePath.h',
      'filesystem/DOMFileSystem.cpp',
      'filesystem/DOMFileSystem.h',
      'filesystem/DOMFileSystemBase.cpp',
      'filesystem/DOMFileSystemBase.h',
      'filesystem/DOMFileSystemSync.cpp',
      'filesystem/DOMFileSystemSync.h',
      'filesystem/DOMWindowFileSystem.cpp',
      'filesystem/DOMWindowFileSystem.h',
      'filesystem/DataTransferItemFileSystem.cpp',
      'filesystem/DataTransferItemFileSystem.h',
      'filesystem/DevToolsHostFileSystem.cpp',
      'filesystem/DevToolsHostFileSystem.h',
      'filesystem/DirectoryEntry.cpp',
      'filesystem/DirectoryEntry.h',
      'filesystem/DirectoryEntrySync.cpp',
      'filesystem/DirectoryEntrySync.h',
      'filesystem/DirectoryReader.cpp',
      'filesystem/DirectoryReader.h',
      'filesystem/DirectoryReaderBase.h',
      'filesystem/DirectoryReaderSync.cpp',
      'filesystem/DirectoryReaderSync.h',
      'filesystem/DraggedIsolatedFileSystem.cpp',
      'filesystem/DraggedIsolatedFileSystem.h',
      'filesystem/EntriesCallback.h',
      'filesystem/Entry.cpp',
      'filesystem/Entry.h',
      'filesystem/EntryBase.cpp',
      'filesystem/EntryBase.h',
      'filesystem/EntryCallback.h',
      'filesystem/EntrySync.cpp',
      'filesystem/EntrySync.h',
      'filesystem/ErrorCallback.h',
      'filesystem/FileCallback.h',
      'filesystem/FileEntry.cpp',
      'filesystem/FileEntry.h',
      'filesystem/FileEntrySync.cpp',
      'filesystem/FileEntrySync.h',
      'filesystem/FileSystemCallback.h',
      'filesystem/FileSystemCallbacks.cpp',
      'filesystem/FileSystemCallbacks.h',
      'filesystem/FileSystemClient.h',
      'filesystem/FileWriter.cpp',
      'filesystem/FileWriter.h',
      'filesystem/FileWriterBase.cpp',
      'filesystem/FileWriterBase.h',
      'filesystem/FileWriterBaseCallback.h',
      'filesystem/FileWriterCallback.h',
      'filesystem/FileWriterSync.cpp',
      'filesystem/FileWriterSync.h',
      'filesystem/HTMLInputElementFileSystem.cpp',
      'filesystem/HTMLInputElementFileSystem.h',
      'filesystem/InspectorFileSystemAgent.cpp',
      'filesystem/InspectorFileSystemAgent.h',
      'filesystem/LocalFileSystem.cpp',
      'filesystem/LocalFileSystem.h',
      'filesystem/Metadata.h',
      'filesystem/MetadataCallback.h',
      'filesystem/SyncCallbackHelper.h',
      'filesystem/WorkerGlobalScopeFileSystem.cpp',
      'filesystem/WorkerGlobalScopeFileSystem.h',
      'gamepad/Gamepad.cpp',
      'gamepad/Gamepad.h',
      'gamepad/GamepadButton.cpp',
      'gamepad/GamepadButton.h',
      'gamepad/GamepadDispatcher.cpp',
      'gamepad/GamepadDispatcher.h',
      'gamepad/GamepadEvent.cpp',
      'gamepad/GamepadEvent.h',
      'gamepad/GamepadList.cpp',
      'gamepad/GamepadList.h',
      'gamepad/NavigatorGamepad.cpp',
      'gamepad/NavigatorGamepad.h',
      'geofencing/CircularGeofencingRegion.cpp',
      'geofencing/CircularGeofencingRegion.h',
      'geofencing/Geofencing.cpp',
      'geofencing/Geofencing.h',
      'geofencing/GeofencingError.cpp',
      'geofencing/GeofencingError.h',
      'geofencing/GeofencingEvent.cpp',
      'geofencing/GeofencingEvent.h',
      'geofencing/GeofencingRegion.h',
      'geofencing/ServiceWorkerGlobalScopeGeofencing.h',
      'geofencing/ServiceWorkerRegistrationGeofencing.cpp',
      'geofencing/ServiceWorkerRegistrationGeofencing.h',
      'geofencing/WorkerNavigatorGeofencing.cpp',
      'geofencing/WorkerNavigatorGeofencing.h',
      'geolocation/Coordinates.cpp',
      'geolocation/Geolocation.cpp',
      'geolocation/GeolocationController.cpp',
      'geolocation/GeoNotifier.cpp',
      'geolocation/GeoNotifier.h',
      'geolocation/GeolocationWatchers.cpp',
      'geolocation/GeolocationWatchers.h',
      'geolocation/NavigatorGeolocation.cpp',
      'geolocation/NavigatorGeolocation.h',
      'indexeddb/DOMWindowIndexedDatabase.cpp',
      'indexeddb/DOMWindowIndexedDatabase.h',
      'indexeddb/IDBAny.cpp',
      'indexeddb/IDBAny.h',
      'indexeddb/IDBCursor.cpp',
      'indexeddb/IDBCursor.h',
      'indexeddb/IDBCursorWithValue.cpp',
      'indexeddb/IDBCursorWithValue.h',
      'indexeddb/IDBDatabase.cpp',
      'indexeddb/IDBDatabase.h',
      'indexeddb/IDBDatabaseCallbacks.cpp',
      'indexeddb/IDBDatabaseCallbacks.h',
      'indexeddb/IDBEventDispatcher.cpp',
      'indexeddb/IDBEventDispatcher.h',
      'indexeddb/IDBFactory.cpp',
      'indexeddb/IDBFactory.h',
      'indexeddb/IDBHistograms.h',
      'indexeddb/IDBIndex.cpp',
      'indexeddb/IDBIndex.h',
      'indexeddb/IDBKey.cpp',
      'indexeddb/IDBKey.h',
      'indexeddb/IDBKeyPath.cpp',
      'indexeddb/IDBKeyPath.h',
      'indexeddb/IDBKeyRange.cpp',
      'indexeddb/IDBKeyRange.h',
      'indexeddb/IDBMetadata.h',
      'indexeddb/IDBObjectStore.cpp',
      'indexeddb/IDBObjectStore.h',
      'indexeddb/IDBOpenDBRequest.cpp',
      'indexeddb/IDBOpenDBRequest.h',
      'indexeddb/IDBRequest.cpp',
      'indexeddb/IDBRequest.h',
      'indexeddb/IDBTracing.h',
      'indexeddb/IDBTransaction.cpp',
      'indexeddb/IDBTransaction.h',
      'indexeddb/IDBVersionChangeEvent.cpp',
      'indexeddb/IDBVersionChangeEvent.h',
      'indexeddb/IndexedDB.h',
      'indexeddb/IndexedDBClient.cpp',
      'indexeddb/IndexedDBClient.h',
      'indexeddb/InspectorIndexedDBAgent.cpp',
      'indexeddb/InspectorIndexedDBAgent.h',
      'indexeddb/WebIDBCallbacksImpl.cpp',
      'indexeddb/WebIDBCallbacksImpl.h',
      'indexeddb/WebIDBDatabaseCallbacksImpl.cpp',
      'indexeddb/WebIDBDatabaseCallbacksImpl.h',
      'indexeddb/WorkerGlobalScopeIndexedDatabase.cpp',
      'indexeddb/WorkerGlobalScopeIndexedDatabase.h',
      'mediasource/HTMLVideoElementMediaSource.cpp',
      'mediasource/HTMLVideoElementMediaSource.h',
      'mediasource/MediaSource.cpp',
      'mediasource/MediaSource.h',
      'mediasource/MediaSourceRegistry.cpp',
      'mediasource/MediaSourceRegistry.h',
      'mediasource/SourceBuffer.cpp',
      'mediasource/SourceBuffer.h',
      'mediasource/SourceBufferList.cpp',
      'mediasource/SourceBufferList.h',
      'mediasource/TrackDefault.cpp',
      'mediasource/TrackDefault.h',
      'mediasource/TrackDefaultList.cpp',
      'mediasource/TrackDefaultList.h',
      'mediasource/URLMediaSource.cpp',
      'mediasource/URLMediaSource.h',
      'mediasource/VideoPlaybackQuality.cpp',
      'mediasource/VideoPlaybackQuality.h',
      'mediastream/MediaConstraintsImpl.cpp',
      'mediastream/MediaConstraintsImpl.h',
      'mediastream/MediaDeviceInfo.cpp',
      'mediastream/MediaDeviceInfo.h',
      'mediastream/MediaDeviceInfoCallback.h',
      'mediastream/MediaDevicesRequest.cpp',
      'mediastream/MediaDevicesRequest.h',
      'mediastream/MediaStream.cpp',
      'mediastream/MediaStream.h',
      'mediastream/MediaStreamEvent.cpp',
      'mediastream/MediaStreamEvent.h',
      'mediastream/MediaStreamRegistry.cpp',
      'mediastream/MediaStreamRegistry.h',
      'mediastream/MediaStreamTrack.cpp',
      'mediastream/MediaStreamTrack.h',
      'mediastream/MediaStreamTrackEvent.cpp',
      'mediastream/MediaStreamTrackEvent.h',
      'mediastream/MediaStreamTrackSourcesCallback.h',
      'mediastream/MediaStreamTrackSourcesRequestImpl.cpp',
      'mediastream/MediaStreamTrackSourcesRequestImpl.h',
      'mediastream/NavigatorMediaStream.cpp',
      'mediastream/NavigatorMediaStream.h',
      'mediastream/NavigatorUserMediaError.cpp',
      'mediastream/NavigatorUserMediaError.h',
      'mediastream/NavigatorUserMediaErrorCallback.h',
      'mediastream/NavigatorUserMediaSuccessCallback.h',
      'mediastream/RTCDTMFSender.cpp',
      'mediastream/RTCDTMFSender.h',
      'mediastream/RTCDTMFToneChangeEvent.cpp',
      'mediastream/RTCDTMFToneChangeEvent.h',
      'mediastream/RTCDataChannel.cpp',
      'mediastream/RTCDataChannel.h',
      'mediastream/RTCDataChannelEvent.cpp',
      'mediastream/RTCDataChannelEvent.h',
      'mediastream/RTCErrorCallback.h',
      'mediastream/RTCIceCandidate.cpp',
      'mediastream/RTCIceCandidate.h',
      'mediastream/RTCIceCandidateEvent.cpp',
      'mediastream/RTCIceCandidateEvent.h',
      'mediastream/RTCPeerConnection.cpp',
      'mediastream/RTCPeerConnection.h',
      'mediastream/RTCSessionDescription.cpp',
      'mediastream/RTCSessionDescription.h',
      'mediastream/RTCSessionDescriptionCallback.h',
      'mediastream/RTCSessionDescriptionRequestImpl.cpp',
      'mediastream/RTCSessionDescriptionRequestImpl.h',
      'mediastream/RTCStatsReport.cpp',
      'mediastream/RTCStatsReport.h',
      'mediastream/RTCStatsRequestImpl.cpp',
      'mediastream/RTCStatsRequestImpl.h',
      'mediastream/RTCStatsResponse.cpp',
      'mediastream/RTCStatsResponse.h',
      'mediastream/RTCVoidRequestImpl.cpp',
      'mediastream/RTCVoidRequestImpl.h',
      'mediastream/SourceInfo.cpp',
      'mediastream/SourceInfo.h',
      'mediastream/URLMediaStream.cpp',
      'mediastream/URLMediaStream.h',
      'mediastream/UserMediaClient.h',
      'mediastream/UserMediaController.cpp',
      'mediastream/UserMediaController.h',
      'mediastream/UserMediaRequest.cpp',
      'mediastream/UserMediaRequest.h',
      'navigatorconnect/AcceptConnectionObserver.cpp',
      'navigatorconnect/AcceptConnectionObserver.h',
      'navigatorconnect/CrossOriginConnectEvent.cpp',
      'navigatorconnect/CrossOriginConnectEvent.h',
      'navigatorconnect/CrossOriginServiceWorkerClient.cpp',
      'navigatorconnect/CrossOriginServiceWorkerClient.h',
      'navigatorconnect/NavigatorConnect.cpp',
      'navigatorconnect/NavigatorConnect.h',
      'navigatorconnect/ServiceWorkerGlobalScopeNavigatorConnect.h',
      'navigatorconnect/WorkerNavigatorConnect.h',
      'navigatorcontentutils/NavigatorContentUtils.cpp',
      'navigatorcontentutils/NavigatorContentUtils.h',
      'navigatorcontentutils/NavigatorContentUtilsClient.h',
      'netinfo/NavigatorNetworkInformation.cpp',
      'netinfo/NavigatorNetworkInformation.h',
      'netinfo/NetworkInformation.cpp',
      'netinfo/NetworkInformation.h',
      'netinfo/WorkerNavigatorNetworkInformation.cpp',
      'netinfo/WorkerNavigatorNetworkInformation.h',
      'notifications/Notification.cpp',
      'notifications/Notification.h',
      'notifications/NotificationEvent.cpp',
      'notifications/NotificationEvent.h',
      'notifications/NotificationPermissionCallback.h',
      'notifications/NotificationPermissionClient.cpp',
      'notifications/NotificationPermissionClient.h',
      'notifications/ServiceWorkerGlobalScopeNotifications.h',
      'notifications/ServiceWorkerRegistrationNotifications.cpp',
      'notifications/ServiceWorkerRegistrationNotifications.h',
      'performance/SharedWorkerPerformance.cpp',
      'performance/WorkerGlobalScopePerformance.cpp',
      'performance/WorkerGlobalScopePerformance.h',
      'performance/WorkerPerformance.cpp',
      'performance/WorkerPerformance.h',
      'permissions/Permissions.cpp',
      'permissions/Permissions.h',
      'permissions/PermissionStatus.cpp',
      'permissions/PermissionStatus.h',
      'presentation/NavigatorPresentation.cpp',
      'presentation/NavigatorPresentation.h',
      'presentation/Presentation.cpp',
      'presentation/Presentation.h',
      'presentation/PresentationSession.cpp',
      'presentation/PresentationSession.h',
      'push_messaging/PushController.cpp',
      'push_messaging/PushController.h',
      'push_messaging/PushError.cpp',
      'push_messaging/PushError.h',
      'push_messaging/PushEvent.cpp',
      'push_messaging/PushEvent.h',
      'push_messaging/PushManager.cpp',
      'push_messaging/PushManager.h',
      'push_messaging/PushMessageData.cpp',
      'push_messaging/PushMessageData.h',
      'push_messaging/PushPermissionStatusCallbacks.cpp',
      'push_messaging/PushPermissionStatusCallbacks.h',
      'push_messaging/PushSubscription.cpp',
      'push_messaging/PushSubscription.h',
      'push_messaging/PushSubscriptionCallbacks.cpp',
      'push_messaging/PushSubscriptionCallbacks.h',
      'push_messaging/ServiceWorkerGlobalScopePush.h',
      'push_messaging/ServiceWorkerRegistrationPush.cpp',
      'push_messaging/ServiceWorkerRegistrationPush.h',
      'quota/DOMWindowQuota.cpp',
      'quota/DOMWindowQuota.h',
      'quota/DeprecatedStorageInfo.cpp',
      'quota/DeprecatedStorageInfo.h',
      'quota/DeprecatedStorageQuota.cpp',
      'quota/DeprecatedStorageQuota.h',
      'quota/DeprecatedStorageQuotaCallbacksImpl.cpp',
      'quota/DeprecatedStorageQuotaCallbacksImpl.h',
      'quota/NavigatorStorageQuota.cpp',
      'quota/NavigatorStorageQuota.h',
      'quota/StorageErrorCallback.cpp',
      'quota/StorageErrorCallback.h',
      'quota/StorageInfo.cpp',
      'quota/StorageInfo.h',
      'quota/StorageQuota.cpp',
      'quota/StorageQuota.h',
      'quota/StorageQuotaCallback.h',
      'quota/StorageQuotaCallbacksImpl.cpp',
      'quota/StorageQuotaCallbacksImpl.h',
      'quota/StorageQuotaClient.cpp',
      'quota/StorageQuotaClient.h',
      'quota/StorageUsageCallback.h',
      'quota/WorkerNavigatorStorageQuota.cpp',
      'quota/WorkerNavigatorStorageQuota.h',
      'screen_orientation/LockOrientationCallback.cpp',
      'screen_orientation/LockOrientationCallback.h',
      'screen_orientation/ScreenScreenOrientation.cpp',
      'screen_orientation/ScreenScreenOrientation.h',
      'screen_orientation/ScreenOrientation.cpp',
      'screen_orientation/ScreenOrientation.h',
      'screen_orientation/ScreenOrientationController.cpp',
      'screen_orientation/ScreenOrientationController.h',
      'screen_orientation/ScreenOrientationDispatcher.cpp',
      'screen_orientation/ScreenOrientationDispatcher.h',
      'serviceworkers/Cache.cpp',
      'serviceworkers/Cache.h',
      'serviceworkers/CacheStorage.cpp',
      'serviceworkers/CacheStorage.h',
      'serviceworkers/ExtendableEvent.cpp',
      'serviceworkers/ExtendableEvent.h',
      'serviceworkers/FetchEvent.cpp',
      'serviceworkers/FetchEvent.h',
      'serviceworkers/InstallEvent.cpp',
      'serviceworkers/InstallEvent.h',
      'serviceworkers/InspectorServiceWorkerCacheAgent.cpp',
      'serviceworkers/InspectorServiceWorkerCacheAgent.h',
      'serviceworkers/NavigatorServiceWorker.cpp',
      'serviceworkers/NavigatorServiceWorker.h',
      'serviceworkers/RespondWithObserver.cpp',
      'serviceworkers/RespondWithObserver.h',
      'serviceworkers/ServiceWorker.cpp',
      'serviceworkers/ServiceWorker.h',
      'serviceworkers/ServiceWorkerClient.cpp',
      'serviceworkers/ServiceWorkerClient.h',
      'serviceworkers/ServiceWorkerClients.cpp',
      'serviceworkers/ServiceWorkerClients.h',
      'serviceworkers/ServiceWorkerContainer.cpp',
      'serviceworkers/ServiceWorkerContainer.h',
      'serviceworkers/ServiceWorkerContainerClient.cpp',
      'serviceworkers/ServiceWorkerContainerClient.h',
      'serviceworkers/ServiceWorkerWindowClient.cpp',
      'serviceworkers/ServiceWorkerWindowClient.h',
      'serviceworkers/ServiceWorkerError.cpp',
      'serviceworkers/ServiceWorkerError.h',
      'serviceworkers/ServiceWorkerGlobalScope.cpp',
      'serviceworkers/ServiceWorkerGlobalScope.h',
      'serviceworkers/ServiceWorkerGlobalScopeClient.cpp',
      'serviceworkers/ServiceWorkerGlobalScopeClient.h',
      'serviceworkers/ServiceWorkerRegistration.cpp',
      'serviceworkers/ServiceWorkerRegistration.h',
      'serviceworkers/ServiceWorkerThread.cpp',
      'serviceworkers/ServiceWorkerThread.h',
      'serviceworkers/WaitUntilObserver.cpp',
      'speech/DOMWindowSpeechSynthesis.cpp',
      'speech/DOMWindowSpeechSynthesis.h',
      'speech/SpeechGrammar.cpp',
      'speech/SpeechGrammar.h',
      'speech/SpeechGrammarList.cpp',
      'speech/SpeechGrammarList.h',
      'speech/SpeechRecognition.cpp',
      'speech/SpeechRecognition.h',
      'speech/SpeechRecognitionAlternative.cpp',
      'speech/SpeechRecognitionAlternative.h',
      'speech/SpeechRecognitionClient.h',
      'speech/SpeechRecognitionController.cpp',
      'speech/SpeechRecognitionController.h',
      'speech/SpeechRecognitionError.cpp',
      'speech/SpeechRecognitionError.h',
      'speech/SpeechRecognitionEvent.cpp',
      'speech/SpeechRecognitionEvent.h',
      'speech/SpeechRecognitionResult.cpp',
      'speech/SpeechRecognitionResult.h',
      'speech/SpeechRecognitionResultList.cpp',
      'speech/SpeechRecognitionResultList.h',
      'speech/SpeechSynthesis.cpp',
      'speech/SpeechSynthesis.h',
      'speech/SpeechSynthesisEvent.cpp',
      'speech/SpeechSynthesisEvent.h',
      'speech/SpeechSynthesisUtterance.cpp',
      'speech/SpeechSynthesisUtterance.h',
      'speech/SpeechSynthesisVoice.cpp',
      'speech/SpeechSynthesisVoice.h',
      'vibration/NavigatorVibration.cpp',
      'vibration/NavigatorVibration.h',
      'webaudio/AnalyserNode.cpp',
      'webaudio/AnalyserNode.h',
      'webaudio/AsyncAudioDecoder.cpp',
      'webaudio/AsyncAudioDecoder.h',
      'webaudio/AudioBasicInspectorNode.cpp',
      'webaudio/AudioBasicInspectorNode.h',
      'webaudio/AudioBasicProcessorNode.cpp',
      'webaudio/AudioBasicProcessorNode.h',
      'webaudio/AudioBuffer.cpp',
      'webaudio/AudioBuffer.h',
      'webaudio/AudioBufferCallback.h',
      'webaudio/AudioBufferSourceNode.cpp',
      'webaudio/AudioBufferSourceNode.h',
      'webaudio/AudioContext.cpp',
      'webaudio/AudioContext.h',
      'webaudio/AudioDestinationNode.cpp',
      'webaudio/AudioDestinationNode.h',
      'webaudio/AudioListener.cpp',
      'webaudio/AudioListener.h',
      'webaudio/AudioNode.cpp',
      'webaudio/AudioNode.h',
      'webaudio/AudioNodeInput.cpp',
      'webaudio/AudioNodeInput.h',
      'webaudio/AudioNodeOutput.cpp',
      'webaudio/AudioNodeOutput.h',
      'webaudio/AudioParam.cpp',
      'webaudio/AudioParam.h',
      'webaudio/AudioParamTimeline.cpp',
      'webaudio/AudioParamTimeline.h',
      'webaudio/AudioProcessingEvent.cpp',
      'webaudio/AudioProcessingEvent.h',
      'webaudio/AudioScheduledSourceNode.cpp',
      'webaudio/AudioScheduledSourceNode.h',
      'webaudio/AudioSourceNode.h',
      'webaudio/AudioSummingJunction.cpp',
      'webaudio/AudioSummingJunction.h',
      'webaudio/BiquadDSPKernel.cpp',
      'webaudio/BiquadDSPKernel.h',
      'webaudio/BiquadFilterNode.cpp',
      'webaudio/BiquadFilterNode.h',
      'webaudio/BiquadProcessor.cpp',
      'webaudio/BiquadProcessor.h',
      'webaudio/ChannelMergerNode.cpp',
      'webaudio/ChannelMergerNode.h',
      'webaudio/ChannelSplitterNode.cpp',
      'webaudio/ChannelSplitterNode.h',
      'webaudio/ConvolverNode.cpp',
      'webaudio/ConvolverNode.h',
      'webaudio/DefaultAudioDestinationNode.cpp',
      'webaudio/DefaultAudioDestinationNode.h',
      'webaudio/DelayDSPKernel.cpp',
      'webaudio/DelayDSPKernel.h',
      'webaudio/DelayNode.cpp',
      'webaudio/DelayNode.h',
      'webaudio/DelayProcessor.cpp',
      'webaudio/DelayProcessor.h',
      'webaudio/DynamicsCompressorNode.cpp',
      'webaudio/DynamicsCompressorNode.h',
      'webaudio/GainNode.cpp',
      'webaudio/GainNode.h',
      'webaudio/MediaElementAudioSourceNode.cpp',
      'webaudio/MediaElementAudioSourceNode.h',
      'webaudio/MediaStreamAudioDestinationNode.cpp',
      'webaudio/MediaStreamAudioDestinationNode.h',
      'webaudio/MediaStreamAudioSourceNode.cpp',
      'webaudio/MediaStreamAudioSourceNode.h',
      'webaudio/OfflineAudioCompletionEvent.cpp',
      'webaudio/OfflineAudioCompletionEvent.h',
      'webaudio/OfflineAudioContext.cpp',
      'webaudio/OfflineAudioContext.h',
      'webaudio/OfflineAudioDestinationNode.cpp',
      'webaudio/OfflineAudioDestinationNode.h',
      'webaudio/OscillatorNode.cpp',
      'webaudio/OscillatorNode.h',
      'webaudio/PannerNode.cpp',
      'webaudio/PannerNode.h',
      'webaudio/PeriodicWave.cpp',
      'webaudio/PeriodicWave.h',
      'webaudio/RealtimeAnalyser.cpp',
      'webaudio/RealtimeAnalyser.h',
      'webaudio/ScriptProcessorNode.cpp',
      'webaudio/ScriptProcessorNode.h',
      'webaudio/StereoPannerNode.cpp',
      'webaudio/StereoPannerNode.h',
      'webaudio/WaveShaperDSPKernel.cpp',
      'webaudio/WaveShaperDSPKernel.h',
      'webaudio/WaveShaperNode.cpp',
      'webaudio/WaveShaperNode.h',
      'webaudio/WaveShaperProcessor.cpp',
      'webaudio/WaveShaperProcessor.h',
      'webdatabase/ChangeVersionData.h',
      'webdatabase/ChangeVersionWrapper.cpp',
      'webdatabase/ChangeVersionWrapper.h',
      'webdatabase/DOMWindowWebDatabase.cpp',
      'webdatabase/DOMWindowWebDatabase.h',
      'webdatabase/Database.cpp',
      'webdatabase/Database.h',
      'webdatabase/DatabaseAuthorizer.cpp',
      'webdatabase/DatabaseAuthorizer.h',
      'webdatabase/DatabaseBasicTypes.h',
      'webdatabase/DatabaseCallback.h',
      'webdatabase/DatabaseClient.cpp',
      'webdatabase/DatabaseClient.h',
      'webdatabase/DatabaseContext.cpp',
      'webdatabase/DatabaseContext.h',
      'webdatabase/DatabaseError.h',
      'webdatabase/DatabaseManager.cpp',
      'webdatabase/DatabaseManager.h',
      'webdatabase/DatabaseTask.cpp',
      'webdatabase/DatabaseTask.h',
      'webdatabase/DatabaseThread.cpp',
      'webdatabase/DatabaseThread.h',
      'webdatabase/DatabaseTracker.cpp',
      'webdatabase/DatabaseTracker.h',
      'webdatabase/InspectorDatabaseAgent.cpp',
      'webdatabase/InspectorDatabaseAgent.h',
      'webdatabase/InspectorDatabaseResource.cpp',
      'webdatabase/InspectorDatabaseResource.h',
      'webdatabase/QuotaTracker.cpp',
      'webdatabase/QuotaTracker.h',
      'webdatabase/SQLError.cpp',
      'webdatabase/SQLError.h',
      'webdatabase/SQLResultSet.cpp',
      'webdatabase/SQLResultSetRowList.cpp',
      'webdatabase/SQLStatement.cpp',
      'webdatabase/SQLStatement.h',
      'webdatabase/SQLStatementBackend.cpp',
      'webdatabase/SQLStatementBackend.h',
      'webdatabase/SQLTransaction.cpp',
      'webdatabase/SQLTransaction.h',
      'webdatabase/SQLTransactionBackend.cpp',
      'webdatabase/SQLTransactionBackend.h',
      'webdatabase/SQLTransactionClient.cpp',
      'webdatabase/SQLTransactionClient.h',
      'webdatabase/SQLTransactionCoordinator.cpp',
      'webdatabase/SQLTransactionCoordinator.h',
      'webdatabase/SQLTransactionState.h',
      'webdatabase/SQLTransactionStateMachine.cpp',
      'webdatabase/SQLTransactionStateMachine.h',
      'webdatabase/sqlite/SQLValue.cpp',
      'webdatabase/sqlite/SQLiteAuthorizer.cpp',
      'webdatabase/sqlite/SQLiteDatabase.cpp',
      'webdatabase/sqlite/SQLiteDatabase.h',
      'webdatabase/sqlite/SQLiteFileSystem.cpp',
      'webdatabase/sqlite/SQLiteFileSystem.h',
      'webdatabase/sqlite/SQLiteFileSystemPosix.cpp',
      'webdatabase/sqlite/SQLiteFileSystemWin.cpp',
      'webdatabase/sqlite/SQLiteStatement.cpp',
      'webdatabase/sqlite/SQLiteStatement.h',
      'webdatabase/sqlite/SQLiteTransaction.cpp',
      'webdatabase/sqlite/SQLiteTransaction.h',
      'webmidi/MIDIAccess.cpp',
      'webmidi/MIDIAccess.h',
      'webmidi/MIDIAccessInitializer.cpp',
      'webmidi/MIDIAccessInitializer.h',
      'webmidi/MIDIAccessor.cpp',
      'webmidi/MIDIAccessor.h',
      'webmidi/MIDIAccessorClient.h',
      'webmidi/MIDIClient.h',
      'webmidi/MIDIClientMock.cpp',
      'webmidi/MIDIClientMock.h',
      'webmidi/MIDIConnectionEvent.cpp',
      'webmidi/MIDIConnectionEvent.h',
      'webmidi/MIDIController.cpp',
      'webmidi/MIDIController.h',
      'webmidi/MIDIErrorCallback.h',
      'webmidi/MIDIInput.cpp',
      'webmidi/MIDIInput.h',
      'webmidi/MIDIInputMap.cpp',
      'webmidi/MIDIInputMap.h',
      'webmidi/MIDIMessageEvent.cpp',
      'webmidi/MIDIMessageEvent.h',
      'webmidi/MIDIPortMap.h',
      'webmidi/MIDIOutput.cpp',
      'webmidi/MIDIOutput.h',
      'webmidi/MIDIOutputMap.cpp',
      'webmidi/MIDIOutputMap.h',
      'webmidi/MIDIPort.cpp',
      'webmidi/MIDIPort.h',
      'webmidi/MIDISuccessCallback.h',
      'webmidi/NavigatorWebMIDI.cpp',
      'webmidi/NavigatorWebMIDI.h',
      'websockets/CloseEvent.cpp',
      'websockets/CloseEvent.h',
      'websockets/DOMWebSocket.cpp',
      'websockets/DOMWebSocket.h',
      'websockets/DocumentWebSocketChannel.cpp',
      'websockets/DocumentWebSocketChannel.h',
      'websockets/WebSocketChannel.cpp',
      'websockets/WebSocketChannel.h',
      'websockets/WebSocketChannelClient.h',
      'websockets/WebSocketFrame.cpp',
      'websockets/WebSocketFrame.h',
      'websockets/WorkerWebSocketChannel.cpp',
      'websockets/WorkerWebSocketChannel.h',
    ],
    # 'partial interface' or target (right side of) 'implements'
    'modules_testing_dependency_idl_files' : [
      'geolocation/testing/InternalsGeolocation.idl',
      'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
      'serviceworkers/testing/InternalsServiceWorker.idl',
      'speech/testing/InternalsSpeechSynthesis.idl',
      'vibration/testing/InternalsVibration.idl',
    ],
    'modules_testing_files': [
      'geolocation/testing/GeolocationClientMock.cpp',
      'geolocation/testing/GeolocationClientMock.h',
      'geolocation/testing/InternalsGeolocation.cpp',
      'geolocation/testing/InternalsGeolocation.h',
      'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp',
      'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h',
      'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp',
      'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h',
      'serviceworkers/testing/InternalsServiceWorker.cpp',
      'serviceworkers/testing/InternalsServiceWorker.h',
      'speech/testing/InternalsSpeechSynthesis.cpp',
      'speech/testing/InternalsSpeechSynthesis.h',
      'speech/testing/PlatformSpeechSynthesizerMock.cpp',
      'speech/testing/PlatformSpeechSynthesizerMock.h',
      'vibration/testing/InternalsVibration.cpp',
      'vibration/testing/InternalsVibration.h',
    ],
    'modules_unittest_files': [
      'fetch/BodyStreamBufferTest.cpp',
      'fetch/FetchResponseDataTest.cpp',
      'fetch/RequestTest.cpp',
      'fetch/ResponseTest.cpp',
      'filesystem/DOMFileSystemBaseTest.cpp',
      'indexeddb/IDBKeyPathTest.cpp',
      'indexeddb/IDBRequestTest.cpp',
      'indexeddb/IDBTransactionTest.cpp',
      'serviceworkers/CacheTest.cpp',
      'serviceworkers/ServiceWorkerContainerTest.cpp',
      'websockets/DOMWebSocketTest.cpp',
      'websockets/DocumentWebSocketChannelTest.cpp',
    ],
  },
}