forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10167 lines (6262 loc) · 337 KB
/
ChangeLog
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
2022-01-20 Elliott Williams <[email protected]>
[XCBuild] Build via the workspace with USE_WORKSPACE=YES
https://bugs.webkit.org/show_bug.cgi?id=235385
rdar://87489695
Reviewed by Alexey Proskuryakov.
Experimental XCBuild support is available by passing USE_WORKSPACE=YES to Make. This is
roughly equivalent to opening WebKit.xcworkspace and building a scheme in the IDE.
A workspace build is only one `xcodebuild` invocation, in contrast with the traditional
recursive-Make build that iterates through each project directory. As a result, workspace
builds are faster: the build system can schedule targets from different projects to build
simultaneously, and there's lower xcodebuild overhead.
Workspaces build _schemes_, which are a collection of targets. By default, Make looks for a
scheme whose name matches the source directory (Source/WebCore => build scheme "WebCore").
Makefiles can customize this by setting SCHEME.
At this time, there is no guarantee of correctness when building with USE_WORKSPACE=YES, and
workspace builds are not checked by builders.
* Makefile: Use workspace logic when USE_WORKSPACE=YES
* Makefile.shared: xcodebuild invocation logic for workspace builds
* Source/Makefile: Use workspace logic and set custom SCHEME name
* WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: Use XCBuild for workspace
builds
* WebKit.xcworkspace/xcshareddata/xcschemes/All Modules.xcscheme: Added, to correspond with
the top-level Makefile
* WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Let XCBuild determine build
order
* WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Let XCBuild determine build
order
2022-01-20 Don Olmstead <[email protected]>
[WinCairo] Make USE_CF conditional on ENABLE_WEBKIT_LEGACY
https://bugs.webkit.org/show_bug.cgi?id=235393
Reviewed by Fujii Hironori.
CoreFoundation is used heavily in WebKitLegacy on Windows and won't compile without it.
Modern WebKit doesn't have this requirement so tie CoreFoundation usage to whether
WebKitLegacy is being used.
* Source/cmake/OptionsWinCairo.cmake:
2022-01-19 Michael Catanzaro <[email protected]>
[WPE][GTK] ENABLE_JOURNALD_LOG has weird value
https://bugs.webkit.org/show_bug.cgi?id=235339
Reviewed by Philippe Normand.
Clean up the code that checks for journald.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2022-01-18 Brandon Stewart <[email protected]>
Fix typos in Introduction.md
https://bugs.webkit.org/show_bug.cgi?id=235321
Reviewed by Michael Saboff.
Fix several typos in Introduction file.
* Introduction.md:
2022-01-17 Brandon Stewart <[email protected]>
Fix typo in README
https://bugs.webkit.org/show_bug.cgi?id=235309
Reviewed by Michael Saboff.
Fix typo in ReadMe. Updated 'embededded' to 'embedded'.
* ReadMe.md:
2022-01-17 Carlos Garcia Campos <[email protected]>
[GTK][a11y] Stop using isolated tree for the ATSPI implementation
https://bugs.webkit.org/show_bug.cgi?id=235229
Reviewed by Adrian Perez de Castro.
Do not enable isolated tree for ATSPI.
* Source/cmake/OptionsGTK.cmake:
2022-01-14 Yusuke Suzuki <[email protected]> and Mikhail R. Gadelha <[email protected]>
[JSC] Fix Linux 64bit compilation
https://bugs.webkit.org/show_bug.cgi?id=235232
Reviewed by Saam Barati.
* Source/cmake/OptionsCommon.cmake:
2022-01-13 Alejandro G. Castro <[email protected]>
[GTK][WPE][WebGL2] compilation fixes
https://bugs.webkit.org/show_bug.cgi?id=225563
Reviewed by Chris Lord.
Fix the compilation and add the ANGLE dependency, the architecture
is still not the final one but it is handy to use WebGL2 demos for
testing already.
* Source/cmake/OptionsGTK.cmake: Added dependency with ANGLE.
* Source/cmake/OptionsWPE.cmake: Added dependency with
ANGLE. Remove the default ENABLE_WEBGL2 because it is the same
default value in WebKitFeatures.cmake.
2022-01-12 Chris Lord <[email protected]>
[WPE] Fix building WebXR with ANGLE enabled
https://bugs.webkit.org/show_bug.cgi?id=235108
Reviewed by Alejandro G. Castro.
Remove conflict between WebXR and ANGLE WebGL for WPE.
* Source/cmake/OptionsWPE.cmake:
2022-01-12 Chris Lord <[email protected]>
[WPE] Enable WebGL ANGLE support
https://bugs.webkit.org/show_bug.cgi?id=235064
Reviewed by Alejandro G. Castro.
Add the USE_ANGLE_WEBGL option for WPE. This is currently incompatible
with WebXR as there isn't an ANGLE GL context code-path there.
* Source/cmake/OptionsWPE.cmake:
2022-01-11 Fujii Hironori <[email protected]>
Remove Direct2D code (part 2)
https://bugs.webkit.org/show_bug.cgi?id=235097
Reviewed by Yusuke Suzuki.
* Source/cmake/OptionsAppleWin.cmake:
2022-01-10 Alex Christensen <[email protected]>
Start using C++20
https://bugs.webkit.org/show_bug.cgi?id=233963
Reviewed by Yusuke Suzuki.
* Source/cmake/OptionsCommon.cmake:
* Source/cmake/WebKitCompilerFlags.cmake:
2022-01-09 Sam Weinig <[email protected]>
Remove support for Direct2D
https://bugs.webkit.org/show_bug.cgi?id=234999
Reviewed by Darin Adler.
* Source/cmake/OptionsFTW.cmake: Removed.
2022-01-07 Alex Christensen <[email protected]>
Unreviewed, reverting r287698.
Broke an internal build
Reverted changeset:
"Start using C++20"
https://bugs.webkit.org/show_bug.cgi?id=233963
https://commits.webkit.org/r287698
2022-01-07 Alex Christensen <[email protected]>
Unreviewed, reverting r287718.
Broke an internal build
Reverted changeset:
"[PlayStation] Fix build break after r287698"
https://bugs.webkit.org/show_bug.cgi?id=234931
https://commits.webkit.org/r287718
2022-01-06 Stephan Szabo <[email protected]>
[PlayStation] Fix build break after r287698
https://bugs.webkit.org/show_bug.cgi?id=234931
Unreviewed build fix
* Source/cmake/OptionsPlayStation.cmake: Workaround for not having u8string for gtest.
2022-01-06 Fujii Hironori <[email protected]>
[MSVC] Suppress new warnings C5054 and C5055 introduced by /permissive-
https://bugs.webkit.org/show_bug.cgi?id=234929
Reviewed by Ross Kirsling.
After 245790@main enabled C++20 which implicitly enabled
/permissive- switch, WinCairo builds emit a lot of new compilation
warnings.
* Source/cmake/OptionsMSVC.cmake: Suppress the warnings.
2022-01-06 Alex Christensen <[email protected]>
Start using C++20
https://bugs.webkit.org/show_bug.cgi?id=233963
Reviewed by Yusuke Suzuki.
* Source/cmake/OptionsCommon.cmake:
* Source/cmake/WebKitCompilerFlags.cmake:
2022-01-05 Jonathan Bedard <[email protected]>
[EWS] Add Commit Queue and EWS GitHub usernames
https://bugs.webkit.org/show_bug.cgi?id=234905
<rdar://problem/87169628>
Reviewed by Ryan Haddad.
* metadata/contributors.json:
2022-01-04 Fujii Hironori <[email protected]>
clang-format: Change SpaceAfterTemplateKeyword to false
https://bugs.webkit.org/show_bug.cgi?id=234655
Reviewed by Don Olmstead.
Bug 183302 added the initial .clang-format file which were
including SpaceAfterTemplateKeyword:true. However, even though it
is undocumented, typical WebKit code is using a style having no
space ater the `template` keyword.
* .clang-format:
2022-01-01 Jeff Miller <[email protected]>
Update user-visible copyright strings to include 2022
https://bugs.webkit.org/show_bug.cgi?id=234263
Reviewed by Anders Carlsson.
* Source/cmake/tools/scripts/COPYRIGHT-END-YEAR:
2021-12-25 Sergey Rubanov <[email protected]>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231666
Reviewed by Alexey Proskuryakov.
* metadata/contributors.json:
2021-12-24 Simon Fraser <[email protected]>
Add __pycache__ and DerivedData to the .gitignore file
https://bugs.webkit.org/show_bug.cgi?id=234656
Reviewed by Daniel Bates.
* .gitignore:
2021-12-23 Fujii Hironori <[email protected]>
REGRESSION(r287412)[WinCairo] error C2338: You've instantiated std::aligned_storage<Len, Align> with an extended alignment (in other words, Align > alignof(max_align_t)).
https://bugs.webkit.org/show_bug.cgi?id=234658
Unreviewed build fix.
After r287412, WinCairo Debug can't compile due to the following error.
> C:\MSVS\VC\Tools\MSVC\14.28.29910\include\type_traits(1066):
> error C2338: You've instantiated std::aligned_storage<Len, Align> with an extended alignment (in other words, Align > alignof(max_align_t)).
> Before VS 2017 15.8, the member "type" would non-conformingly have an alignment of only alignof(max_align_t).
> VS 2017 15.8 was fixed to handle this correctly, but the fix inherently changes layout and breaks binary compatibility
> (*only* for uses of aligned_storage with extended alignments).
> Please define either (1) _ENABLE_EXTENDED_ALIGNED_STORAGE to acknowledge that you understand this message and that you actually want a type with an extended alignment,
> or (2) _DISABLE_EXTENDED_ALIGNED_STORAGE to silence this message and get the old non-conforming behavior.
* Source/cmake/OptionsMSVC.cmake: Added _ENABLE_EXTENDED_ALIGNED_STORAGE macro.
2021-12-23 ChangSeok Oh <[email protected]>
Add changseok's github username.
Unreviewed.
* metadata/contributors.json:
2021-12-15 Chris Lord <[email protected]>
[GTK] Use libgbm and the ANGLE gbm backend to fix initialisation
https://bugs.webkit.org/show_bug.cgi?id=234293
Reviewed by Don Olmstead.
Add cmake files to find gbm and libdrm.
* Source/cmake/FindGBM.cmake: Added.
* Source/cmake/FindLibDRM.cmake: Added.
2021-12-11 Aakash Jain <[email protected]>
Update my github username.
Unreviewed.
* metadata/contributors.json:
2021-12-10 Mikhail R. Gadelha <[email protected]>
Mark myself (Mikhail R. Gadelha) as committer
https://bugs.webkit.org/show_bug.cgi?id=234157
Unreviewed.
* metadata/contributors.json:
2021-12-10 Chris Lord <[email protected]>
Change contributor status of Chris Lord from committer to reviewer
https://bugs.webkit.org/show_bug.cgi?id=234136
Unreviewed.
* metadata/contributors.json:
2021-12-09 Lauro Moura <[email protected]>
Adds Lauro Moura's GitHub username to constributors.json
Unreviewed.
* metadata/contributors.json:
2021-11-30 Tyler Wilcock <[email protected]>
Move [email protected] to first entry in "emails" key
Unreviewed.
In order to cq+, your committer e-mail address must be the
first entry in the "emails" key.
* metadata/contributors.json:
2021-11-29 Tyler Wilcock <[email protected]>
Mark myself (Tyler Wilcock) as committer
Unreviewed.
* metadata/contributors.json:
2021-11-29 Angelos Oikonomopoulos <[email protected]>
Fix ATOMICS_REQUIRE_LIBATOMIC testcase on 32-bits
https://bugs.webkit.org/show_bug.cgi?id=233551
Unreviewed build fix.
There's a syntax error when compiling the test program
on 32-bits. This was not an issue on ARM as atomics are
built in on that platform, but broke the MIPS build.
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-29 Nikolas Zimmermann <[email protected]>
[LBSE] Add runtime flag for Layer-based SVG engine (LBSE)
https://bugs.webkit.org/show_bug.cgi?id=233211
<rdar://problem/85711597>
Reviewed by Sam Weinig.
Add build option ('build-webkit --(no-)layer-based-svg-engine') and
runtime flag ('LayerBasedSVGEngineEnabled' in LBSE enabled builds) to
switch between the SVG engines.
The actual SVG code changes will follow in subsequent patches,
this just adds the infrastructure for LBSE.
* Source/cmake/OptionsFTW.cmake:
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsMac.cmake:
* Source/cmake/OptionsPlayStation.cmake:
* Source/cmake/OptionsWPE.cmake:
* Source/cmake/OptionsWin.cmake:
* Source/cmake/WebKitFeatures.cmake:
2021-11-28 Matt Woodrow <[email protected]>
Add mattwoodrow to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233301
Reviewed by Cameron McCormack.
* metadata/contributors.json:
2021-11-28 Myles C. Maxfield <[email protected]>
[WebGPU] Add WebGPU to the "All Source" scheme in WebKit.xcworkspace
https://bugs.webkit.org/show_bug.cgi?id=233542
Reviewed by Dean Jackson.
This scheme should build WebGPU.
* WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2021-11-27 Yusuke Suzuki <[email protected]>
Unreviewed, update atomics detection to make libpas built on Linux
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-26 Adrian Perez de Castro <[email protected]>
Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.35.1 release
* Source/cmake/OptionsWPE.cmake: Bump version numbers.
2021-11-25 Carlos Garcia Campos <[email protected]>
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.35.1 release
* Source/cmake/OptionsGTK.cmake: Bump version numbers.
2021-11-23 Adrian Perez de Castro <[email protected]>
[WPE][GTK] Allow enabling JPEG-XL support at build time
https://bugs.webkit.org/show_bug.cgi?id=233325
Reviewed by Michael Catanzaro.
Adds a new USE_JPEGXL build option, disabled by default for release builds and
enabled for developer builds.
* Source/cmake/OptionsGTK.cmake: Add USE_JPEGXL build option.
* Source/cmake/OptionsWPE.cmake: Ditto.
2021-11-22 Alejandro G. Castro <[email protected]>
Add alexg's GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233425
Unreviewed.
* metadata/contributors.json:
2021-11-19 Angelos Oikonomopoulos <[email protected]>
[JSC] Workaround for failing mips tests
https://bugs.webkit.org/show_bug.cgi?id=233359
Reviewed by Adrian Perez de Castro.
Add a compiler flag on GCC+mips to work around a code generation bug
resulting in SIGBUS. This only manifests when running 32-bit mips code
on mips64 hardware (which the buildbots do).
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-18 Yoshiaki Jitsukawa <[email protected]>
Implement JPEG XL image decoder using libjxl
https://bugs.webkit.org/show_bug.cgi?id=233113
Reviewed by Michael Catanzaro.
This patch introduces the initial version of JPEG XL image decoder.
JPEG XL is a royalty-free raster-graphics file format that supports
both lossy and lossless compression and is experimentally supported by
Chrome, FireFox, and Edge.
The image decoder implemented by this patch uses libjxl, a reference
implementation of JPEG XL decoder (and encoder). JPEG XL animations
will be supported later.
* Source/cmake/FindJPEGXL.cmake: Added.
* Source/cmake/OptionsWinCairo.cmake: Enable JPEG XL support if
libjxl is available.
2021-11-17 Patrick Angle <[email protected]>
Update my (Patrick Angle's) status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=233270
Unreviewed.
Update my status to reviewer, as well as drive-by updates to set my github name and update the area of
expertise.
* metadata/contributors.json:
2021-11-17 Chris Lord <[email protected]>
Add Chris Lord's GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233254
Unreviewed
* metadata/contributors.json:
2021-11-16 Alex Atwater <[email protected]>
Add my GitHub username to contributors.json
Reviewed by Jonathan Bedard
* metadata/contributors.json:
2021-11-15 Nikolas Zimmermann <[email protected]>
Add my GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233122
Unreviewed.
* metadata/contributors.json:
2021-11-13 Myles C. Maxfield <[email protected]>
[WebGPU] Add WebGPU.xcodeproj to WebKit.xcworkspace
https://bugs.webkit.org/show_bug.cgi?id=233078
Reviewed by Dean Jackson.
Mechanical change. When building WebGPU becomes required,
people using this workspace will need it.
* WebKit.xcworkspace/contents.xcworkspacedata:
2021-11-12 Don Olmstead <[email protected]>
[WinCairo] Add Little-CMS support
https://bugs.webkit.org/show_bug.cgi?id=233024
Reviewed by Michael Catanzaro.
Search for LCMS2 and if its present turn it on for WinCairo.
* Source/cmake/OptionsWinCairo.cmake:
2021-11-11 Michael Catanzaro <[email protected]>
-Warray-bounds, -Wstringop-truncation, -Wstringop-overread warnings in Packed.h
https://bugs.webkit.org/show_bug.cgi?id=226557
<rdar://problem/79103658>
Reviewed by Darin Adler.
Suppress -Wstringop-overread for all of WebKit when building with GCC 11 or newer. This is
an unfortunate way to deal with false positives that we ought to be able to silence in just
a few places, but when warnings do not respect pragmas we have few alternatives, and trying
to remove derived sources from the unified build in order to build them with special flags
is just not worth the effort.
This is part of a larger trend of oversensitive warnings from GCC 11.
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-10 Kimmo Kinnunen <[email protected]>
Coding style for inner namespaces is should be simplified to not indented
https://bugs.webkit.org/show_bug.cgi?id=232073
Reviewed by Antti Koivisto.
* .clang-format:
Do not indent contents of inner namespaces, match current code.
2021-11-09 J Pascoe <[email protected]>
Add j_pascoe to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232904
<rdar://problem/85222703>
Unreviewed.
* metadata/contributors.json:
2021-11-08 Myles C. Maxfield <[email protected]>
Make WebGPU.xcodeproj and WebGPU.framework
https://bugs.webkit.org/show_bug.cgi?id=231661
Reviewed by Dean Jackson and Robin Morisset.
* Source/Makefile:
2021-11-08 Peng Liu <[email protected]>
Update Peng Liu's contributor status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=232859
Unreviewed.
* metadata/contributors.json:
2021-11-08 Cameron McCormack <[email protected]>
Update my status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=232854
Unreviewed.
* metadata/contributors.json:
2021-11-04 Roy Reapor <[email protected]>
Update rreapor's status in contributors.json.
https://bugs.webkit.org/show_bug.cgi?id=232685
Reviewed by Aakash Jain.
* metadata/contributors.json:
2021-11-04 Diego Pino Garcia <[email protected]>
Disable MEDIA_SESSION_PLAYLIST in WebKitGTK and WPE
https://bugs.webkit.org/show_bug.cgi?id=232694
Reviewed by Žan Doberšek.
Since the feature depends on MEDIA_SESSION_COORDINATOR, whichs is
disabled, this feature should also be disabled and not experimental.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-11-03 Pablo Saavedra <[email protected]>
[cmake] Check "cortex" string in the CMAKE_SYSTEM_PROCESSOR for defining WTF_CPU_* vars
https://bugs.webkit.org/show_bug.cgi?id=232623
Reviewed by Carlos Alberto Lopez Perez.
* Source/cmake/WebKitCommon.cmake:
2021-11-01 Don Olmstead <[email protected]>
[Curl] Explicitly disable libcurl's internal cookie support
https://bugs.webkit.org/show_bug.cgi?id=232586
Reviewed by Ross Kirsling.
Setting CURLOPT_COOKIEFILE to NULL to disable the cookie engine was not added till 7.77.0
so require that version or later.
* Source/cmake/OptionsPlayStation.cmake:
* Source/cmake/OptionsWinCairo.cmake:
2021-11-01 David Kilzer <[email protected]>
Add ddkilzer's GitHub name to contributors.json
<https://webkit.org/b/232587>
Reviewed by Jonathan Bedard.
* metadata/contributors.json:
2021-11-01 Robert Jenner <[email protected]>
Add my GitHub name (robert-jenner) to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232581
Reviewed by Jonathan Bedard.
* metadata/contributors.json:
2021-11-01 Beth Dakin <[email protected]>
Add my GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232495
Reviewed by Alexey Proskuryakov.
* metadata/contributors.json:
2021-11-01 BJ Burg <[email protected]>
Add bburg's GitHub username to contributors.json.
Unreviewed.
* metadata/contributors.json:
Also, canonicalize a recent change.
2021-10-31 Fujii Hironori <[email protected]>
[WinCairo] New GraphicsLayer for GPU process mode
https://bugs.webkit.org/show_bug.cgi?id=228308
Reviewed by Don Olmstead.
* Source/cmake/OptionsWinCairo.cmake:
2021-10-29 Oriol Brufau <[email protected]>
Add Aakash's GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-29 Oriol Brufau <[email protected]>
Add obrufau's GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-28 Myles C. Maxfield <[email protected]>
The space glyph in the Filicudi font is not substituted by shaping in the complex text codepath, thereby breaking the visual effect of the font
https://bugs.webkit.org/show_bug.cgi?id=232293
Reviewed by Darin Adler.
Big thanks to Ulrike Rausch and Frank Grießhammer for contributing the test font!!!
* metadata/contributors.json:
2021-10-28 Aditya Keerthi <[email protected]>
Add Aditya Keerthi as a reviewer
https://bugs.webkit.org/show_bug.cgi?id=232450
Unreviewed.
* metadata/contributors.json:
Add myself as a reviewer, and add GitHub username.
2021-10-27 Roy Reapor <[email protected]>
Add rreapor's GitHub username to contributors.json.
https://bugs.webkit.org/show_bug.cgi?id=232385
Reviewed by Aakash Jain.
* metadata/contributors.json:
2021-10-26 Adrian Perez de Castro <[email protected]>
Unreviewed. [WPE] Bump version numbers
* Source/cmake/OptionsWPE.cmake:
2021-10-26 Adrian Perez de Castro <[email protected]>
Multiple build issues with ENABLE_VIDEO=OFF
https://bugs.webkit.org/show_bug.cgi?id=232264
Reviewed by Carlos Garcia Campos.
* Source/cmake/WebKitFeatures.cmake: Make ENABLE_MEDIA_SESSION depend on ENABLE_VIDEO.
2021-10-25 Jonathan Bedard <[email protected]>
Add GitHub usernames for bedison and darinadler
Unreviewed.
* metadata/contributors.json: Add beidson and darinadler.
2021-10-25 Zan Dobersek <[email protected]>
Add zdobersek's GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232234
Unreviewed.
* metadata/contributors.json:
2021-10-25 Martin Robinson <[email protected]>
Add mrobinson's GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232232
Unreviewed.
* metadata/contributors.json:
2021-10-24 Alexey Shvayka <[email protected]>
Add my GitHub username to contributors.json and update credentials
Unreviewed.
* metadata/contributors.json:
2021-10-22 Guillaume Emont <[email protected]>
Add Guillaume Emont's github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232144
Unreviewed.
* metadata/contributors.json:
2021-10-22 Pablo Correa Gómez <[email protected]>
Enable logging under non-systemd linux distros
https://bugs.webkit.org/show_bug.cgi?id=232080
Reviewed by Michael Catanzaro.
* Source/cmake/FindJournald.cmake: Renamed from Source/cmake/FindSystemd.cmake.
* Source/cmake/OptionsGTK.cmake: Replace USE_SYSTEMD for
ENABLE_JOURNALD_LOG
* Source/cmake/OptionsWPE.cmake: Replace USE_SYSTEMD for
ENABLE_JOURNALD_LOG
2021-10-21 Eric Carlson <[email protected]>
Add GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232131
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-21 Chris Lord <[email protected]>
[WPE][GTK] Enable smooth scrolling by default
https://bugs.webkit.org/show_bug.cgi?id=220512
Reviewed by Carlos Garcia Campos.
Build smooth scrolling by default on WPE to match other platforms.
* Source/cmake/OptionsWPE.cmake:
2021-10-20 Kimmo Kinnunen <[email protected]>
Add ObjC as supported .clang-format language
https://bugs.webkit.org/show_bug.cgi?id=230401
Reviewed by Jonathan Bedard.
Add ObjC and change few properties useful
for ObjC formatting.
* .clang-format:
2021-10-20 Carlos Garcia Campos <[email protected]>
[WPE] Reenable -fvisibility=hidden and -fvisibility-inlines-hidden
https://bugs.webkit.org/show_bug.cgi?id=222860
Reviewed by Don Olmstead.
* Source/cmake/OptionsWPE.cmake:
2021-10-19 Ross Kirsling <[email protected]>
[CMake] Align OptionsMac with Xcode build
https://bugs.webkit.org/show_bug.cgi?id=231982
Reviewed by Don Olmstead.
* Source/cmake/OptionsMac.cmake:
Ensure that the listed options (1) are not redundant with the defaults in WebKitFeatures.cmake and
(2) match the options for the Xcode build as closely as possible.
* Source/cmake/WebKitFeatures.cmake:
Remove an outdated feature, ENABLE_APPLE_PAY_SESSION_V9,
and let ENABLE_MAC_GESTURE_EVENTS be handled by PlatformEnable, since it depends on USE_APPLE_INTERNAL_SDK.
2021-10-19 Tyler Wilcock <[email protected]>
Add AX team GitHub usernames to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231966
Reviewed by Chris Fleizach.
* metadata/contributors.json:
Add Chris Fleizach's and Andres Gonzalez's GitHub usernames. Add Tyler
Wilcock as a contributor. Run validate-committer-lists --canonicalize
to fix some style issues.
2021-10-19 Sergio Villar Senin <[email protected]>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-18 Ms2ger <[email protected]>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231893
Unreviewed.
* metadata/contributors.json:
2021-10-18 Rob Buis <[email protected]>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231889
Reviewed by Manuel Rego Casasnovas.
* metadata/contributors.json:
2021-10-18 Xan Lopez <[email protected]>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231887
Unreviewed.
* metadata/contributors.json: add my github username.
2021-10-18 Miguel Gomez <[email protected]>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-16 Tetsuharu Ohzeki <[email protected]>
Add github username for tetsuharuohzeki to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231864
Reviewed by Fujii Hironori.
* metadata/contributors.json:
2021-10-16 Angelos Oikonomopoulos <[email protected]>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231861
Unreviewed.
* metadata/contributors.json:
2021-10-16 Caitlin Potter <[email protected]>
Add github username for myself
https://bugs.webkit.org/show_bug.cgi?id=231857
Reviewed by Yusuke Suzuki.
* metadata/contributors.json:
2021-10-15 Basuke Suzuki <[email protected]>
Add flag to turn off Iso heap
https://bugs.webkit.org/show_bug.cgi?id=231823
Reviewed by Yusuke Suzuki.
Added USE_ISO_MALLOC feature flags which is on by default for most platforms.
* Source/cmake/OptionsPlayStation.cmake:
* Source/cmake/WebKitFeatures.cmake:
2021-10-15 Ross Kirsling <[email protected]>
Realize Mac CMake build of WebCore and WebKit
https://bugs.webkit.org/show_bug.cgi?id=231749
Reviewed by Alex Christensen.
* Source/cmake/OptionsMac.cmake:
* Source/cmake/WebKitMacros.cmake:
2021-10-15 Jonathan Bedard <[email protected]>
Add github username for Dewei Zhu
Unreviewed.
* metadata/contributors.json:
2021-10-15 Andres Gonzalez <[email protected]>