summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/GNUmakefile.list.am
blob: b1eea2473bd0d3be106ab4e86772433a6506733c (plain)
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
webkit2_h_api += \
	$(WebKit2)/Shared/API/c/gtk/WKBaseGtk.h \
	$(WebKit2)/Shared/API/c/gtk/WKGraphicsContextGtk.h \
	$(WebKit2)/Shared/API/c/soup/WKBaseSoup.h \
	$(WebKit2)/Shared/API/c/WKArray.h \
	$(WebKit2)/Shared/API/c/WKBase.h \
	$(WebKit2)/Shared/API/c/WKCertificateInfo.h \
	$(WebKit2)/Shared/API/c/WKConnectionRef.h \
	$(WebKit2)/Shared/API/c/WKContextMenuItem.h \
	$(WebKit2)/Shared/API/c/WKContextMenuItemTypes.h \
	$(WebKit2)/Shared/API/c/WKData.h \
	$(WebKit2)/Shared/API/c/WKDictionary.h \
	$(WebKit2)/Shared/API/c/WKError.h \
	$(WebKit2)/Shared/API/c/WKEvent.h \
	$(WebKit2)/Shared/API/c/WKFindOptions.h \
	$(WebKit2)/Shared/API/c/WKGeometry.h \
	$(WebKit2)/Shared/API/c/WKGraphicsContext.h \
	$(WebKit2)/Shared/API/c/WKImage.h \
	$(WebKit2)/Shared/API/c/WKMutableArray.h \
	$(WebKit2)/Shared/API/c/WKMutableDictionary.h \
	$(WebKit2)/Shared/API/c/WKNumber.h \
	$(WebKit2)/Shared/API/c/WKPageLoadTypes.h \
	$(WebKit2)/Shared/API/c/WKRenderLayer.h \
	$(WebKit2)/Shared/API/c/WKRenderObject.h \
	$(WebKit2)/Shared/API/c/WKSecurityOrigin.h \
	$(WebKit2)/Shared/API/c/WKSerializedScriptValue.h \
	$(WebKit2)/Shared/API/c/WKSerializedScriptValuePrivate.h \
	$(WebKit2)/Shared/API/c/WKSharedAPICast.h \
	$(WebKit2)/Shared/API/c/WKString.h \
	$(WebKit2)/Shared/API/c/WKStringPrivate.h \
	$(WebKit2)/Shared/API/c/WKType.h \
	$(WebKit2)/Shared/API/c/WKURL.h \
	$(WebKit2)/Shared/API/c/WKURLRequest.h \
	$(WebKit2)/Shared/API/c/WKURLResponse.h \
	$(WebKit2)/Shared/API/c/WKUserContentURLPattern.h \
	$(WebKit2)/UIProcess/API/C/gtk/WKAPICastGtk.h \
	$(WebKit2)/UIProcess/API/C/gtk/WKFullScreenClientGtk.h \
	$(WebKit2)/UIProcess/API/C/gtk/WKInspectorClientGtk.h \
	$(WebKit2)/UIProcess/API/C/gtk/WKView.h \
	$(WebKit2)/UIProcess/API/C/soup/WKAPICastSoup.h \
	$(WebKit2)/UIProcess/API/C/soup/WKContextSoup.h \
	$(WebKit2)/UIProcess/API/C/soup/WKSoupRequestManager.h \
	$(WebKit2)/UIProcess/API/C/WebKit2.h \
	$(WebKit2)/UIProcess/API/C/WKAPICast.h \
	$(WebKit2)/UIProcess/API/C/WKApplicationCacheManager.h \
	$(WebKit2)/UIProcess/API/C/WKAuthenticationChallenge.h \
	$(WebKit2)/UIProcess/API/C/WKAuthenticationDecisionListener.h \
	$(WebKit2)/UIProcess/API/C/WKBackForwardList.h \
	$(WebKit2)/UIProcess/API/C/WKBackForwardListItem.h \
	$(WebKit2)/UIProcess/API/C/WKContext.h \
	$(WebKit2)/UIProcess/API/C/WKContextPrivate.h \
	$(WebKit2)/UIProcess/API/C/WKCookieManager.h \
	$(WebKit2)/UIProcess/API/C/WKCredential.h \
	$(WebKit2)/UIProcess/API/C/WKCredentialTypes.h \
	$(WebKit2)/UIProcess/API/C/WKDatabaseManager.h \
	$(WebKit2)/UIProcess/API/C/WKDownload.h \
	$(WebKit2)/UIProcess/API/C/WKFormSubmissionListener.h \
	$(WebKit2)/UIProcess/API/C/WKFrame.h \
	$(WebKit2)/UIProcess/API/C/WKFramePolicyListener.h \
	$(WebKit2)/UIProcess/API/C/WKGeolocationManager.h \
	$(WebKit2)/UIProcess/API/C/WKGeolocationPermissionRequest.h \
	$(WebKit2)/UIProcess/API/C/WKGeolocationPosition.h \
	$(WebKit2)/UIProcess/API/C/WKGrammarDetail.h \
	$(WebKit2)/UIProcess/API/C/WKHitTestResult.h \
	$(WebKit2)/UIProcess/API/C/WKInspector.h \
	$(WebKit2)/UIProcess/API/C/WKKeyValueStorageManager.h \
	$(WebKit2)/UIProcess/API/C/WKMediaCacheManager.h \
	$(WebKit2)/UIProcess/API/C/WKNativeEvent.h \
	$(WebKit2)/UIProcess/API/C/WKNavigationData.h \
	$(WebKit2)/UIProcess/API/C/WKNotification.h \
	$(WebKit2)/UIProcess/API/C/WKNotificationManager.h \
	$(WebKit2)/UIProcess/API/C/WKNotificationPermissionRequest.h \
	$(WebKit2)/UIProcess/API/C/WKNotificationProvider.h \
	$(WebKit2)/UIProcess/API/C/WKOpenPanelParameters.h \
	$(WebKit2)/UIProcess/API/C/WKOpenPanelResultListener.h \
	$(WebKit2)/UIProcess/API/C/WKPageGroup.h \
	$(WebKit2)/UIProcess/API/C/WKPage.h \
	$(WebKit2)/UIProcess/API/C/WKPagePrivate.h \
	$(WebKit2)/UIProcess/API/C/WKPluginSiteDataManager.h \
	$(WebKit2)/UIProcess/API/C/WKPreferences.h \
	$(WebKit2)/UIProcess/API/C/WKPreferencesPrivate.h \
	$(WebKit2)/UIProcess/API/C/WKProtectionSpace.h \
	$(WebKit2)/UIProcess/API/C/WKProtectionSpaceTypes.h \
	$(WebKit2)/UIProcess/API/C/WKResourceCacheManager.h \
	$(WebKit2)/UIProcess/API/C/WKTextChecker.h \
	$(WebKit2)/UIProcess/API/cpp/WKRetainPtr.h

webkit2gtk_h_api += \
	$(WebKit2)/UIProcess/API/gtk/WebKitBackForwardList.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitBackForwardListItem.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitCookieManager.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitDefines.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitDownload.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitEditingCommands.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitError.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitFileChooserRequest.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitFindController.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitHitTestResult.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitJavascriptResult.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitMimeInfo.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitNavigationPolicyDecision.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitPermissionRequest.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitPlugin.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitPolicyDecision.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitPrintOperation.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitResponsePolicyDecision.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitScriptDialog.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitSettings.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitURIRequest.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitURIResponse.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWebContext.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWebInspector.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWebResource.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWebView.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWebViewBase.h \
	$(WebKit2)/UIProcess/API/gtk/WebKitWindowProperties.h \
	$(WebKit2)/UIProcess/API/gtk/webkit2.h

webkit2_built_sources += \
	DerivedSources/WebKit2/AuthenticationManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/AuthenticationManagerMessages.h \
	DerivedSources/WebKit2/DownloadProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/DownloadProxyMessages.h \
	DerivedSources/WebKit2/DrawingAreaMessageReceiver.cpp \
	DerivedSources/WebKit2/DrawingAreaMessages.h \
	DerivedSources/WebKit2/DrawingAreaProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/DrawingAreaProxyMessages.h \
	DerivedSources/WebKit2/EventDispatcherMessageReceiver.cpp \
	DerivedSources/WebKit2/EventDispatcherMessages.h \
	DerivedSources/WebKit2/LayerTreeHostProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/LayerTreeHostProxyMessages.h \
	DerivedSources/WebKit2/NPObjectMessageReceiverMessageReceiver.cpp \
	DerivedSources/WebKit2/NPObjectMessageReceiverMessages.h \
	DerivedSources/WebKit2/PluginControllerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginControllerProxyMessages.h \
	DerivedSources/WebKit2/PluginProcessConnectionMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginProcessConnectionMessages.h \
	DerivedSources/WebKit2/PluginProcessMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginProcessMessages.h \
	DerivedSources/WebKit2/PluginProcessProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginProcessProxyMessages.h \
	DerivedSources/WebKit2/PluginProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginProxyMessages.h \
	DerivedSources/WebKit2/WebApplicationCacheManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebApplicationCacheManagerMessages.h \
	DerivedSources/WebKit2/WebApplicationCacheManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebApplicationCacheManagerProxyMessages.h \
	DerivedSources/WebKit2/WebContextMessageReceiver.cpp \
	DerivedSources/WebKit2/WebContextMessages.h \
	DerivedSources/WebKit2/WebCookieManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebCookieManagerMessages.h \
	DerivedSources/WebKit2/WebCookieManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebCookieManagerProxyMessages.h \
	DerivedSources/WebKit2/WebDatabaseManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebDatabaseManagerMessages.h \
	DerivedSources/WebKit2/WebDatabaseManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebDatabaseManagerProxyMessages.h \
	DerivedSources/WebKit2/WebFullScreenManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebFullScreenManagerMessages.h \
	DerivedSources/WebKit2/WebFullScreenManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebFullScreenManagerProxyMessages.h \
	DerivedSources/WebKit2/WebGeolocationManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebGeolocationManagerMessages.h \
	DerivedSources/WebKit2/WebGeolocationManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebGeolocationManagerProxyMessages.h \
	DerivedSources/WebKit2/WebIconDatabaseMessageReceiver.cpp \
	DerivedSources/WebKit2/WebIconDatabaseMessages.h \
	DerivedSources/WebKit2/WebIconDatabaseProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebIconDatabaseProxyMessages.h \
	DerivedSources/WebKit2/WebInspectorMessageReceiver.cpp \
	DerivedSources/WebKit2/WebInspectorMessages.h \
	DerivedSources/WebKit2/WebInspectorProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebInspectorProxyMessages.h \
	DerivedSources/WebKit2/WebKeyValueStorageManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebKeyValueStorageManagerMessages.h \
	DerivedSources/WebKit2/WebKeyValueStorageManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebKeyValueStorageManagerProxyMessages.h \
	DerivedSources/WebKit2/WebMediaCacheManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebMediaCacheManagerMessages.h \
	DerivedSources/WebKit2/WebMediaCacheManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebMediaCacheManagerProxyMessages.h \
	DerivedSources/WebKit2/WebNotificationManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebNotificationManagerMessages.h \
	DerivedSources/WebKit2/WebNotificationManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebNotificationManagerProxyMessages.h \
	DerivedSources/WebKit2/WebPageProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebPageProxyMessages.h \
	DerivedSources/WebKit2/WebPageMessageReceiver.cpp \
	DerivedSources/WebKit2/WebPageMessages.h \
	DerivedSources/WebKit2/WebResourceCacheManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebResourceCacheManagerMessages.h \
	DerivedSources/WebKit2/WebResourceCacheManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebResourceCacheManagerProxyMessages.h \
	DerivedSources/WebKit2/WebProcessConnectionMessageReceiver.cpp \
	DerivedSources/WebKit2/WebProcessConnectionMessages.h \
	DerivedSources/WebKit2/WebProcessMessageReceiver.cpp \
	DerivedSources/WebKit2/WebProcessMessages.h \
	DerivedSources/WebKit2/WebProcessProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebProcessProxyMessages.h \
	DerivedSources/WebKit2/WebSoupRequestManagerMessageReceiver.cpp \
	DerivedSources/WebKit2/WebSoupRequestManagerMessages.h \
	DerivedSources/WebKit2/WebSoupRequestManagerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/WebSoupRequestManagerProxyMessages.h

webkit2gtk_built_sources += \
	DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitEnumTypes.cpp \
	DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitEnumTypes.h \
	DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitMarshal.cpp \
	DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitMarshal.h

webkit2_sources += \
	Source/WebKit2/config.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoder.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoders.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoders.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentEncoder.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentEncoder.h \
	Source/WebKit2/Platform/CoreIPC/Arguments.h \
	Source/WebKit2/Platform/CoreIPC/Attachment.cpp \
	Source/WebKit2/Platform/CoreIPC/Attachment.h \
	Source/WebKit2/Platform/CoreIPC/BinarySemaphore.cpp \
	Source/WebKit2/Platform/CoreIPC/BinarySemaphore.h \
	Source/WebKit2/Platform/CoreIPC/Connection.cpp \
	Source/WebKit2/Platform/CoreIPC/Connection.h \
	Source/WebKit2/Platform/CoreIPC/CoreIPCMessageKinds.h \
	Source/WebKit2/Platform/CoreIPC/DataReference.cpp \
	Source/WebKit2/Platform/CoreIPC/DataReference.h \
	Source/WebKit2/Platform/CoreIPC/HandleMessage.h \
	Source/WebKit2/Platform/CoreIPC/MessageID.h \
	Source/WebKit2/Platform/CoreIPC/MessageSender.h \
	Source/WebKit2/Platform/CoreIPC/unix/AttachmentUnix.cpp \
	Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp \
	Source/WebKit2/Platform/gtk/LoggingGtk.cpp \
	Source/WebKit2/Platform/gtk/ModuleGtk.cpp \
	Source/WebKit2/Platform/gtk/WorkQueueGtk.cpp \
	Source/WebKit2/Platform/Logging.cpp \
	Source/WebKit2/Platform/Logging.h \
	Source/WebKit2/Platform/Module.cpp \
	Source/WebKit2/Platform/Module.h \
	Source/WebKit2/Platform/PlatformProcessIdentifier.h \
	Source/WebKit2/Platform/SharedMemory.h \
	Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp \
	Source/WebKit2/Platform/WorkQueue.cpp \
	Source/WebKit2/Platform/WorkQueue.h \
	Source/WebKit2/PluginProcess/PluginControllerProxy.cpp \
	Source/WebKit2/PluginProcess/PluginControllerProxy.h \
	Source/WebKit2/PluginProcess/PluginCreationParameters.cpp \
	Source/WebKit2/PluginProcess/PluginCreationParameters.h \
	Source/WebKit2/PluginProcess/PluginProcess.cpp \
	Source/WebKit2/PluginProcess/PluginProcess.h \
	Source/WebKit2/PluginProcess/PluginProcessMain.h \
	Source/WebKit2/PluginProcess/WebProcessConnection.cpp \
	Source/WebKit2/PluginProcess/WebProcessConnection.h \
	Source/WebKit2/PluginProcess/gtk/PluginControllerProxyGtk.cpp \
	Source/WebKit2/PluginProcess/gtk/PluginProcessGtk.cpp \
	Source/WebKit2/Shared/DragControllerAction.h \
	Source/WebKit2/Shared/FontInfo.h \
	Source/WebKit2/Shared/HTTPCookieAcceptPolicy.h \
	Source/WebKit2/Shared/ResourceCachesToClear.h \
	Source/WebKit2/Shared/WebMemorySampler.h \
	Source/WebKit2/Shared/APIClient.h \
	Source/WebKit2/Shared/APIClientTraits.cpp \
	Source/WebKit2/Shared/APIClientTraits.h \
	Source/WebKit2/Shared/API/c/cairo/WKImageCairo.cpp \
	Source/WebKit2/Shared/API/c/cairo/WKImageCairo.h \
	Source/WebKit2/Shared/API/c/gtk/WKBaseGtk.h \
	Source/WebKit2/Shared/API/c/gtk/WKGraphicsContextGtk.h \
	Source/WebKit2/Shared/API/c/gtk/WKGraphicsContextGtk.cpp \
	Source/WebKit2/Shared/API/c/soup/WKBaseSoup.h \
	Source/WebKit2/Shared/API/c/WKArray.cpp \
	Source/WebKit2/Shared/API/c/WKArray.h \
	Source/WebKit2/Shared/API/c/WKBase.h \
	Source/WebKit2/Shared/API/c/WKCertificateInfo.cpp \
	Source/WebKit2/Shared/API/c/WKCertificateInfo.h \
	Source/WebKit2/Shared/API/c/WKConnectionRef.cpp \
	Source/WebKit2/Shared/API/c/WKConnectionRef.h \
	Source/WebKit2/Shared/API/c/WKContextMenuItem.cpp \
	Source/WebKit2/Shared/API/c/WKContextMenuItem.h \
	Source/WebKit2/Shared/API/c/WKContextMenuItemTypes.h \
	Source/WebKit2/Shared/API/c/WKData.cpp \
	Source/WebKit2/Shared/API/c/WKData.h \
	Source/WebKit2/Shared/API/c/WKDictionary.cpp \
	Source/WebKit2/Shared/API/c/WKDictionary.h \
	Source/WebKit2/Shared/API/c/WKError.cpp \
	Source/WebKit2/Shared/API/c/WKError.h \
	Source/WebKit2/Shared/API/c/WKEvent.h \
	Source/WebKit2/Shared/API/c/WKFindOptions.h \
	Source/WebKit2/Shared/API/c/WKGeometry.h \
	Source/WebKit2/Shared/API/c/WKGeometry.cpp \
	Source/WebKit2/Shared/API/c/WKGraphicsContext.cpp \
	Source/WebKit2/Shared/API/c/WKGraphicsContext.h \
	Source/WebKit2/Shared/API/c/WKImage.cpp \
	Source/WebKit2/Shared/API/c/WKImage.h \
	Source/WebKit2/Shared/API/c/WKMutableArray.cpp \
	Source/WebKit2/Shared/API/c/WKMutableArray.h \
	Source/WebKit2/Shared/API/c/WKMutableDictionary.cpp \
	Source/WebKit2/Shared/API/c/WKMutableDictionary.h \
	Source/WebKit2/Shared/API/c/WKNumber.cpp \
	Source/WebKit2/Shared/API/c/WKNumber.h \
	Source/WebKit2/Shared/API/c/WKPageLoadTypes.h \
	Source/WebKit2/Shared/API/c/WKRenderLayer.cpp \
	Source/WebKit2/Shared/API/c/WKRenderLayer.h \
	Source/WebKit2/Shared/API/c/WKRenderObject.cpp \
	Source/WebKit2/Shared/API/c/WKRenderObject.h \
	Source/WebKit2/Shared/API/c/WKSecurityOrigin.cpp \
	Source/WebKit2/Shared/API/c/WKSecurityOrigin.h \
	Source/WebKit2/Shared/API/c/WKSerializedScriptValue.cpp \
	Source/WebKit2/Shared/API/c/WKSerializedScriptValue.h \
	Source/WebKit2/Shared/API/c/WKSerializedScriptValuePrivate.h \
	Source/WebKit2/Shared/API/c/WKSharedAPICast.h \
	Source/WebKit2/Shared/API/c/WKString.cpp \
	Source/WebKit2/Shared/API/c/WKString.h \
	Source/WebKit2/Shared/API/c/WKStringPrivate.h \
	Source/WebKit2/Shared/API/c/WKType.cpp \
	Source/WebKit2/Shared/API/c/WKType.h \
	Source/WebKit2/Shared/API/c/WKURL.cpp \
	Source/WebKit2/Shared/API/c/WKURL.h \
	Source/WebKit2/Shared/API/c/WKURLRequest.cpp \
	Source/WebKit2/Shared/API/c/WKURLRequest.h \
	Source/WebKit2/Shared/API/c/WKURLResponse.cpp \
	Source/WebKit2/Shared/API/c/WKURLResponse.h \
	Source/WebKit2/Shared/API/c/WKUserContentURLPattern.cpp \
	Source/WebKit2/Shared/API/c/WKUserContentURLPattern.h \
	Source/WebKit2/Shared/APIObject.cpp \
	Source/WebKit2/Shared/APIObject.h \
	Source/WebKit2/Shared/BlockingResponseMap.h \
	Source/WebKit2/Shared/ShareableBitmap.cpp \
	Source/WebKit2/Shared/ShareableBitmap.h \
	Source/WebKit2/Shared/CacheModel.h \
	Source/WebKit2/Shared/ChildProcess.cpp \
	Source/WebKit2/Shared/ChildProcess.h \
	Source/WebKit2/Shared/CommandLine.h \
	Source/WebKit2/Shared/CoreIPCSupport/InjectedBundleMessageKinds.h \
	Source/WebKit2/Shared/CoreIPCSupport/WebConnectionMessageKinds.h \
	Source/WebKit2/Shared/CoreIPCSupport/WebContextMessageKinds.h \
	Source/WebKit2/Shared/CoreIPCSupport/WebPageProxyMessageKinds.h \
	Source/WebKit2/Shared/DrawingAreaInfo.h \
	Source/WebKit2/Shared/EditorState.cpp \
	Source/WebKit2/Shared/EditorState.h \
	Source/WebKit2/Shared/FontSmoothingLevel.h \
	Source/WebKit2/Shared/ProcessExecutablePath.h \
	Source/WebKit2/Shared/cairo/LayerTreeContextCairo.cpp \
	Source/WebKit2/Shared/cairo/ShareableBitmapCairo.cpp \
	Source/WebKit2/Shared/gtk/ArgumentCodersGtk.h \
	Source/WebKit2/Shared/gtk/ArgumentCodersGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebKeyboardEventGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebMouseEventGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebWheelEventGtk.cpp \
	Source/WebKit2/Shared/gtk/PlatformCertificateInfo.h \
	Source/WebKit2/Shared/gtk/PrintInfoGtk.cpp \
	Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp \
	Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp \
	Source/WebKit2/Shared/gtk/WebEventFactory.cpp \
	Source/WebKit2/Shared/gtk/WebEventFactory.h \
	Source/WebKit2/Shared/ImageOptions.h \
	Source/WebKit2/Shared/ImmutableArray.cpp \
	Source/WebKit2/Shared/ImmutableArray.h \
	Source/WebKit2/Shared/ImmutableDictionary.cpp \
	Source/WebKit2/Shared/ImmutableDictionary.h \
	Source/WebKit2/Shared/LayerTreeContext.h \
	Source/WebKit2/Shared/MutableArray.cpp \
	Source/WebKit2/Shared/MutableArray.h \
	Source/WebKit2/Shared/MutableDictionary.cpp \
	Source/WebKit2/Shared/MutableDictionary.h \
	Source/WebKit2/Shared/NativeWebKeyboardEvent.h \
	Source/WebKit2/Shared/NativeWebMouseEvent.h \
	Source/WebKit2/Shared/NativeWebWheelEvent.h \
	Source/WebKit2/Shared/OriginAndDatabases.cpp \
	Source/WebKit2/Shared/OriginAndDatabases.h \
	Source/WebKit2/Shared/PlatformPopupMenuData.cpp \
	Source/WebKit2/Shared/PlatformPopupMenuData.h \
	Source/WebKit2/Shared/PrintInfo.cpp \
	Source/WebKit2/Shared/PrintInfo.h \
	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.cpp \
	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h \
	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModuleNone.cpp \
	Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp \
	Source/WebKit2/Shared/Plugins/NPIdentifierData.cpp \
	Source/WebKit2/Shared/Plugins/NPIdentifierData.h \
	Source/WebKit2/Shared/Plugins/NPObjectMessageReceiver.cpp \
	Source/WebKit2/Shared/Plugins/NPObjectMessageReceiver.h \
	Source/WebKit2/Shared/Plugins/NPObjectProxy.cpp \
	Source/WebKit2/Shared/Plugins/NPObjectProxy.h \
	Source/WebKit2/Shared/Plugins/NPRemoteObjectMap.cpp \
	Source/WebKit2/Shared/Plugins/NPRemoteObjectMap.h \
	Source/WebKit2/Shared/Plugins/NPVariantData.cpp \
	Source/WebKit2/Shared/Plugins/NPVariantData.h \
	Source/WebKit2/Shared/Plugins/PluginModuleInfo.cpp \
	Source/WebKit2/Shared/Plugins/PluginModuleInfo.h \
	Source/WebKit2/Shared/Plugins/PluginProcessCreationParameters.cpp \
	Source/WebKit2/Shared/Plugins/PluginProcessCreationParameters.h \
	Source/WebKit2/Shared/Plugins/PluginQuirks.h \
	Source/WebKit2/Shared/SameDocumentNavigationType.h \
	Source/WebKit2/Shared/SandboxExtension.h \
	Source/WebKit2/Shared/SecurityOriginData.h \
	Source/WebKit2/Shared/SecurityOriginData.cpp \
	Source/WebKit2/Shared/SessionState.cpp \
	Source/WebKit2/Shared/SessionState.h \
	Source/WebKit2/Shared/StatisticsData.cpp \
	Source/WebKit2/Shared/StatisticsData.h \
	Source/WebKit2/Shared/StringPairVector.h \
	Source/WebKit2/Shared/TextCheckerState.h \
	Source/WebKit2/Shared/UserMessageCoders.h \
	Source/WebKit2/Shared/UpdateInfo.cpp \
	Source/WebKit2/Shared/UpdateInfo.h \
	Source/WebKit2/Shared/VisitedLinkTable.cpp \
	Source/WebKit2/Shared/VisitedLinkTable.h \
	Source/WebKit2/Shared/WebBackForwardListItem.cpp \
	Source/WebKit2/Shared/WebBackForwardListItem.h \
	Source/WebKit2/Shared/WebCertificateInfo.h \
	Source/WebKit2/Shared/WebConnection.cpp \
	Source/WebKit2/Shared/WebConnection.h \
	Source/WebKit2/Shared/WebConnectionClient.cpp \
	Source/WebKit2/Shared/WebConnectionClient.h \
	Source/WebKit2/Shared/WebContextMenuItem.cpp \
	Source/WebKit2/Shared/WebContextMenuItemData.cpp \
	Source/WebKit2/Shared/WebContextMenuItemData.h \
	Source/WebKit2/Shared/WebContextMenuItem.h \
	Source/WebKit2/Shared/WebCoreArgumentCoders.cpp \
	Source/WebKit2/Shared/WebCoreArgumentCoders.h \
	Source/WebKit2/Shared/WebData.h \
	Source/WebKit2/Shared/WebError.cpp \
	Source/WebKit2/Shared/WebError.h \
	Source/WebKit2/Shared/WebEventConversion.cpp \
	Source/WebKit2/Shared/WebEventConversion.h \
	Source/WebKit2/Shared/WebEvent.cpp \
	Source/WebKit2/Shared/WebEvent.h \
	Source/WebKit2/Shared/WebFindOptions.h \
	Source/WebKit2/Shared/WebGeolocationPosition.cpp \
	Source/WebKit2/Shared/WebGeolocationPosition.h \
	Source/WebKit2/Shared/WebGeometry.h \
	Source/WebKit2/Shared/WebGraphicsContext.cpp \
	Source/WebKit2/Shared/WebGraphicsContext.h \
	Source/WebKit2/Shared/WebHitTestResult.cpp \
	Source/WebKit2/Shared/WebHitTestResult.h \
	Source/WebKit2/Shared/WebImage.cpp \
	Source/WebKit2/Shared/WebImage.h \
	Source/WebKit2/Shared/WebKeyboardEvent.cpp \
	Source/WebKit2/Shared/WebMouseEvent.cpp \
	Source/WebKit2/Shared/WebNavigationDataStore.h \
	Source/WebKit2/Shared/WebNumber.h \
	Source/WebKit2/Shared/WebOpenPanelParameters.cpp \
	Source/WebKit2/Shared/WebOpenPanelParameters.h \
	Source/WebKit2/Shared/WebPageCreationParameters.cpp \
	Source/WebKit2/Shared/WebPageCreationParameters.h \
	Source/WebKit2/Shared/WebPageGroupData.cpp \
	Source/WebKit2/Shared/WebPageGroupData.h \
	Source/WebKit2/Shared/WebPlatformTouchPoint.cpp \
	Source/WebKit2/Shared/WebPopupItem.cpp \
	Source/WebKit2/Shared/WebPopupItem.h \
	Source/WebKit2/Shared/WebPreferencesStore.cpp \
	Source/WebKit2/Shared/WebPreferencesStore.h \
	Source/WebKit2/Shared/WebProcessCreationParameters.cpp \
	Source/WebKit2/Shared/WebProcessCreationParameters.h \
	Source/WebKit2/Shared/WebRenderLayer.cpp \
	Source/WebKit2/Shared/WebRenderLayer.h \
	Source/WebKit2/Shared/WebRenderObject.cpp \
	Source/WebKit2/Shared/WebRenderObject.h \
	Source/WebKit2/Shared/WebSecurityOrigin.h \
	Source/WebKit2/Shared/WebSerializedScriptValue.h \
	Source/WebKit2/Shared/WebString.h \
	Source/WebKit2/Shared/WebTouchEvent.cpp \
	Source/WebKit2/Shared/WebURL.h \
	Source/WebKit2/Shared/WebURLRequest.cpp \
	Source/WebKit2/Shared/WebURLRequest.h \
	Source/WebKit2/Shared/WebURLResponse.cpp \
	Source/WebKit2/Shared/WebURLResponse.h \
	Source/WebKit2/Shared/WebUserContentURLPattern.h \
	Source/WebKit2/Shared/WebWheelEvent.cpp \
	Source/WebKit2/UIProcess/API/C/gtk/WKAPICastGtk.h \
	Source/WebKit2/UIProcess/API/C/gtk/WKFullScreenClientGtk.cpp \
	Source/WebKit2/UIProcess/API/C/gtk/WKFullScreenClientGtk.h \
	Source/WebKit2/UIProcess/API/C/gtk/WKInspectorClientGtk.cpp \
	Source/WebKit2/UIProcess/API/C/gtk/WKInspectorClientGtk.h \
	Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp \
	Source/WebKit2/UIProcess/API/C/gtk/WKView.h \
	Source/WebKit2/UIProcess/API/C/soup/WKAPICastSoup.h \
	Source/WebKit2/UIProcess/API/C/soup/WKContextSoup.cpp \
	Source/WebKit2/UIProcess/API/C/soup/WKContextSoup.h \
	Source/WebKit2/UIProcess/API/C/soup/WKSoupRequestManager.cpp \
	Source/WebKit2/UIProcess/API/C/soup/WKSoupRequestManager.h \
	Source/WebKit2/UIProcess/API/C/WebKit2.h \
	Source/WebKit2/UIProcess/API/C/WKAPICast.h \
	Source/WebKit2/UIProcess/API/C/WKApplicationCacheManager.h \
	Source/WebKit2/UIProcess/API/C/WKApplicationCacheManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKAuthenticationChallenge.cpp \
	Source/WebKit2/UIProcess/API/C/WKAuthenticationChallenge.h \
	Source/WebKit2/UIProcess/API/C/WKAuthenticationDecisionListener.cpp \
	Source/WebKit2/UIProcess/API/C/WKAuthenticationDecisionListener.h \
	Source/WebKit2/UIProcess/API/C/WKBackForwardList.cpp \
	Source/WebKit2/UIProcess/API/C/WKBackForwardList.h \
	Source/WebKit2/UIProcess/API/C/WKBackForwardListItem.cpp \
	Source/WebKit2/UIProcess/API/C/WKBackForwardListItem.h \
	Source/WebKit2/UIProcess/API/C/WKContext.cpp \
	Source/WebKit2/UIProcess/API/C/WKContext.h \
	Source/WebKit2/UIProcess/API/C/WKContextPrivate.h \
	Source/WebKit2/UIProcess/API/C/WKCookieManager.h \
	Source/WebKit2/UIProcess/API/C/WKCookieManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKCredential.cpp \
	Source/WebKit2/UIProcess/API/C/WKCredential.h \
	Source/WebKit2/UIProcess/API/C/WKCredentialTypes.h \
	Source/WebKit2/UIProcess/API/C/WKDatabaseManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKDatabaseManager.h \
	Source/WebKit2/UIProcess/API/C/WKDownload.cpp \
	Source/WebKit2/UIProcess/API/C/WKDownload.h \
	Source/WebKit2/UIProcess/API/C/WKFormSubmissionListener.cpp \
	Source/WebKit2/UIProcess/API/C/WKFormSubmissionListener.h \
	Source/WebKit2/UIProcess/API/C/WKFrame.cpp \
	Source/WebKit2/UIProcess/API/C/WKFrame.h \
	Source/WebKit2/UIProcess/API/C/WKFramePolicyListener.cpp \
	Source/WebKit2/UIProcess/API/C/WKFramePolicyListener.h \
	Source/WebKit2/UIProcess/API/C/WKGeolocationManager.h \
	Source/WebKit2/UIProcess/API/C/WKGeolocationPermissionRequest.h \
	Source/WebKit2/UIProcess/API/C/WKGeolocationPosition.h \
	Source/WebKit2/UIProcess/API/C/WKGrammarDetail.cpp \
	Source/WebKit2/UIProcess/API/C/WKGrammarDetail.h \
	Source/WebKit2/UIProcess/API/C/WKHitTestResult.cpp \
	Source/WebKit2/UIProcess/API/C/WKHitTestResult.h \
	Source/WebKit2/UIProcess/API/C/WKIconDatabase.cpp \
	Source/WebKit2/UIProcess/API/C/WKIconDatabase.h \
	Source/WebKit2/UIProcess/API/C/WKInspector.cpp \
	Source/WebKit2/UIProcess/API/C/WKInspector.h \
	Source/WebKit2/UIProcess/API/C/WKKeyValueStorageManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKKeyValueStorageManager.h \
	Source/WebKit2/UIProcess/API/C/WKMediaCacheManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKMediaCacheManager.h \
	Source/WebKit2/UIProcess/API/C/WKNativeEvent.h \
	Source/WebKit2/UIProcess/API/C/WKNavigationData.cpp \
	Source/WebKit2/UIProcess/API/C/WKNavigationData.h \
	Source/WebKit2/UIProcess/API/C/WKNotification.cpp \
	Source/WebKit2/UIProcess/API/C/WKNotification.h \
	Source/WebKit2/UIProcess/API/C/WKNotificationManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKNotificationManager.h \
	Source/WebKit2/UIProcess/API/C/WKNotificationPermissionRequest.cpp \
	Source/WebKit2/UIProcess/API/C/WKNotificationPermissionRequest.h \
	Source/WebKit2/UIProcess/API/C/WKNotificationProvider.h \
	Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp \
	Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h \
	Source/WebKit2/UIProcess/API/C/WKOpenPanelResultListener.cpp \
	Source/WebKit2/UIProcess/API/C/WKOpenPanelResultListener.h \
	Source/WebKit2/UIProcess/API/C/WKPage.cpp \
	Source/WebKit2/UIProcess/API/C/WKPageGroup.cpp \
	Source/WebKit2/UIProcess/API/C/WKPageGroup.h \
	Source/WebKit2/UIProcess/API/C/WKPage.h \
	Source/WebKit2/UIProcess/API/C/WKPagePrivate.h \
	Source/WebKit2/UIProcess/API/C/WKPluginSiteDataManager.h \
	Source/WebKit2/UIProcess/API/C/WKPluginSiteDataManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKPreferences.cpp \
	Source/WebKit2/UIProcess/API/C/WKPreferences.h \
	Source/WebKit2/UIProcess/API/C/WKPreferencesPrivate.h \
	Source/WebKit2/UIProcess/API/C/WKProtectionSpace.cpp \
	Source/WebKit2/UIProcess/API/C/WKProtectionSpace.h \
	Source/WebKit2/UIProcess/API/C/WKProtectionSpaceTypes.h \
	Source/WebKit2/UIProcess/API/C/WKResourceCacheManager.h \
	Source/WebKit2/UIProcess/API/C/WKResourceCacheManager.cpp \
	Source/WebKit2/UIProcess/API/C/WKTextChecker.h \
	Source/WebKit2/UIProcess/API/C/WKTextChecker.cpp \
	Source/WebKit2/UIProcess/API/cpp/WKRetainPtr.h \
	Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h \
	Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardList.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardList.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListItem.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListItem.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitCookieManager.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitCookieManager.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitCookieManagerPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitDefines.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitDownload.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitDownload.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitDownloadPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitDownloadClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitDownloadClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitEditingCommands.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitError.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitError.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequestPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitFullscreenClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitFullscreenClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResultPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitJavascriptResult.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitJavascriptResult.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitJavascriptResultPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitMimeInfo.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitMimeInfo.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitMimeInfoPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitFindController.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitFindController.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitNavigationPolicyDecision.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitNavigationPolicyDecision.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitNavigationPolicyDecisionPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPermissionRequest.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitPermissionRequest.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPluginPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecisionPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPrintOperation.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitPrintOperation.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPrintOperationPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitPrivate.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitResourceLoadClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitResourceLoadClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitResponsePolicyDecision.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitResponsePolicyDecision.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitResponsePolicyDecisionPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitScriptDialog.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitScriptDialog.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitScriptDialogPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitSettings.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitSettings.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitSettingsPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitUIClient.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitUIClient.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIRequest.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIRequest.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIRequestPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIResponse.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIResponse.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitURIResponsePrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebContextPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebInspector.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebInspector.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebInspectorPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebResource.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebResource.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebResourcePrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebView.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebView.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBaseAccessible.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBaseAccessible.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBasePrivate.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWindowProperties.cpp \
	Source/WebKit2/UIProcess/API/gtk/WebKitWindowProperties.h \
	Source/WebKit2/UIProcess/API/gtk/WebKitWindowPropertiesPrivate.h \
	Source/WebKit2/UIProcess/API/gtk/webkit2.h \
	Source/WebKit2/UIProcess/Authentication/AuthenticationChallengeProxy.cpp \
	Source/WebKit2/UIProcess/Authentication/AuthenticationChallengeProxy.h \
	Source/WebKit2/UIProcess/Authentication/AuthenticationDecisionListener.cpp \
	Source/WebKit2/UIProcess/Authentication/AuthenticationDecisionListener.h \
	Source/WebKit2/UIProcess/Authentication/WebCredential.cpp \
	Source/WebKit2/UIProcess/Authentication/WebCredential.h \
	Source/WebKit2/UIProcess/Authentication/WebProtectionSpace.cpp \
	Source/WebKit2/UIProcess/Authentication/WebProtectionSpace.h \
	Source/WebKit2/UIProcess/BackingStore.cpp \
	Source/WebKit2/UIProcess/BackingStore.h \
	Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp \
	Source/WebKit2/UIProcess/Downloads/DownloadProxy.h \
	Source/WebKit2/UIProcess/DrawingAreaProxy.cpp \
	Source/WebKit2/UIProcess/DrawingAreaProxy.h \
	Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp \
	Source/WebKit2/UIProcess/DrawingAreaProxyImpl.h \
	Source/WebKit2/UIProcess/FindIndicator.cpp \
	Source/WebKit2/UIProcess/FindIndicator.h \
	Source/WebKit2/UIProcess/GenericCallback.h \
	Source/WebKit2/UIProcess/GeolocationPermissionRequestManagerProxy.cpp \
	Source/WebKit2/UIProcess/GeolocationPermissionRequestManagerProxy.h \
	Source/WebKit2/UIProcess/GeolocationPermissionRequestProxy.cpp \
	Source/WebKit2/UIProcess/GeolocationPermissionRequestProxy.h \
	Source/WebKit2/UIProcess/cairo/BackingStoreCairo.cpp \
	Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebContextMenuProxyGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebContextMenuProxyGtk.h \
	Source/WebKit2/UIProcess/gtk/WebFullScreenClientGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebFullScreenClientGtk.h \
	Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebInspectorClientGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebInspectorClientGtk.h \
	Source/WebKit2/UIProcess/gtk/WebInspectorProxyGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebPageProxyGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.cpp \
	Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.h \
	Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp \
	Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp \
	Source/WebKit2/UIProcess/Launcher/gtk/ThreadLauncherGtk.cpp \
	Source/WebKit2/UIProcess/Launcher/ProcessLauncher.cpp \
	Source/WebKit2/UIProcess/Launcher/ProcessLauncher.h \
	Source/WebKit2/UIProcess/Launcher/ThreadLauncher.cpp \
	Source/WebKit2/UIProcess/Launcher/ThreadLauncher.h \
	Source/WebKit2/UIProcess/Notifications/NotificationPermissionRequest.cpp \
	Source/WebKit2/UIProcess/Notifications/NotificationPermissionRequest.h \
	Source/WebKit2/UIProcess/Notifications/NotificationPermissionRequestManagerProxy.cpp \
	Source/WebKit2/UIProcess/Notifications/NotificationPermissionRequestManagerProxy.h \
	Source/WebKit2/UIProcess/Notifications/WebNotification.cpp \
	Source/WebKit2/UIProcess/Notifications/WebNotification.h \
	Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.cpp \
	Source/WebKit2/UIProcess/Notifications/WebNotificationManagerProxy.h \
	Source/WebKit2/UIProcess/Notifications/WebNotificationProvider.cpp \
	Source/WebKit2/UIProcess/Notifications/WebNotificationProvider.h \
	Source/WebKit2/UIProcess/PageClient.h \
	Source/WebKit2/UIProcess/Plugins/PluginInfoStore.cpp \
	Source/WebKit2/UIProcess/Plugins/PluginInfoStore.h \
	Source/WebKit2/UIProcess/Plugins/PluginProcessManager.cpp \
	Source/WebKit2/UIProcess/Plugins/PluginProcessManager.h \
	Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp \
	Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.h \
	Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.h \
	Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.cpp \
	Source/WebKit2/UIProcess/Plugins/gtk/PluginProcessProxyGtk.cpp \
	Source/WebKit2/UIProcess/Plugins/unix/PluginInfoStoreUnix.cpp \
	Source/WebKit2/UIProcess/ProcessModel.h \
	Source/WebKit2/UIProcess/ResponsivenessTimer.cpp \
	Source/WebKit2/UIProcess/ResponsivenessTimer.h \
	Source/WebKit2/UIProcess/soup/WebSoupRequestManagerClient.cpp \
	Source/WebKit2/UIProcess/soup/WebSoupRequestManagerClient.h \
	Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.cpp \
	Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.h \
	Source/WebKit2/UIProcess/TextChecker.h \
	Source/WebKit2/UIProcess/VisitedLinkProvider.cpp \
	Source/WebKit2/UIProcess/VisitedLinkProvider.h \
	Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.h \
	Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebBackForwardList.cpp \
	Source/WebKit2/UIProcess/WebBackForwardList.h \
	Source/WebKit2/UIProcess/WebConnectionToWebProcess.cpp \
	Source/WebKit2/UIProcess/WebConnectionToWebProcess.h \
	Source/WebKit2/UIProcess/WebContext.cpp \
	Source/WebKit2/UIProcess/WebContext.h \
	Source/WebKit2/UIProcess/WebContextConnectionClient.cpp \
	Source/WebKit2/UIProcess/WebContextConnectionClient.h \
	Source/WebKit2/UIProcess/WebContextInjectedBundleClient.cpp \
	Source/WebKit2/UIProcess/WebContextInjectedBundleClient.h \
	Source/WebKit2/UIProcess/WebContextMenuProxy.cpp \
	Source/WebKit2/UIProcess/WebContextMenuProxy.h \
	Source/WebKit2/UIProcess/WebContextUserMessageCoders.h \
	Source/WebKit2/UIProcess/WebCookieManagerProxy.h \
	Source/WebKit2/UIProcess/WebCookieManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebCookieManagerProxyClient.cpp \
	Source/WebKit2/UIProcess/WebCookieManagerProxyClient.h \
	Source/WebKit2/UIProcess/WebDatabaseManagerProxyClient.cpp \
	Source/WebKit2/UIProcess/WebDatabaseManagerProxyClient.h \
	Source/WebKit2/UIProcess/WebDatabaseManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebDatabaseManagerProxy.h \
	Source/WebKit2/UIProcess/WebDownloadClient.cpp \
	Source/WebKit2/UIProcess/WebDownloadClient.h \
	Source/WebKit2/UIProcess/WebEditCommandProxy.cpp \
	Source/WebKit2/UIProcess/WebEditCommandProxy.h \
	Source/WebKit2/UIProcess/WebFindClient.cpp \
	Source/WebKit2/UIProcess/WebFindClient.h \
	Source/WebKit2/UIProcess/WebFormClient.cpp \
	Source/WebKit2/UIProcess/WebFormClient.h \
	Source/WebKit2/UIProcess/WebFormSubmissionListenerProxy.cpp \
	Source/WebKit2/UIProcess/WebFormSubmissionListenerProxy.h \
	Source/WebKit2/UIProcess/WebFrameListenerProxy.cpp \
	Source/WebKit2/UIProcess/WebFrameListenerProxy.h \
	Source/WebKit2/UIProcess/WebFramePolicyListenerProxy.cpp \
	Source/WebKit2/UIProcess/WebFramePolicyListenerProxy.h \
	Source/WebKit2/UIProcess/WebFrameProxy.cpp \
	Source/WebKit2/UIProcess/WebFrameProxy.h \
	Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebFullScreenManagerProxy.h \
	Source/WebKit2/UIProcess/WebGeolocationManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebGeolocationManagerProxy.h \
	Source/WebKit2/UIProcess/WebGeolocationProvider.cpp \
	Source/WebKit2/UIProcess/WebGeolocationProvider.h \
	Source/WebKit2/UIProcess/WebGrammarDetail.cpp \
	Source/WebKit2/UIProcess/WebGrammarDetail.h \
	Source/WebKit2/UIProcess/WebHistoryClient.cpp \
	Source/WebKit2/UIProcess/WebHistoryClient.h \
	Source/WebKit2/UIProcess/WebIconDatabase.cpp \
	Source/WebKit2/UIProcess/WebIconDatabase.h \
	Source/WebKit2/UIProcess/WebIconDatabaseClient.cpp \
	Source/WebKit2/UIProcess/WebIconDatabaseClient.h \
	Source/WebKit2/UIProcess/WebInspectorProxy.cpp \
	Source/WebKit2/UIProcess/WebInspectorProxy.h \
	Source/WebKit2/UIProcess/WebKeyValueStorageManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebKeyValueStorageManagerProxy.h \
	Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.h \
	Source/WebKit2/UIProcess/WebLoaderClient.cpp \
	Source/WebKit2/UIProcess/WebLoaderClient.h \
	Source/WebKit2/UIProcess/WebNavigationData.cpp \
	Source/WebKit2/UIProcess/WebNavigationData.h \
	Source/WebKit2/UIProcess/WebOpenPanelResultListenerProxy.cpp \
	Source/WebKit2/UIProcess/WebOpenPanelResultListenerProxy.h \
	Source/WebKit2/UIProcess/WebPageContextMenuClient.cpp \
	Source/WebKit2/UIProcess/WebPageContextMenuClient.h \
	Source/WebKit2/UIProcess/WebPageGroup.cpp \
	Source/WebKit2/UIProcess/WebPageGroup.h \
	Source/WebKit2/UIProcess/WebPageProxy.cpp \
	Source/WebKit2/UIProcess/WebPageProxy.h \
	Source/WebKit2/UIProcess/WebPolicyClient.cpp \
	Source/WebKit2/UIProcess/WebPolicyClient.h \
	Source/WebKit2/UIProcess/WebPopupMenuProxy.h \
	Source/WebKit2/UIProcess/WebPreferences.cpp \
	Source/WebKit2/UIProcess/WebPreferences.h \
	Source/WebKit2/UIProcess/WebProcessProxy.cpp \
	Source/WebKit2/UIProcess/WebProcessProxy.h \
	Source/WebKit2/UIProcess/WebResourceCacheManagerProxy.h \
	Source/WebKit2/UIProcess/WebResourceCacheManagerProxy.cpp \
	Source/WebKit2/UIProcess/WebResourceLoadClient.cpp \
	Source/WebKit2/UIProcess/WebResourceLoadClient.h \
	Source/WebKit2/UIProcess/WebTextChecker.cpp \
	Source/WebKit2/UIProcess/WebTextChecker.h \
	Source/WebKit2/UIProcess/WebTextCheckerClient.cpp \
	Source/WebKit2/UIProcess/WebTextCheckerClient.h \
	Source/WebKit2/UIProcess/WebUIClient.cpp \
	Source/WebKit2/UIProcess/WebUIClient.h \
	Source/WebKit2/WebKit2Prefix.h \
	Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h \
	Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \
	Source/WebKit2/WebProcess/Authentication/AuthenticationManager.cpp \
	Source/WebKit2/WebProcess/Authentication/AuthenticationManager.h \
	Source/WebKit2/WebProcess/Cookies/WebCookieManager.h \
	Source/WebKit2/WebProcess/Cookies/WebCookieManager.cpp \
	Source/WebKit2/WebProcess/Cookies/soup/WebCookieManagerSoup.cpp \
	Source/WebKit2/WebProcess/Downloads/Download.cpp \
	Source/WebKit2/WebProcess/Downloads/Download.h \
	Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.h \
	Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp \
	Source/WebKit2/WebProcess/Downloads/DownloadManager.h \
	Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp \
	Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.cpp \
	Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.h \
	Source/WebKit2/WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp \
	Source/WebKit2/WebProcess/Geolocation/GeolocationPermissionRequestManager.h \
	Source/WebKit2/WebProcess/Geolocation/WebGeolocationManager.cpp \
	Source/WebKit2/WebProcess/Geolocation/WebGeolocationManager.h \
	Source/WebKit2/WebProcess/gtk/WebAuthDialog.cpp \
	Source/WebKit2/WebProcess/gtk/WebAuthDialog.h \
	Source/WebKit2/WebProcess/gtk/WebProcessGtk.cpp \
	Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp \
	Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.h \
	Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.cpp \
	Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleAPICast.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleBackForwardList.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleBackForwardList.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleBackForwardListItem.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleBackForwardListItem.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleDOMWindowExtension.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleDOMWindowExtension.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleFrame.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleFramePrivate.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundle.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleHitTestResult.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleHitTestResult.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNavigationAction.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNavigationAction.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInitialize.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageGroup.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageGroup.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePrivate.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleRangeHandle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleRangeHandle.h \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.h \
	Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h \
	Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleRangeHandle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleRangeHandle.h \
	Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleBackForwardList.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleBackForwardList.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleBackForwardListItem.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleBackForwardListItem.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleDOMWindowExtension.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleDOMWindowExtension.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleHitTestResult.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleHitTestResult.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleNavigationAction.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleNavigationAction.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageContextMenuClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageContextMenuClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageEditorClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageEditorClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFullScreenClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFullScreenClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePagePolicyClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePagePolicyClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageUIClient.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageUIClient.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleScriptWorld.cpp \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleScriptWorld.h \
	Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleUserMessageCoders.h \
	Source/WebKit2/WebProcess/KeyValueStorage/WebKeyValueStorageManager.cpp \
	Source/WebKit2/WebProcess/KeyValueStorage/WebKeyValueStorageManager.h \
	Source/WebKit2/WebProcess/MediaCache/WebMediaCacheManager.cpp \
	Source/WebKit2/WebProcess/MediaCache/WebMediaCacheManager.h \
	Source/WebKit2/WebProcess/Notifications/NotificationPermissionRequestManager.cpp \
	Source/WebKit2/WebProcess/Notifications/NotificationPermissionRequestManager.h \
	Source/WebKit2/WebProcess/Notifications/WebNotificationManager.cpp \
	Source/WebKit2/WebProcess/Notifications/WebNotificationManager.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/JSNPMethod.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/JSNPMethod.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/JSNPObject.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/JSNPObject.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginNone.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPJSObject.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPJSObject.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeObjectMap.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeObjectMap.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeUtilities.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeUtilities.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/gtk/PluginProxyGtk.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp \
	Source/WebKit2/WebProcess/Plugins/PluginController.h \
	Source/WebKit2/WebProcess/Plugins/Plugin.cpp \
	Source/WebKit2/WebProcess/Plugins/Plugin.h \
	Source/WebKit2/WebProcess/Plugins/PluginProcessConnection.cpp \
	Source/WebKit2/WebProcess/Plugins/PluginProcessConnection.h \
	Source/WebKit2/WebProcess/Plugins/PluginProcessConnectionManager.cpp \
	Source/WebKit2/WebProcess/Plugins/PluginProcessConnectionManager.h \
	Source/WebKit2/WebProcess/Plugins/PluginProxy.cpp \
	Source/WebKit2/WebProcess/Plugins/PluginProxy.h \
	Source/WebKit2/WebProcess/Plugins/PluginView.cpp \
	Source/WebKit2/WebProcess/Plugins/PluginView.h \
	Source/WebKit2/WebProcess/ResourceCache/WebResourceCacheManager.h \
	Source/WebKit2/WebProcess/ResourceCache/WebResourceCacheManager.cpp \
	Source/WebKit2/WebProcess/soup/WebSoupRequestManager.cpp \
	Source/WebKit2/WebProcess/soup/WebSoupRequestManager.h \
	Source/WebKit2/WebProcess/soup/WebKitSoupRequestGeneric.cpp \
	Source/WebKit2/WebProcess/soup/WebKitSoupRequestGeneric.h \
	Source/WebKit2/WebProcess/soup/WebKitSoupRequestInputStream.cpp \
	Source/WebKit2/WebProcess/soup/WebKitSoupRequestInputStream.h \
	Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebDragClientGtk.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebErrorsGtk.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebPopupMenuGtk.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/soup/WebFrameNetworkingContext.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/soup/WebFrameNetworkingContext.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebAlternativeTextClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebContextMenuClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebContextMenuClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebDatabaseManager.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebDatabaseManager.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebDragClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebDragClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebErrors.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebGeolocationClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebGeolocationClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebInspectorClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebInspectorClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebInspectorFrontendClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebInspectorFrontendClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebNotificationClient.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebNotificationClient.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebPopupMenu.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebPopupMenu.h \
	Source/WebKit2/WebProcess/WebCoreSupport/WebSearchPopupMenu.cpp \
	Source/WebKit2/WebProcess/WebCoreSupport/WebSearchPopupMenu.h \
	Source/WebKit2/WebProcess/WebPage/DecoderAdapter.cpp \
	Source/WebKit2/WebProcess/WebPage/DecoderAdapter.h \
	Source/WebKit2/WebProcess/WebPage/DrawingArea.cpp \
	Source/WebKit2/WebProcess/WebPage/DrawingArea.h \
	Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp \
	Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.h \
	Source/WebKit2/WebProcess/WebPage/EncoderAdapter.cpp \
	Source/WebKit2/WebProcess/WebPage/EncoderAdapter.h \
	Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp \
	Source/WebKit2/WebProcess/WebPage/EventDispatcher.h \
	Source/WebKit2/WebProcess/WebPage/FindController.cpp \
	Source/WebKit2/WebProcess/WebPage/FindController.h \
	Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp \
	Source/WebKit2/WebProcess/WebPage/TapHighlightController.h \
	Source/WebKit2/WebProcess/WebPage/gtk/WebInspectorGtk.cpp \
	Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.h \
	Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.cpp \
	Source/WebKit2/WebProcess/WebPage/gtk/WebPageGtk.cpp \
	Source/WebKit2/WebProcess/WebPage/gtk/WebPrintOperationGtk.cpp \
	Source/WebKit2/WebProcess/WebPage/gtk/WebPrintOperationGtk.h \
	Source/WebKit2/WebProcess/WebPage/LayerTreeHost.cpp \
	Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h \
	Source/WebKit2/WebProcess/WebPage/PageOverlay.cpp \
	Source/WebKit2/WebProcess/WebPage/PageOverlay.h \
	Source/WebKit2/WebProcess/WebPage/WebBackForwardListProxy.cpp \
	Source/WebKit2/WebProcess/WebPage/WebBackForwardListProxy.h \
	Source/WebKit2/WebProcess/WebPage/WebContextMenu.cpp \
	Source/WebKit2/WebProcess/WebPage/WebContextMenu.h \
	Source/WebKit2/WebProcess/WebPage/WebFrame.cpp \
	Source/WebKit2/WebProcess/WebPage/WebFrame.h \
	Source/WebKit2/WebProcess/WebPage/WebInspector.cpp \
	Source/WebKit2/WebProcess/WebPage/WebInspector.h \
	Source/WebKit2/WebProcess/WebPage/WebOpenPanelResultListener.cpp \
	Source/WebKit2/WebProcess/WebPage/WebOpenPanelResultListener.h \
	Source/WebKit2/WebProcess/WebPage/WebPage.cpp \
	Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.cpp \
	Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h \
	Source/WebKit2/WebProcess/WebPage/WebPage.h \
	Source/WebKit2/WebProcess/WebPage/WebUndoStep.cpp \
	Source/WebKit2/WebProcess/WebPage/WebUndoStep.h \
	Source/WebKit2/WebProcess/WebConnectionToUIProcess.cpp \
	Source/WebKit2/WebProcess/WebConnectionToUIProcess.h \
	Source/WebKit2/WebProcess/WebProcess.cpp \
	Source/WebKit2/WebProcess/WebProcess.h

if ENABLE_PLUGIN_PROCESS

webkit2_plugin_process_built_sources += \
	DerivedSources/WebKit2/NPObjectMessageReceiverMessageReceiver.cpp \
	DerivedSources/WebKit2/NPObjectMessageReceiverMessages.h \
	DerivedSources/WebKit2/PluginControllerProxyMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginControllerProxyMessages.h \
	DerivedSources/WebKit2/PluginProcessMessageReceiver.cpp \
	DerivedSources/WebKit2/PluginProcessMessages.h \
	DerivedSources/WebKit2/WebProcessConnectionMessageReceiver.cpp \
	DerivedSources/WebKit2/WebProcessConnectionMessages.h

webkit2_plugin_process_sources += \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoder.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoders.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentCoders.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.h \
	Source/WebKit2/Platform/CoreIPC/ArgumentEncoder.cpp \
	Source/WebKit2/Platform/CoreIPC/ArgumentEncoder.h \
	Source/WebKit2/Platform/CoreIPC/Arguments.h \
	Source/WebKit2/Platform/CoreIPC/Attachment.cpp \
	Source/WebKit2/Platform/CoreIPC/Attachment.h \
	Source/WebKit2/Platform/CoreIPC/BinarySemaphore.cpp \
	Source/WebKit2/Platform/CoreIPC/BinarySemaphore.h \
	Source/WebKit2/Platform/CoreIPC/Connection.cpp \
	Source/WebKit2/Platform/CoreIPC/Connection.h \
	Source/WebKit2/Platform/CoreIPC/CoreIPCMessageKinds.h \
	Source/WebKit2/Platform/CoreIPC/DataReference.cpp \
	Source/WebKit2/Platform/CoreIPC/DataReference.h \
	Source/WebKit2/Platform/CoreIPC/HandleMessage.h \
	Source/WebKit2/Platform/CoreIPC/MessageID.h \
	Source/WebKit2/Platform/CoreIPC/MessageSender.h \
	Source/WebKit2/Platform/CoreIPC/unix/AttachmentUnix.cpp \
	Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp \
	Source/WebKit2/Platform/Module.cpp \
	Source/WebKit2/Platform/Module.h \
	Source/WebKit2/Platform/WorkQueue.cpp \
	Source/WebKit2/Platform/WorkQueue.h \
	Source/WebKit2/Platform/SharedMemory.h \
	Source/WebKit2/Platform/gtk/ModuleGtk.cpp \
	Source/WebKit2/Platform/gtk/WorkQueueGtk.cpp \
	Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp \
	Source/WebKit2/PluginProcess/PluginControllerProxy.cpp \
	Source/WebKit2/PluginProcess/PluginControllerProxy.h \
	Source/WebKit2/PluginProcess/PluginCreationParameters.cpp \
	Source/WebKit2/PluginProcess/PluginCreationParameters.h \
	Source/WebKit2/PluginProcess/PluginProcess.cpp \
	Source/WebKit2/PluginProcess/PluginProcess.h \
	Source/WebKit2/PluginProcess/PluginProcessMain.h \
	Source/WebKit2/PluginProcess/WebProcessConnection.cpp \
	Source/WebKit2/PluginProcess/WebProcessConnection.h \
	Source/WebKit2/Shared/Plugins/PluginProcessCreationParameters.cpp \
	Source/WebKit2/Shared/Plugins/PluginProcessCreationParameters.h \
	Source/WebKit2/PluginProcess/gtk/PluginControllerProxyGtk.cpp \
	Source/WebKit2/PluginProcess/gtk/PluginProcessGtk.cpp \
	Source/WebKit2/PluginProcess/gtk/PluginProcessMainGtk.h \
	Source/WebKit2/PluginProcess/gtk/PluginProcessMainGtk.cpp \
	Source/WebKit2/Shared/ChildProcess.cpp \
	Source/WebKit2/Shared/ChildProcess.h \
	Source/WebKit2/Shared/ProcessExecutablePath.h \
	Source/WebKit2/Shared/Plugins/NPIdentifierData.cpp \
	Source/WebKit2/Shared/Plugins/NPIdentifierData.h \
	Source/WebKit2/Shared/Plugins/NPObjectMessageReceiver.cpp \
	Source/WebKit2/Shared/Plugins/NPObjectMessageReceiver.h \
	Source/WebKit2/Shared/Plugins/NPObjectProxy.cpp \
	Source/WebKit2/Shared/Plugins/NPObjectProxy.h \
	Source/WebKit2/Shared/Plugins/NPRemoteObjectMap.cpp \
	Source/WebKit2/Shared/Plugins/NPRemoteObjectMap.h \
	Source/WebKit2/Shared/Plugins/NPVariantData.cpp \
	Source/WebKit2/Shared/Plugins/NPVariantData.h \
	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.cpp \
	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h \
	Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp \
	Source/WebKit2/Shared/ShareableBitmap.cpp \
	Source/WebKit2/Shared/ShareableBitmap.h \
	Source/WebKit2/Shared/WebCoreArgumentCoders.cpp \
	Source/WebKit2/Shared/WebCoreArgumentCoders.h \
	Source/WebKit2/Shared/WebEvent.cpp \
	Source/WebKit2/Shared/WebEvent.h \
	Source/WebKit2/Shared/WebKeyboardEvent.cpp \
	Source/WebKit2/Shared/WebMouseEvent.cpp \
	Source/WebKit2/Shared/WebWheelEvent.cpp \
	Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebKeyboardEventGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebWheelEventGtk.cpp \
	Source/WebKit2/Shared/gtk/NativeWebMouseEventGtk.cpp \
	Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp \
	Source/WebKit2/Shared/gtk/WebEventFactory.cpp \
	Source/WebKit2/Shared/cairo/ShareableBitmapCairo.cpp \
	Source/WebKit2/UIProcess/Plugins/gtk/PluginProcessProxyGtk.cpp \
	Source/WebKit2/WebProcess/Plugins/Plugin.cpp \
	Source/WebKit2/WebProcess/Plugins/Plugin.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeUtilities.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NPRuntimeUtilities.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.cpp \
	Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.h \
	Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp \
	Source/WebKit2/gtk/PluginMainGtk.cpp

endif # ENABLE_PLUGIN_PROCESS