-
Notifications
You must be signed in to change notification settings - Fork 3
/
WebCore.gypi
8427 lines (8424 loc) · 441 KB
/
WebCore.gypi
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
{
'variables': {
'project_dir': ['.'],
# These headers are part of WebCore's private API in the Apple Mac build.
'webcore_privateheader_files': [
'Modules/geolocation/Geolocation.h',
'Modules/geolocation/GeolocationController.h',
'Modules/geolocation/GeolocationError.h',
'Modules/geolocation/GeolocationPosition.h',
'Modules/geolocation/Geoposition.h',
'Modules/geolocation/PositionCallback.h',
'Modules/geolocation/PositionError.h',
'Modules/geolocation/PositionErrorCallback.h',
'Modules/geolocation/PositionOptions.h',
'Modules/notifications/NotificationClient.h',
'Modules/notifications/NotificationController.h',
'Modules/webdatabase/AbstractDatabase.h',
'Modules/webdatabase/Database.h',
'Modules/webdatabase/DatabaseDetails.h',
'Modules/webdatabase/DatabaseTracker.h',
'Modules/webdatabase/DatabaseTrackerClient.h',
'Modules/webdatabase/SQLError.h',
'Modules/webdatabase/SQLResultSet.h',
'Modules/webdatabase/SQLResultSetRowList.h',
'Modules/webdatabase/SQLStatementCallback.h',
'Modules/webdatabase/SQLStatementErrorCallback.h',
'Modules/webdatabase/SQLTransaction.h',
'Modules/webdatabase/SQLTransactionCallback.h',
'Modules/webdatabase/SQLTransactionErrorCallback.h',
'accessibility/AXObjectCache.h',
'accessibility/AccessibilityObject.h',
'bindings/ScriptControllerBase.h',
'bindings/js/DOMObjectHashTableMap.h',
'bindings/js/DOMWrapperWorld.h',
'bindings/js/GCController.h',
'bindings/js/JSDOMBinding.h',
'bindings/js/JSDOMGlobalObject.h',
'bindings/js/JSDOMWindowBase.h',
'bindings/js/JSDOMWindowShell.h',
'bindings/js/JSDOMWrapper.h',
'bindings/js/JSDictionary.h',
'bindings/js/JSNodeCustom.h',
'bindings/js/JSPluginElementFunctions.h',
'bindings/js/ScriptCachedFrameData.h',
'bindings/js/ScriptController.h',
'bindings/js/ScriptDebugServer.h',
'bindings/js/ScriptInstance.h',
'bindings/js/ScriptObject.h',
'bindings/js/ScriptProfile.h',
'bindings/js/ScriptProfileNode.h',
'bindings/js/ScriptProfiler.h',
'bindings/js/ScriptState.h',
'bindings/js/ScriptValue.h',
'bindings/js/ScriptWrappable.h',
'bindings/js/SerializedScriptValue.h',
'bindings/objc/DOM.h',
'bindings/objc/DOMCSS.h',
'bindings/objc/DOMCore.h',
'bindings/objc/DOMEventException.h',
'bindings/objc/DOMEvents.h',
'bindings/objc/DOMException.h',
'bindings/objc/DOMExtensions.h',
'bindings/objc/DOMHTML.h',
'bindings/objc/DOMObject.h',
'bindings/objc/DOMPrivate.h',
'bindings/objc/DOMRangeException.h',
'bindings/objc/DOMRanges.h',
'bindings/objc/DOMSVG.h',
'bindings/objc/DOMSVGException.h',
'bindings/objc/DOMStylesheets.h',
'bindings/objc/DOMTraversal.h',
'bindings/objc/DOMViews.h',
'bindings/objc/DOMXPath.h',
'bindings/objc/DOMXPathException.h',
'bindings/objc/ExceptionHandlers.h',
'bindings/objc/WebScriptObject.h',
'bindings/objc/WebScriptObjectPrivate.h',
'bridge/Bridge.h',
'bridge/IdentifierRep.h',
'bridge/jsc/BridgeJSC.h',
'bridge/npruntime_impl.h',
'bridge/npruntime_internal.h',
'bridge/runtime_method.h',
'bridge/runtime_object.h',
'bridge/runtime_root.h',
'css/BasicShapeFunctions.h',
'css/CSSBasicShapes.h',
'css/CSSComputedStyleDeclaration.h',
'css/CSSCursorImageValue.h',
'css/CSSHelper.h',
'css/CSSImageGeneratorValue.h',
'css/CSSImageSetValue.h',
'css/CSSImageValue.h',
'css/CSSLineBoxContainValue.h',
'css/CSSParserValues.h',
'css/CSSPrimitiveValue.h',
'css/CSSProperty.h',
'css/CSSPropertySourceData.h',
'css/CSSReflectValue.h',
'css/CSSReflectionDirection.h',
'css/CSSSelector.h',
'css/CSSStyleDeclaration.h',
'css/CSSValue.h',
'css/CSSValueList.h',
'css/LengthFunctions.h',
'css/Pair.h',
'css/WebKitCSSFilterValue.h',
'css/WebKitCSSShaderValue.h',
'css/WebKitCSSTransformValue.h',
'editing/ApplyBlockElementCommand.h',
'editing/CompositeEditCommand.h',
'editing/DeleteSelectionCommand.h',
'editing/DictationAlternative.h',
'editing/EditAction.h',
'editing/EditCommand.h',
'editing/EditingBehavior.h',
'editing/EditingBehaviorTypes.h',
'editing/EditingBoundary.h',
'editing/EditingStyle.h',
'editing/Editor.h',
'editing/EditorDeleteAction.h',
'editing/EditorInsertAction.h',
'editing/FindOptions.h',
'editing/FrameSelection.h',
'editing/HTMLInterchange.h',
'editing/MoveSelectionCommand.h',
'editing/ReplaceSelectionCommand.h',
'editing/SimplifyMarkupCommand.h',
'editing/SmartReplace.h',
'editing/SpellChecker.h',
'editing/SurroundingText.cpp',
'editing/SurroundingText.h',
'editing/TextAffinity.h',
'editing/TextGranularity.h',
'editing/TextIterator.h',
'editing/TypingCommand.h',
'editing/VisiblePosition.h',
'editing/VisibleSelection.h',
'editing/WritingDirection.h',
'editing/htmlediting.h',
'editing/markup.h',
'editing/visible_units.h',
'history/BackForwardController.h',
'history/BackForwardList.h',
'history/BackForwardListImpl.h',
'history/CachedFrame.h',
'history/CachedFramePlatformData.h',
'history/CachedPage.h',
'history/HistoryItem.h',
'history/PageCache.h',
'history/cf/HistoryPropertyList.h',
'inspector/InspectorAgent.h',
'inspector/InspectorBaseAgent.h',
'inspector/InspectorClient.h',
'inspector/InspectorController.h',
'inspector/InspectorDOMAgent.h',
'inspector/InspectorFrontendClient.h',
'inspector/InspectorFrontendClientLocal.h',
'inspector/InspectorValues.h',
'inspector/ScriptBreakpoint.h',
'inspector/ScriptDebugListener.h',
'loader/CrossOriginPreflightResultCache.h',
'loader/DocumentLoadTiming.h',
'loader/DocumentLoader.h',
'loader/DocumentWriter.h',
'loader/FormState.h',
'loader/FormSubmission.h',
'loader/FrameLoader.h',
'loader/FrameLoaderClient.h',
'loader/FrameLoaderStateMachine.h',
'loader/FrameLoaderTypes.h',
'loader/FrameLoadRequest.h',
'loader/FrameNetworkingContext.h',
'loader/HistoryController.h',
'loader/NavigationAction.h',
'loader/NavigationScheduler.h',
'loader/NetscapePlugInStreamLoader.h',
'loader/PolicyCallback.h',
'loader/PolicyChecker.h',
'loader/ProgressTracker.h',
'loader/ResourceBuffer.h',
'loader/ResourceLoadNotifier.h',
'loader/ResourceLoadScheduler.h',
'loader/ResourceLoader.h',
'loader/ResourceLoaderOptions.h',
'loader/SubframeLoader.h',
'loader/SubresourceLoader.h',
'loader/SubstituteData.cpp',
'loader/SubstituteData.h',
'loader/SubstituteResource.h',
'loader/TextResourceDecoder.h',
'loader/ThreadableLoader.h',
'loader/ThreadableLoaderClient.h',
'loader/appcache/ApplicationCache.h',
'loader/appcache/ApplicationCacheStorage.h',
'loader/archive/Archive.h',
'loader/archive/ArchiveResource.h',
'loader/archive/cf/LegacyWebArchive.h',
'loader/archive/mhtml/MHTMLArchive.h',
'loader/archive/mhtml/MHTMLParser.h',
'loader/cache/CachePolicy.h',
'loader/cache/CachedImage.h',
'loader/cache/CachedImageClient.h',
'loader/cache/CachedRawResource.h',
'loader/cache/CachedResource.h',
'loader/cache/CachedResourceClient.h',
'loader/cache/CachedResourceHandle.h',
'loader/cache/CachedResourceLoader.h',
'loader/cache/CachedShader.h',
'loader/cache/CachedStyleSheetClient.h',
'loader/cache/MemoryCache.h',
'loader/icon/IconController.h',
'loader/icon/IconDatabase.h',
'loader/icon/IconDatabaseBase.h',
'loader/icon/IconDatabaseClient.h',
'loader/mac/LoaderNSURLExtras.h',
'page/Chrome.h',
'page/ChromeClient.h',
'page/Console.h',
'page/ConsoleTypes.h',
'page/ContentSecurityPolicy.h',
'page/ContextMenuClient.h',
'page/ContextMenuController.h',
'page/Coordinates.h',
'page/DOMSecurityPolicy.h',
'page/DOMWindow.h',
'page/DOMWindowExtension.h',
'page/DragActions.h',
'page/DragClient.h',
'page/DragController.h',
'page/DragState.h',
'page/EditorClient.h',
'page/EventHandler.h',
'page/FeatureObserver.h',
'page/FocusController.h',
'page/FocusDirection.h',
'page/Frame.h',
'page/FrameTree.h',
'page/FrameView.h',
'page/GeolocationClient.h',
'page/GroupSettings.h',
'page/MediaCanStartListener.h',
'page/MemoryInfo.h',
'page/Page.h',
'page/PageGroup.h',
'page/PagePopup.h',
'page/PagePopupDriver.h',
'page/PageSerializer.h',
'page/PageVisibilityState.h',
'page/PrintContext.h',
'page/SecurityOrigin.h',
'page/SecurityOriginHash.h',
'page/SecurityPolicy.h',
'page/Settings.h',
'page/SpatialNavigation.h',
'page/UserContentTypes.h',
'page/UserContentURLPattern.h',
'page/UserScript.h',
'page/UserScriptTypes.h',
'page/UserStyleSheet.h',
'page/UserStyleSheetTypes.h',
'page/ValidationMessageClient.h',
'page/WebCoreKeyboardUIMode.h',
'page/WindowFeatures.h',
'page/WindowFocusAllowedIndicator.h',
'page/animation/AnimationController.h',
'page/mac/WebCoreFrameView.h',
'platform/Clock.h',
'platform/ColorChooser.h',
'platform/ColorChooserClient.h',
'platform/ContextMenu.h',
'platform/ContextMenuItem.h',
'platform/Cookie.h',
'platform/CookieJar.h',
'platform/CookiesStrategy.h',
'platform/Cursor.h',
'platform/DateComponents.h',
'platform/Decimal.h',
'platform/DragData.h',
'platform/DragImage.h',
'platform/EventTracer.h',
'platform/FileChooser.h',
'platform/FileStream.h',
'platform/FileStreamClient.h',
'platform/FileSystem.h',
'platform/HostWindow.h',
'platform/HistogramSupport.h',
'platform/KURL.h',
'platform/KURLHash.h',
'platform/Language.h',
'platform/LayoutTestSupport.cpp',
'platform/LayoutTestSupport.h',
'platform/Length.h',
'platform/LengthBox.h',
'platform/LengthSize.h',
'platform/LinkHash.h',
'platform/LocalizedStrings.h',
'platform/Logging.h',
'platform/MemoryPressureHandler.h',
'platform/MemoryUsageSupport.h',
'platform/MIMETypeRegistry.h',
'platform/NotImplemented.h',
'platform/PlatformEvent.cpp',
'platform/PlatformEvent.h',
'platform/PlatformGestureEvent.h',
'platform/PlatformInstrumentation.cpp',
'platform/PlatformInstrumentation.h',
'platform/PlatformKeyboardEvent.h',
'platform/PlatformMenuDescription.h',
'platform/PlatformMouseEvent.h',
'platform/PlatformScreen.h',
'platform/PlatformStrategies.h',
'platform/PlatformWheelEvent.h',
'platform/PopupMenu.h',
'platform/PopupMenuClient.h',
'platform/PopupMenuStyle.h',
'platform/PurgePriority.h',
'platform/RuntimeApplicationChecks.h',
'platform/RefCountedSupplement.h',
'platform/SchemeRegistry.h',
'platform/ScrollTypes.h',
'platform/ScrollView.h',
'platform/ScrollableArea.h',
'platform/Scrollbar.h',
'platform/ScrollbarTheme.h',
'platform/ScrollbarThemeClient.h',
'platform/SearchPopupMenu.h',
'platform/SharedBuffer.h',
'platform/SharedBufferChunkReader.h',
'platform/StatsCounter.h',
'platform/Supplementable.h',
'platform/SystemTime.h',
'platform/Theme.h',
'platform/ThemeTypes.h',
'platform/ThreadCheck.h',
'platform/ThreadGlobalData.h',
'platform/Timer.h',
'platform/TreeShared.h',
'platform/DateTimeChooser.h',
'platform/DateTimeChooserClient.h',
'platform/VisitedLinkStrategy.h',
'platform/VisitedLinks.h',
'platform/Widget.h',
'platform/WindowsKeyboardCodes.h',
'platform/animation/Animation.h',
'platform/animation/AnimationList.h',
'platform/animation/AnimationUtilities.h',
'platform/animation/TimingFunction.h',
'platform/cf/BinaryPropertyList.h',
'platform/cf/SchedulePair.h',
'platform/graphics/BitmapImage.h',
'platform/graphics/Color.h',
'platform/graphics/ColorSpace.h',
'platform/graphics/DashArray.h',
'platform/graphics/FloatPoint.h',
'platform/graphics/FloatPoint3D.h',
'platform/graphics/FloatQuad.h',
'platform/graphics/FloatRect.h',
'platform/graphics/FloatSize.h',
'platform/graphics/Font.h',
'platform/graphics/FontBaseline.h',
'platform/graphics/FontCache.h',
'platform/graphics/FontData.h',
'platform/graphics/FontDescription.h',
'platform/graphics/FontFallbackList.h',
'platform/graphics/FontFamily.h',
'platform/graphics/FontFeatureSettings.h',
'platform/graphics/FontMetrics.h',
'platform/graphics/FontOrientation.h',
'platform/graphics/FontRenderingMode.h',
'platform/graphics/FontSelector.h',
'platform/graphics/FontSmoothingMode.h',
'platform/graphics/FontTraitsMask.h',
'platform/graphics/FontWidthVariant.h',
'platform/graphics/FractionalLayoutRect.h',
'platform/graphics/FractionalLayoutSize.h',
'platform/graphics/Generator.h',
'platform/graphics/Glyph.h',
'platform/graphics/GlyphBuffer.h',
'platform/graphics/GlyphMetricsMap.h',
'platform/graphics/GlyphPage.h',
'platform/graphics/GlyphPageTreeNode.h',
'platform/graphics/Gradient.h',
'platform/graphics/GraphicsContext.h',
'platform/graphics/GraphicsContext3D.h',
'platform/graphics/GraphicsLayer.h',
'platform/graphics/GraphicsLayerClient.h',
'platform/graphics/GraphicsTypes.h',
'platform/graphics/GraphicsTypes3D.h',
'platform/graphics/Icon.h',
'platform/graphics/Image.h',
'platform/graphics/ImageBuffer.h',
'platform/graphics/ImageBufferData.h',
'platform/graphics/ImageObserver.h',
'platform/graphics/ImageOrientation.h',
'platform/graphics/ImageSource.h',
'platform/graphics/IntPoint.h',
'platform/graphics/IntPointHash.h',
'platform/graphics/IntRect.h',
'platform/graphics/IntRectHash.h',
'platform/graphics/IntSize.h',
'platform/graphics/IntSizeHash.h',
'platform/graphics/MediaPlayer.h',
'platform/graphics/Path.h',
'platform/graphics/Pattern.h',
'platform/graphics/PlatformLayer.h',
'platform/graphics/Region.h',
'platform/graphics/RoundedRect.h',
'platform/graphics/SimpleFontData.h',
'platform/graphics/StringTruncator.h',
'platform/graphics/SVGGlyph.h',
'platform/graphics/TextRenderingMode.h',
'platform/graphics/TextRun.h',
'platform/graphics/TypesettingFeatures.h',
'platform/graphics/cg/ImageBufferDataCG.h',
'platform/graphics/mac/ColorMac.h',
'platform/graphics/mac/MediaPlayerProxy.h',
'platform/graphics/transforms/AffineTransform.h',
'platform/graphics/transforms/TransformOperation.h',
'platform/graphics/transforms/TransformOperations.h',
'platform/graphics/transforms/TransformationMatrix.h',
'platform/gtk/PasteboardHelper.h',
'platform/leveldb/LevelDBComparator.h',
'platform/leveldb/LevelDBDatabase.cpp',
'platform/leveldb/LevelDBDatabase.h',
'platform/leveldb/LevelDBIterator.h',
'platform/leveldb/LevelDBSlice.h',
'platform/leveldb/LevelDBTransaction.cpp',
'platform/leveldb/LevelDBTransaction.h',
'platform/leveldb/LevelDBWriteBatch.cpp',
'platform/leveldb/LevelDBWriteBatch.h',
'platform/mac/BlockExceptions.h',
'platform/mac/ClipboardMac.h',
'platform/mac/EmptyProtocolDefinitions.h',
'platform/mac/FoundationExtras.h',
'platform/mac/PopupMenuMac.h',
'platform/mac/SearchPopupMenuMac.h',
'platform/mac/SoftLinking.h',
'platform/mac/WebCoreNSStringExtras.h',
'platform/mac/WebCoreObjCExtras.h',
'platform/mac/WebCoreSystemInterface.h',
'platform/mac/WebCoreView.h',
'platform/mac/WebFontCache.h',
'platform/mediastream/IceCandidateDescriptor.cpp',
'platform/mediastream/IceCandidateDescriptor.h',
'platform/mediastream/IceOptions.cpp',
'platform/mediastream/IceOptions.h',
'platform/mediastream/MediaConstraints.h',
'platform/mediastream/MediaHints.cpp',
'platform/mediastream/MediaHints.h',
'platform/mediastream/MediaStreamCenter.cpp',
'platform/mediastream/MediaStreamCenter.h',
'platform/mediastream/MediaStreamComponent.h',
'platform/mediastream/MediaStreamDescriptor.h',
'platform/mediastream/MediaStreamSource.cpp',
'platform/mediastream/MediaStreamSource.h',
'platform/mediastream/PeerConnection00Handler.h',
'platform/mediastream/PeerConnection00HandlerClient.h',
'platform/mediastream/RTCConfiguration.h',
'platform/mediastream/RTCDataChannelDescriptor.cpp',
'platform/mediastream/RTCDataChannelDescriptor.h',
'platform/mediastream/RTCIceCandidateDescriptor.cpp',
'platform/mediastream/RTCIceCandidateDescriptor.h',
'platform/mediastream/RTCPeerConnectionHandler.h',
'platform/mediastream/RTCPeerConnectionHandlerClient.h',
'platform/mediastream/RTCSessionDescriptionDescriptor.cpp',
'platform/mediastream/RTCSessionDescriptionDescriptor.h',
'platform/mediastream/RTCSessionDescriptionRequest.h',
'platform/mediastream/RTCStatsRequest.h',
'platform/mediastream/RTCVoidRequest.h',
'platform/mediastream/SessionDescriptionDescriptor.cpp',
'platform/mediastream/SessionDescriptionDescriptor.h',
'platform/mediastream/chromium/MediaStreamCenterChromium.cpp',
'platform/mediastream/chromium/MediaStreamCenterChromium.h',
'platform/mediastream/chromium/PeerConnection00Handler.cpp',
'platform/mediastream/chromium/PeerConnection00HandlerInternal.cpp',
'platform/mediastream/chromium/PeerConnection00HandlerInternal.h',
'platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.cpp',
'platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.h',
'platform/mock/DeviceMotionClientMock.h',
'platform/mock/DeviceOrientationClientMock.h',
'platform/mock/GeolocationClientMock.h',
'platform/network/AuthenticationChallengeBase.h',
'platform/network/AuthenticationClient.h',
'platform/network/CookieStorage.h',
'platform/network/Credential.h',
'platform/network/CredentialStorage.h',
'platform/network/FormData.h',
'platform/network/HTTPHeaderMap.h',
'platform/network/MIMEHeader.h',
'platform/network/NetworkingContext.h',
'platform/network/ProtectionSpace.h',
'platform/network/ProtectionSpaceHash.h',
'platform/network/ProxyServer.h',
'platform/network/ResourceErrorBase.h',
'platform/network/ResourceHandle.h',
'platform/network/ResourceHandleClient.h',
'platform/network/ResourceLoadInfo.h',
'platform/network/ResourceLoadPriority.h',
'platform/network/ResourceLoadTiming.h',
'platform/network/ResourceRequestBase.h',
'platform/network/ResourceResponseBase.h',
'platform/network/cf/AuthenticationChallenge.h',
'platform/network/cf/ResourceError.h',
'platform/network/cf/ResourceRequest.h',
'platform/network/cf/ResourceResponse.h',
'platform/network/mac/AuthenticationMac.h',
'platform/network/mac/FormDataStreamMac.h',
'platform/network/mac/WebCoreURLResponse.h',
'platform/sql/SQLValue.h',
'platform/sql/SQLiteDatabase.h',
'platform/sql/SQLiteTransaction.h',
'platform/text/BidiRunList.h',
'platform/text/BidiContext.h',
'platform/text/BidiResolver.h',
'platform/text/DateTimeFormat.h',
'platform/text/DecodeEscapeSequences.h',
'platform/text/LineBreakIteratorPoolICU.h',
'platform/text/LineEnding.h',
'platform/text/QuotedPrintable.h',
'platform/text/RegularExpression.h',
'platform/text/SegmentedString.h',
'platform/text/TextBoundaries.h',
'platform/text/TextBreakIterator.h',
'platform/text/TextBreakIteratorInternalICU.h',
'platform/text/TextCheckerClient.h',
'platform/text/TextChecking.h',
'platform/text/TextCodec.h',
'platform/text/TextCodecICU.h',
'platform/text/TextCodecLatin1.h',
'platform/text/TextCodecUTF16.h',
'platform/text/TextCodecUserDefined.h',
'platform/text/TextDirection.h',
'platform/text/TextEncoding.h',
'platform/text/TextEncodingRegistry.h',
'platform/text/TextOrientation.h',
'platform/text/TextStream.h',
'platform/text/UnicodeBidi.h',
'platform/text/UnicodeRange.h',
'platform/text/WritingMode.h',
'platform/text/mac/CharsetData.h',
'plugins/PluginData.h',
'plugins/PluginMainThreadScheduler.h',
'plugins/PluginStrategy.h',
'plugins/PluginViewBase.h',
'plugins/npapi.h',
'plugins/npfunctions.h',
'plugins/npruntime.h',
'plugins/nptypes.h',
'rendering/ColumnInfo.h',
'rendering/GapRects.h',
'rendering/FlowThreadController.h',
'rendering/HitTestRequest.h',
'rendering/HitTestResult.h',
'rendering/InlineBox.h',
'rendering/InlineFlowBox.h',
'rendering/InlineTextBox.h',
'rendering/LayoutState.h',
'rendering/LayoutTypes.h',
'rendering/LayoutTypesInlineMethods.h',
'rendering/LayoutRepainter.h',
'rendering/OverlapTestRequestClient.h',
'rendering/Pagination.h',
'rendering/PaintInfo.h',
'rendering/PaintPhase.h',
'rendering/RenderBR.h',
'rendering/RenderBlock.h',
'rendering/RenderBox.h',
'rendering/RenderBoxModelObject.h',
'rendering/RenderDialog.h',
'rendering/RenderEmbeddedObject.h',
'rendering/RenderFlowThread.h',
'rendering/RenderImage.h',
'rendering/RenderImageResource.h',
'rendering/RenderImageResourceStyleImage.h',
'rendering/RenderLayer.h',
'rendering/RenderLayerBacking.h',
'rendering/RenderLayerFilterInfo.h',
'rendering/RenderLayerModelObject.h',
'rendering/RenderLineBoxList.h',
'rendering/RenderListItem.h',
'rendering/RenderNamedFlowThread.h',
'rendering/RenderObject.h',
'rendering/RenderObjectChildList.h',
'rendering/RenderOverflow.h',
'rendering/RenderPart.h',
'rendering/RenderReplaced.h',
'rendering/RenderText.h',
'rendering/RenderTreeAsText.h',
'rendering/RenderView.h',
'rendering/RenderWidget.h',
'rendering/RootInlineBox.h',
'rendering/ScrollBehavior.h',
'rendering/style/BasicShapes.h',
'rendering/style/BorderData.h',
'rendering/style/BorderValue.h',
'rendering/style/CollapsedBorderValue.h',
'rendering/style/ContentData.h',
'rendering/style/CounterContent.h',
'rendering/style/CounterDirectives.h',
'rendering/style/CursorData.h',
'rendering/style/CursorList.h',
'rendering/style/DataRef.h',
'rendering/style/FillLayer.h',
'rendering/style/LineClampValue.h',
'rendering/style/NinePieceImage.h',
'rendering/style/OutlineValue.h',
'rendering/style/RenderStyle.h',
'rendering/style/RenderStyleConstants.h',
'rendering/style/ShadowData.h',
'rendering/style/StyleBackgroundData.h',
'rendering/style/StyleBoxData.h',
'rendering/style/StyleCachedImage.h',
'rendering/style/StyleCachedImageSet.h',
'rendering/style/StyleDashboardRegion.h',
'rendering/style/StyleDeprecatedFlexibleBoxData.h',
'rendering/style/StyleFilterData.h',
'rendering/style/StyleFlexibleBoxData.h',
'rendering/style/StyleGeneratedImage.h',
'rendering/style/StyleGridData.h',
'rendering/style/StyleGridItemData.h',
'rendering/style/StyleImage.h',
'rendering/style/StyleInheritedData.h',
'rendering/style/StyleMarqueeData.h',
'rendering/style/StyleMultiColData.h',
'rendering/style/StyleRareInheritedData.h',
'rendering/style/StyleRareNonInheritedData.h',
'rendering/style/StyleReflection.h',
'rendering/style/StyleSurroundData.h',
'rendering/style/StyleTransformData.h',
'rendering/style/StyleVariableData.h',
'rendering/style/StyleVisualData.h',
'rendering/svg/SVGResourcesCache.h',
'workers/WorkerRunLoop.h',
'workers/WorkerThread.h',
],
'webcore_dom_privateheader_files': [
'dom/ActiveDOMObject.h',
'dom/Attr.h',
'dom/Attribute.h',
'dom/CharacterData.h',
'dom/CheckedRadioButtons.h',
'dom/Clipboard.h',
'dom/ClipboardAccessPolicy.h',
'dom/ComposedShadowTreeWalker.h',
'dom/ContainerNode.h',
'dom/ContextDestructionObserver.h',
'dom/ContextFeatures.h',
'dom/ContextFeatures.cpp',
'dom/DOMImplementation.h',
'dom/DOMTimeStamp.h',
'dom/DeviceMotionClient.h',
'dom/DeviceMotionData.h',
'dom/DeviceOrientationClient.h',
'dom/DeviceOrientationData.h',
'dom/Document.h',
'dom/DocumentFragment.h',
'dom/DocumentMarker.h',
'dom/DocumentMarkerController.h',
'dom/DocumentOrderedMap.h',
'dom/DocumentParser.h',
'dom/DocumentStyleSheetCollection.h',
'dom/DocumentTiming.h',
'dom/DocumentType.h',
'dom/Element.h',
'dom/ElementShadow.h',
'dom/ElementAttributeData.h',
'dom/Event.h',
'dom/EventListener.h',
'dom/EventListenerMap.h',
'dom/EventNames.h',
'dom/EventTarget.h',
'dom/ExceptionCode.h',
'dom/ExceptionCodePlaceholder.h',
'dom/FragmentScriptingPermission.h',
'dom/KeyboardEvent.h',
'dom/MessagePort.h',
'dom/MessagePortChannel.h',
'dom/MouseEvent.h',
'dom/MouseRelatedEvent.h',
'dom/NamedNodeMap.h',
'dom/Node.h',
'dom/NodeList.h',
'dom/PendingScript.h',
'dom/Position.h',
'dom/QualifiedName.h',
'dom/Range.h',
'dom/RangeBoundaryPoint.h',
'dom/RegisteredEventListener.h',
'dom/RenderedDocumentMarker.h',
'dom/ScriptExecutionContext.h',
'dom/ScriptRunner.h',
'dom/ShadowRoot.h',
'dom/SpaceSplitString.h',
'dom/StyledElement.h',
'dom/Text.h',
'dom/TextEventInputType.h',
'dom/UIEvent.h',
'dom/UIEventWithKeyState.h',
'dom/UserGestureIndicator.h',
'dom/UserTypingGestureIndicator.h',
'dom/ViewportArguments.h',
],
'webcore_html_privateheader_files': [
'html/CollectionType.h',
'html/FormAssociatedElement.h',
'html/HTMLAppletElement.h',
'html/HTMLCollection.h',
'html/HTMLDocument.h',
'html/HTMLElement.h',
'html/HTMLFormControlElement.h',
'html/HTMLFormControlElementWithState.h',
'html/HTMLFormElement.h',
'html/HTMLFrameElement.h',
'html/HTMLFrameElementBase.h',
'html/HTMLFrameOwnerElement.h',
'html/HTMLHeadElement.h',
'html/HTMLIFrameElement.h',
'html/HTMLInputElement.h',
'html/HTMLMediaElement.h',
'html/HTMLParserQuirks.h',
'html/HTMLPlugInElement.h',
'html/HTMLPlugInImageElement.h',
'html/HTMLTableCellElement.h',
'html/HTMLTablePartElement.h',
'html/HTMLTextAreaElement.h',
'html/HTMLTextFormControlElement.h',
'html/InputType.h',
'html/LabelableElement.h',
'html/VoidCallback.h',
'html/parser/HTMLParserIdioms.h',
],
'webcore_svg_privateheader_files': [
'rendering/style/SVGRenderStyle.h',
'rendering/style/SVGRenderStyleDefs.h',
'svg/SVGAngle.h',
'svg/SVGAnimatedAngle.h',
'svg/SVGAnimatedBoolean.h',
'svg/SVGAnimatedColor.h',
'svg/SVGAnimatedEnumeration.h',
'svg/SVGAnimatedInteger.h',
'svg/SVGAnimatedIntegerOptionalInteger.h',
'svg/SVGAnimatedLength.h',
'svg/SVGAnimatedLengthList.h',
'svg/SVGAnimatedNumber.h',
'svg/SVGAnimatedNumberList.h',
'svg/SVGAnimatedNumberOptionalNumber.h',
'svg/SVGAnimatedPath.h',
'svg/SVGAnimatedPointList.h',
'svg/SVGAnimatedPreserveAspectRatio.h',
'svg/SVGAnimatedRect.h',
'svg/SVGAnimatedString.h',
'svg/SVGAnimatedTransformList.h',
'svg/SVGAnimatedType.h',
'svg/SVGAnimatedTypeAnimator.h',
'svg/SVGAnimatorFactory.h',
'svg/SVGColor.h',
'svg/SVGDocumentExtensions.h',
'svg/SVGElement.h',
'svg/SVGLength.h',
'svg/SVGLengthContext.h',
'svg/SVGLengthList.h',
'svg/SVGLocatable.h',
'svg/SVGMatrix.h',
'svg/SVGNumberList.h',
'svg/SVGPaint.h',
'svg/SVGPreserveAspectRatio.h',
'svg/SVGTransform.h',
'svg/SVGTransformList.h',
'svg/animation/SMILTime.h',
'svg/animation/SVGSMILElement.h',
'svg/properties/SVGAttributeToPropertyMap.h',
'svg/properties/SVGAnimatedEnumerationPropertyTearOff.h',
'svg/properties/SVGAnimatedListPropertyTearOff.h',
'svg/properties/SVGAnimatedProperty.h',
'svg/properties/SVGAnimatedPropertyDescription.h',
'svg/properties/SVGAnimatedPropertyMacros.h',
'svg/properties/SVGAnimatedPropertyTearOff.h',
'svg/properties/SVGAnimatedStaticPropertyTearOff.h',
'svg/properties/SVGAnimatedTransformListPropertyTearOff.h',
'svg/properties/SVGListProperty.h',
'svg/properties/SVGListPropertyTearOff.h',
'svg/properties/SVGPathSegListPropertyTearOff.h',
'svg/properties/SVGProperty.h',
'svg/properties/SVGPropertyInfo.h',
'svg/properties/SVGPropertyTearOff.h',
'svg/properties/SVGPropertyTraits.h',
'svg/properties/SVGStaticListPropertyTearOff.h',
'svg/properties/SVGStaticPropertyTearOff.h',
'svg/properties/SVGStaticPropertyWithParentTearOff.h',
'svg/properties/SVGTransformListPropertyTearOff.h',
],
'webcore_bindings_idl_files': [
'Modules/battery/BatteryManager.idl',
'Modules/battery/NavigatorBattery.idl',
'Modules/filesystem/DOMFileSystem.idl',
'Modules/filesystem/DOMFileSystemSync.idl',
'Modules/filesystem/DOMWindowFileSystem.idl',
'Modules/filesystem/DataTransferItemFileSystem.idl',
'Modules/filesystem/DirectoryEntry.idl',
'Modules/filesystem/DirectoryEntrySync.idl',
'Modules/filesystem/DirectoryReader.idl',
'Modules/filesystem/DirectoryReaderSync.idl',
'Modules/filesystem/EntriesCallback.idl',
'Modules/filesystem/Entry.idl',
'Modules/filesystem/EntryArray.idl',
'Modules/filesystem/EntryArraySync.idl',
'Modules/filesystem/EntryCallback.idl',
'Modules/filesystem/EntrySync.idl',
'Modules/filesystem/ErrorCallback.idl',
'Modules/filesystem/FileCallback.idl',
'Modules/filesystem/FileEntry.idl',
'Modules/filesystem/FileEntrySync.idl',
'Modules/filesystem/FileSystemCallback.idl',
'Modules/filesystem/FileWriter.idl',
'Modules/filesystem/FileWriterCallback.idl',
'Modules/filesystem/FileWriterSync.idl',
'Modules/filesystem/HTMLInputElementFileSystem.idl',
'Modules/filesystem/Metadata.idl',
'Modules/filesystem/MetadataCallback.idl',
'Modules/filesystem/WorkerContextFileSystem.idl',
'Modules/gamepad/Gamepad.idl',
'Modules/gamepad/GamepadList.idl',
'Modules/gamepad/NavigatorGamepad.idl',
'Modules/geolocation/Geolocation.idl',
'Modules/geolocation/Geoposition.idl',
'Modules/geolocation/NavigatorGeolocation.idl',
'Modules/geolocation/PositionCallback.idl',
'Modules/geolocation/PositionError.idl',
'Modules/geolocation/PositionErrorCallback.idl',
'Modules/indexeddb/DOMWindowIndexedDatabase.idl',
'Modules/indexeddb/IDBAny.idl',
'Modules/indexeddb/IDBCursor.idl',
'Modules/indexeddb/IDBCursorWithValue.idl',
'Modules/indexeddb/IDBDatabaseException.idl',
'Modules/indexeddb/IDBDatabase.idl',
'Modules/indexeddb/IDBFactory.idl',
'Modules/indexeddb/IDBIndex.idl',
'Modules/indexeddb/IDBKey.idl',
'Modules/indexeddb/IDBKeyRange.idl',
'Modules/indexeddb/IDBObjectStore.idl',
'Modules/indexeddb/IDBOpenDBRequest.idl',
'Modules/indexeddb/IDBRequest.idl',
'Modules/indexeddb/IDBTransaction.idl',
'Modules/indexeddb/IDBUpgradeNeededEvent.idl',
'Modules/indexeddb/IDBVersionChangeEvent.idl',
'Modules/indexeddb/IDBVersionChangeRequest.idl',
'Modules/indexeddb/WorkerContextIndexedDatabase.idl',
'Modules/intents/DeliveredIntent.idl',
'Modules/intents/DOMWindowIntents.idl',
'Modules/intents/Intent.idl',
'Modules/intents/IntentResultCallback.idl',
'Modules/intents/NavigatorIntents.idl',
'Modules/mediasource/MediaSource.idl',
'Modules/mediasource/SourceBuffer.idl',
'Modules/mediasource/SourceBufferList.idl',
'Modules/mediastream/DOMWindowMediaStream.idl',
'Modules/mediastream/IceCallback.idl',
'Modules/mediastream/IceCandidate.idl',
'Modules/mediastream/LocalMediaStream.idl',
'Modules/mediastream/MediaStream.idl',
'Modules/mediastream/MediaStreamEvent.idl',
'Modules/mediastream/MediaStreamList.idl',
'Modules/mediastream/MediaStreamTrack.idl',
'Modules/mediastream/MediaStreamTrackEvent.idl',
'Modules/mediastream/MediaStreamTrackList.idl',
'Modules/mediastream/NavigatorMediaStream.idl',
'Modules/mediastream/NavigatorUserMediaError.idl',
'Modules/mediastream/NavigatorUserMediaErrorCallback.idl',
'Modules/mediastream/NavigatorUserMediaSuccessCallback.idl',
'Modules/mediastream/PeerConnection00.idl',
'Modules/mediastream/RTCDataChannel.idl',
'Modules/mediastream/RTCDataChannelEvent.idl',
'Modules/mediastream/RTCErrorCallback.idl',
'Modules/mediastream/RTCIceCandidate.idl',
'Modules/mediastream/RTCIceCandidateEvent.idl',
'Modules/mediastream/RTCPeerConnection.idl',
'Modules/mediastream/RTCSessionDescription.idl',
'Modules/mediastream/RTCSessionDescriptionCallback.idl',
'Modules/mediastream/RTCStatsCallback.idl',
'Modules/mediastream/RTCStatsElement.idl',
'Modules/mediastream/RTCStatsReport.idl',
'Modules/mediastream/RTCStatsResponse.idl',
'Modules/mediastream/SessionDescription.idl',
'Modules/navigatorcontentutils/NavigatorContentUtils.idl',
'Modules/notifications/DOMWindowNotifications.idl',
'Modules/notifications/Notification.idl',
'Modules/notifications/NotificationCenter.idl',
'Modules/notifications/NotificationPermissionCallback.idl',
'Modules/notifications/WorkerContextNotifications.idl',
'Modules/quota/DOMWindowQuota.idl',
'Modules/quota/StorageInfo.idl',
'Modules/quota/StorageInfoErrorCallback.idl',
'Modules/quota/StorageInfoQuotaCallback.idl',
'Modules/quota/StorageInfoUsageCallback.idl',
'Modules/speech/DOMWindowSpeech.idl',
'Modules/speech/SpeechGrammar.idl',
'Modules/speech/SpeechGrammarList.idl',
'Modules/speech/SpeechRecognition.idl',
'Modules/speech/SpeechRecognitionAlternative.idl',
'Modules/speech/SpeechRecognitionError.idl',
'Modules/speech/SpeechRecognitionEvent.idl',
'Modules/speech/SpeechRecognitionResult.idl',
'Modules/speech/SpeechRecognitionResultList.idl',
'Modules/webaudio/AudioBuffer.idl',
'Modules/webaudio/AudioBufferCallback.idl',
'Modules/webaudio/AudioBufferSourceNode.idl',
'Modules/webaudio/ChannelMergerNode.idl',
'Modules/webaudio/ChannelSplitterNode.idl',
'Modules/webaudio/AudioContext.idl',
'Modules/webaudio/AudioDestinationNode.idl',
'Modules/webaudio/AudioGain.idl',
'Modules/webaudio/GainNode.idl',
'Modules/webaudio/AudioListener.idl',
'Modules/webaudio/AudioNode.idl',
'Modules/webaudio/PannerNode.idl',
'Modules/webaudio/AudioParam.idl',
'Modules/webaudio/AudioProcessingEvent.idl',
'Modules/webaudio/AudioSourceNode.idl',
'Modules/webaudio/BiquadFilterNode.idl',
'Modules/webaudio/ConvolverNode.idl',
'Modules/webaudio/DelayNode.idl',
'Modules/webaudio/DOMWindowWebAudio.idl',
'Modules/webaudio/DynamicsCompressorNode.idl',
'Modules/webaudio/ScriptProcessorNode.idl',
'Modules/webaudio/MediaElementAudioSourceNode.idl',
'Modules/webaudio/MediaStreamAudioSourceNode.idl',
'Modules/webaudio/OfflineAudioCompletionEvent.idl',
'Modules/webaudio/OscillatorNode.idl',
'Modules/webaudio/AnalyserNode.idl',
'Modules/webaudio/WaveShaperNode.idl',
'Modules/webaudio/WaveTable.idl',
'Modules/webdatabase/DOMWindowWebDatabase.idl',
'Modules/webdatabase/Database.idl',
'Modules/webdatabase/DatabaseCallback.idl',
'Modules/webdatabase/DatabaseSync.idl',
'Modules/webdatabase/SQLError.idl',
'Modules/webdatabase/SQLException.idl',
'Modules/webdatabase/SQLResultSet.idl',
'Modules/webdatabase/SQLResultSetRowList.idl',
'Modules/webdatabase/SQLStatementCallback.idl',
'Modules/webdatabase/SQLStatementErrorCallback.idl',
'Modules/webdatabase/SQLTransaction.idl',
'Modules/webdatabase/SQLTransactionCallback.idl',
'Modules/webdatabase/SQLTransactionErrorCallback.idl',
'Modules/webdatabase/SQLTransactionSync.idl',
'Modules/webdatabase/SQLTransactionSyncCallback.idl',
'Modules/webdatabase/WorkerContextWebDatabase.idl',
'Modules/websockets/CloseEvent.idl',
'Modules/websockets/DOMWindowWebSocket.idl',
'Modules/websockets/WebSocket.idl',
'Modules/websockets/WorkerContextWebSocket.idl',
'css/CSSCharsetRule.idl',
'css/CSSFontFaceRule.idl',
'css/CSSImportRule.idl',
'css/CSSMediaRule.idl',
'css/CSSPageRule.idl',
'css/CSSPrimitiveValue.idl',
'css/CSSRule.idl',
'css/CSSRuleList.idl',
'css/CSSStyleDeclaration.idl',
'css/CSSStyleRule.idl',
'css/CSSStyleSheet.idl',
'css/CSSUnknownRule.idl',
'css/CSSValue.idl',
'css/CSSValueList.idl',
'css/Counter.idl',
'css/MediaList.idl',
'css/MediaQueryList.idl',
'css/Rect.idl',
'css/RGBColor.idl',
'css/StyleMedia.idl',
'css/StyleSheet.idl',
'css/StyleSheetList.idl',
'css/WebKitCSSFilterValue.idl',
'css/WebKitCSSKeyframeRule.idl',
'css/WebKitCSSKeyframesRule.idl',
'css/WebKitCSSMatrix.idl',
'css/WebKitCSSRegionRule.idl',
'css/WebKitCSSTransformValue.idl',
'dom/Attr.idl',
'dom/BeforeLoadEvent.idl',
'dom/CDATASection.idl',
'dom/CharacterData.idl',
'dom/ClientRect.idl',
'dom/ClientRectList.idl',
'dom/Clipboard.idl',
'dom/Comment.idl',
'dom/CompositionEvent.idl',
'dom/CustomEvent.idl',
'dom/DOMCoreException.idl',
'dom/DOMError.idl',
'dom/DOMImplementation.idl',
'dom/DOMStringList.idl',
'dom/DOMStringMap.idl',
'dom/DataTransferItem.idl',
'dom/DataTransferItemList.idl',
'dom/DeviceMotionEvent.idl',
'dom/DeviceOrientationEvent.idl',
'dom/Document.idl',