1 2018-09-28 Mike Gorse <mgorse@alum.wpi.edu>
3 cmake cannot run if python 2 isn't available
4 https://bugs.webkit.org/show_bug.cgi?id=190075
6 Reviewed by Michael Catanzaro.
8 * Source/cmake/WebKitCommon.cmake: Set Python_ADDITIONAL_VERSIONS
9 to 3, so that a python3 binary will be found.
11 2018-09-28 Yusuke Suzuki <yusukesuzuki@slowstart.org>
13 [WTF] Make isMainThread more reliable
14 https://bugs.webkit.org/show_bug.cgi?id=189880
18 * Source/cmake/OptionsCommon.cmake:
20 2018-09-21 Yusuke Suzuki <yusukesuzuki@slowstart.org>
22 [JSC] Enable LLInt ASM interpreter on X64 and ARM64 in non JIT configuration
23 https://bugs.webkit.org/show_bug.cgi?id=189778
25 Reviewed by Keith Miller.
27 ENABLE_SAMPLING_PROFILER does not depend on ENABLE_JIT now since it can be
28 used with LLInt ASM interpreter.
30 * Source/cmake/WebKitFeatures.cmake:
32 2018-09-21 Mike Gorse <mgorse@suse.com>
34 Build tools should work when the /usr/bin/python is python3
35 https://bugs.webkit.org/show_bug.cgi?id=156674
37 Reviewed by Michael Catanzaro.
39 * Source/cmake/WebKitCommon.cmake: Allow python 3.
41 2018-09-20 Carlos Garcia Campos <cgarcia@igalia.com>
43 Unreviewed. Update GTK+ library versions after r235362.
45 Project version number was updated without bumping the library versions too.
47 * Source/cmake/OptionsGTK.cmake:
49 2018-09-12 Dan Bernstein <mitz@apple.com>
51 Updated svn:ignore after r235381.
53 * .: Added LocalOverrides.xcconfig to svn:ignore.
55 2018-09-12 Dan Bernstein <mitz@apple.com>
57 Removed a couple of empty directories left behind after r235892.
59 * WPEWebCore: Removed.
60 * downstream-WebCore: Removed.
62 2018-09-10 Tim Horton <timothy_horton@apple.com>
64 Make it easier to build for SDK_VARIANT=iosmac
65 https://bugs.webkit.org/show_bug.cgi?id=189488
66 <rdar://problem/38254840>
68 Reviewed by Wenson Hsieh.
73 Set a variety of build flags (disable libwebrtc, tools, and set
74 SDK_VARIANT and WK_ALTERNATE_FRAMEWORKS_DIR).
76 2018-08-30 Don Olmstead <don.olmstead@sony.com>
78 [CMake] Replace AVFoundationSupport.py using CMake
79 https://bugs.webkit.org/show_bug.cgi?id=182891
81 Reviewed by Per Arne Vollan.
83 Adds CMake checks for AVFoundation support replacing the functionality
84 of AVFoundationSupport.py.
86 CMake is used to detect the symbols expected with the HAVE_* checks for
87 AVFoundation support. This involves creating source files that will be
88 built which verifies the presence of symbols. For Apple frameworks it
89 is customary to include the main framework file which includes the
90 other associated headers.
92 The check for HAVE_AVCFPLAYERITEM_CALLBACK_VERSION_2 involves looking
93 for an enumeration which a symbol check cannot detect. Instead a small
94 program is used which will compile and link when the version 2
95 enumeration is present.
97 * Source/cmake/OptionsAppleWin.cmake:
98 * Source/cmake/OptionsWin.cmake:
99 * Source/cmake/WebKitCommon.cmake:
100 * Source/cmake/WebKitFeatures.cmake:
102 2018-08-28 Don Olmstead <don.olmstead@sony.com>
104 [CMake] Use CMake's FindFreetype
105 https://bugs.webkit.org/show_bug.cgi?id=189071
107 Reviewed by Michael Catanzaro.
109 Use the builtin CMake functionality for finding Freetype.
111 * Source/cmake/FindFreetype2.cmake: Removed.
112 * Source/cmake/OptionsGTK.cmake:
113 * Source/cmake/OptionsWPE.cmake:
115 2018-08-27 Aditya Keerthi <akeerthi@apple.com>
117 Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER
118 https://bugs.webkit.org/show_bug.cgi?id=188931
120 Reviewed by Wenson Hsieh.
122 * Source/cmake/OptionsMac.cmake: Removed ENABLE_INPUT_TYPE_COLOR_POPOVER.
123 * Source/cmake/WebKitFeatures.cmake: Removed ENABLE_INPUT_TYPE_COLOR_POPOVER.
125 2018-08-27 Keith Rollin <krollin@apple.com>
127 Build system support for LTO
128 https://bugs.webkit.org/show_bug.cgi?id=187785
129 <rdar://problem/42353132>
131 Reviewed by Dan Bernstein.
133 Add support for building WebKit with LTO (Link Time Optimization) on
134 macOS and iOS. Both variations are supported: "full" (which performs
135 all the optimizations it can regardless of the cost) and "thin" (which
136 sacrifices some optimizations in order to recover build time and
139 By default, LTO is disabled for Debug and Release builds, but is
140 enabled for Production builds. For Debug and Release builds, LTO is
141 controlled as follows:
143 - When using `make` from the command line, include
144 WK_LTO_MODE={none,thin,full}. For example, `make WK_LTO_MODE=full
145 release`. As when specifying debug/release, the LTO configuration
146 information is written to the WebKitBuild directory and is used as
147 the default on the next build if a new setting is not specified.
149 - When using `build-webkit`, include --lto-mode={none,thin,full} on
150 the command line. For example, `build-webkit --lto-mode=full ...`.
152 - When using Xcode, create a configuration file called
153 LocalOverrides.xcconfig at the root level of your WebKit checkout
154 directory. Include within it a line that says:
156 WK_LTO_MODE={none,thin,full}
162 Note that LocalOverrides.xcconfig is included in the .gitignore file,
163 so you won't accidentally check your changes into source control.
165 Enabling LTO can greatly increase build times, especially when using
166 "full" LTO with 32GB or RAM or less. Following is a table of full
167 build times for a Release build on a fully decked-out 2017 iMac Pro:
170 ----- ------- -------
172 Thin: 11m 44s 17m 30s
173 Full: 21m 39s 28m 56s
175 Incremental times are affected even more greatly. The actual
176 optimization and compilation of LLVM bitcode is moved to the link
177 phase, meaning that the link phase, which previously took only
178 seconds, can now take many minutes. It's for this reason that LTO is
179 not enabled in Debug and Release builds, since incremental builds are
180 an integral part of those configurations. However, using the
181 mechanisms described above, developers can perform optional LTO builds
182 if needed to track down build or runtime issues in that configuration.
184 * .gitignore: Include LocalOverrides.xcconfig.
185 * Makefile.shared: Add support for WK_LTO_MODE on the command line.
187 2018-08-27 Michael Catanzaro <mcatanzaro@igalia.com>
189 Unreviewed, bump WPE/GTK version numbers
191 We have a pkg-config dependency on 2.21.92 but trunk is stuck on 2.21.5. So bump the version
192 number to 2.23.0. It seems like a good version number to use until the next real release
195 * Source/cmake/OptionsGTK.cmake:
196 * Source/cmake/OptionsWPE.cmake:
198 2018-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
200 [CMake] Remove stale comment from WebKitFeatures.cmake
201 https://bugs.webkit.org/show_bug.cgi?id=188918
203 Reviewed by Fujii Hironori.
205 This comment at the top of WebKitFeatures.cmake is no longer accurate because feature defaults are no longer defined in FeatureList.pm (thank goodness!)
207 * Source/cmake/WebKitFeatures.cmake:
209 2018-08-23 Don Olmstead <don.olmstead@sony.com>
211 [CMake] Have checks are not getting set inside CMake properly
212 https://bugs.webkit.org/show_bug.cgi?id=188901
214 Reviewed by Michael Catanzaro.
216 Make sure the variable's value is sent to SET_AND_EXPOSE_TO_BUILD
217 within the WEBKIT_CHECK_HAVE_* macros.
219 * Source/cmake/WebKitFeatures.cmake:
221 2018-08-23 Don Olmstead <don.olmstead@sony.com>
223 [CMake] Add HAVE_MALLOC_TRIM definition
224 https://bugs.webkit.org/show_bug.cgi?id=188897
226 Reviewed by Konstantin Tokarev.
228 Add CMake check for malloc_trim.
230 * Source/cmake/OptionsCommon.cmake:
232 2018-08-22 Ross Kirsling <ross.kirsling@sony.com>
234 [MSVC] Stop disabling /O2 features.
235 https://bugs.webkit.org/show_bug.cgi?id=188811
237 Reviewed by Per Arne Vollan.
239 * Source/cmake/OptionsMSVC.cmake:
240 Don't disable /GF (string pooling) or /Gy (function-level linking).
242 2018-08-22 Alberto Garcia <berto@igalia.com>
244 Don't use WTF_CPU_MIPS when building for mips64
245 https://bugs.webkit.org/show_bug.cgi?id=188858
247 Reviewed by Michael Catanzaro.
249 * CMakeLists.txt: Use WTF_CPU_MIPS64 for this architecture.
251 2018-08-22 Zan Dobersek <zdobersek@igalia.com>
253 [CoordGraphics] Switch to Nicosia::CompositionLayer state tracking
254 https://bugs.webkit.org/show_bug.cgi?id=188693
256 Reviewed by Carlos Garcia Campos.
258 * Source/cmake/OptionsGTK.cmake: Enable USE_NICOSIA alongside
259 USE_COORDINATED_GRAPHICS and USE_COORDINATED_GRAPHICS_THREADED.
260 * Source/cmake/OptionsWPE.cmake: Ditto.
262 2018-08-21 Adrian Perez de Castro <aperez@igalia.com>
264 Unreviewed. Update OptionsWPE.cmake and NEWS for 2.21.91 release.
266 * Source/cmake/OptionsWPE.cmake: Bump version numbers.
268 2018-08-21 Adrian Perez de Castro <aperez@igalia.com>
270 [WPE] Update to use libwpe-1.0.0 and WPEBackend-fdo-1.0.0
271 https://bugs.webkit.org/show_bug.cgi?id=188782
273 Reviewed by Michael Catanzaro.
275 Make the build depend on wpe-0.2, and change the Flatpak and JHBuild development
276 environments to use version 1.0.0 of libwpe and WPEBackend-fdo.
278 * Source/cmake/FindWPE.cmake: Renamed from Source/cmake/FindWPEBackend.cmake and changed
279 to check for libwpe-0.2.
280 * Source/cmake/OptionsWPE.cmake: Adapt to the rename to FindWPE.cmake.
282 2018-08-18 Michael Catanzaro <mcatanzaro@igalia.com>
284 Adjust CMAKE_MODULE_LINKER_FLAGS for asan
285 https://bugs.webkit.org/show_bug.cgi?id=188699
287 Reviewed by Konstantin Tokarev.
289 * Source/cmake/WebKitCompilerFlags.cmake:
291 2018-07-30 Thibault Saunier <tsaunier@igalia.com>
293 [GStreamer] Make codecparsers optionnal
294 https://bugs.webkit.org/show_bug.cgi?id=188010
296 And avoid building libWebRTC if it won't be used. While there is no other
297 WebRTC backend, it makes no sense to expose an option.
299 Error out when WEBRTC or MEDIA_STREAM is enabled but GStreamer < 1.10
301 Reviewed by Alejandro G. Castro.
303 * Source/cmake/GStreamerChecks.cmake:
304 * Source/cmake/OptionsGTK.cmake:
305 * Source/cmake/OptionsWPE.cmake:
307 2018-07-26 Andy VanWagoner <andy@vanwagoner.family>
309 [INTL] Remove INTL sub-feature compile flags
310 https://bugs.webkit.org/show_bug.cgi?id=188081
312 Reviewed by Michael Catanzaro.
314 * Source/cmake/OptionsJSCOnly.cmake:
315 * Source/cmake/WebKitFeatures.cmake:
317 2018-07-24 Thibault Saunier <tsaunier@igalia.com>
319 [WPE][GTK] Implement PeerConnection API on top of libwebrtc
320 https://bugs.webkit.org/show_bug.cgi?id=186932
322 Reviewed by Philippe Normand.
324 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-codecparser as it needed for GStreamerVideoDecoder
326 2018-07-20 Carlos Garcia Campos <cgarcia@igalia.com>
328 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.21.5 release.
330 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
332 2018-07-19 Stephan Szabo <stephan.szabo@sony.com>
334 [WinCairo] Support DEVELOPER_MODE for allowing inspection of web inspector
335 https://bugs.webkit.org/show_bug.cgi?id=187786
337 Reviewed by Fujii Hironori.
339 * Source/cmake/OptionsWinCairo.cmake: Add ENABLE_DEVELOPER_MODE
340 to build when DEVELOPER_MODE is turned on at cmake time.
342 2018-07-18 Michael Catanzaro <mcatanzaro@igalia.com>
344 Switch CMake ports back to C++ 14
345 https://bugs.webkit.org/show_bug.cgi?id=187744
347 Reviewed by Ryosuke Niwa.
349 The XCode build is still not using C++ 17, it's been several months since CMake ports
350 switched, everything builds fine without changes if we switch back, and there have been some
351 unfixed problems. Let's go back to C++ 14 for now. We can switch back to C++ 17 whenever we
352 are ready to switch over XCode at the same time, to ensure we don't wind up with divergent
353 behavior for std::optional.
355 * Source/cmake/WebKitCompilerFlags.cmake:
357 2018-07-16 Ryosuke Niwa <rniwa@webkit.org>
359 Update ReadMe.md line 68
360 https://bugs.webkit.org/show_bug.cgi?id=187533
362 Reviewed by Wenson Hsieh.
366 2018-07-02 Adrian Perez de Castro <aperez@igalia.com>
368 [CMake] Use JOB_POOLS to avoid memory-hungry linker processes running at the same time
369 https://bugs.webkit.org/show_bug.cgi?id=187254
371 Reviewed by Michael Catanzaro.
373 * Source/cmake/WebKitCommon.cmake: Set the maximum number of
374 concurrent link processes using job pools (four for release builds,
375 two otherwise) to avoid running out of memory during builds.
377 2018-07-02 Ryosuke Niwa <rniwa@webkit.org>
379 Repository fix after r233427 and r233443.
383 2018-06-30 Adam Barth <abarth@webkit.org>
385 Port JavaScriptCore to OS(FUCHSIA)
386 https://bugs.webkit.org/show_bug.cgi?id=187223
388 Reviewed by Daniel Bates.
390 * Source/cmake/OptionsJSCOnly.cmake: Add back ICU.
392 2018-06-29 Ross Kirsling <ross.kirsling@sony.com>
394 [JSCOnly] Restore Windows build.
395 https://bugs.webkit.org/show_bug.cgi?id=187127
397 Reviewed by Michael Catanzaro.
399 * Source/cmake/OptionsJSCOnly.cmake:
400 Don't forget to set -DUCHAR_TYPE=wchar_t for ICU on Windows.
401 Use bin64/lib64 on Windows (for consistency with full WebKit build).
403 2018-06-28 Adam Barth <abarth@webkit.org>
405 Switch OS(FUCHSIA) to using JSCOnly
406 https://bugs.webkit.org/show_bug.cgi?id=187133
408 Reviewed by Yusuke Suzuki.
410 Rather than creating a Fuchsia port, OS(FUCHSIA) now uses the JSCOnly
413 * CMakeLists.txt: Set the WTF_OS_FUCHSIA flag
414 * Source/cmake/OptionsFuchsia.cmake: Removed.
415 * Source/cmake/OptionsJSCOnly.cmake: Temporarily disable ICU for
416 OS(FUCHSIA). We'll get ICU wired in, but I'd like to work through the
417 other compile errors first.
419 2018-06-27 Adam Barth <abarth@webkit.org>
421 Add Fuchsia support to build-jsc
422 https://bugs.webkit.org/show_bug.cgi?id=187086
424 Reviewed by Yusuke Suzuki.
426 Add Fuchsia port to cmake build system. After this patch, the build
427 errors out due to a missing sysroot.
430 * Source/cmake/OptionsFuchsia.cmake: Added.
432 2018-06-18 Zan Dobersek <zdobersek@igalia.com>
434 Unreviewed GTK+ gardening. Updating the WPT expectations by removing
435 failure expectations for 2dcontext tests covering CSS HSL/HSLA color
436 parsing and createImageBitmap() API that are nowadays passing.
438 * WebPlatformTests/gtk/TestExpectations.json:
440 2018-06-17 Michael Catanzaro <mcatanzaro@igalia.com>
442 [CMake] Automatically disable JIT and enable USE_SYSTEM_MALLOC on unfamiliar architectures
443 https://bugs.webkit.org/show_bug.cgi?id=186722
445 Reviewed by Darin Adler.
447 We know that the JSC JIT and bmalloc both work on only a limited set of architectures. In
448 Fedora, we have to manually disable these when building for s390x, ppc64, and ppc64le. But
449 it's really easy to do the right thing automatically, so we might as well.
451 * Source/cmake/WebKitFeatures.cmake:
453 2018-06-13 Thibault Saunier <tsaunier@igalia.com>
455 [WPE] Build getUserMedia support
456 https://bugs.webkit.org/show_bug.cgi?id=186547
458 Reviewed by Alejandro G. Castro.
460 * Source/cmake/OptionsWPE.cmake: Build MediaStream support
462 2018-06-12 Philippe Normand <pnormand@igalia.com>
464 [GStreamer] Bump required version to 1.8.3
465 https://bugs.webkit.org/show_bug.cgi?id=186558
467 Reviewed by Xabier Rodriguez-Calvar.
469 * Source/cmake/GStreamerChecks.cmake: Bump to 1.8.3 which is the
470 version shipped in the current Ubuntu LTS we support (16.04).
472 2018-06-12 Zan Dobersek <zdobersek@igalia.com>
474 Add run-web-platform-tests script
475 https://bugs.webkit.org/show_bug.cgi?id=183356
477 Reviewed by Carlos Alberto Lopez Perez.
479 Store port-specific test expectations and test manifest files for the
480 web-platform-tests test runs under the top-level WebPlatformTests
483 TestExpectations.json file lists all the failing or disabled tests
484 or subtests that are to be expected in the test run. This information is
485 parsed in the run-web-platform-tests script and used to build
486 test-specific metadata files (ending with .ini) inside a temporary
487 directory that is then used during the test run. JSON format is used to
488 follow the WebDriver test suite in how it manages expectations, and to
489 avoid having to manually manage .ini files for every deviant test case.
491 TestManifest.ini file is used to fine-tune which tests are to be enabled
492 by default. For the GTK+ port, we currently disable all tests by default
493 but then specifically enable tests under the 2dcontext and WebCryptoAPI
494 directories. This will allow for gradual enabling of further tests.
496 * WebPlatformTests/gtk/TestExpectations.json: Added.
497 * WebPlatformTests/gtk/TestManifest.ini: Added.
499 2018-06-11 Carlos Garcia Campos <cgarcia@igalia.com>
501 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.21.4 release.
503 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
505 2018-06-11 Michael Saboff <msaboff@apple.com>
507 JavaScriptCore: Disable 32-bit JIT on Windows
508 https://bugs.webkit.org/show_bug.cgi?id=185989
510 Reviewed by Mark Lam.
512 * Source/cmake/OptionsWin.cmake:
514 2018-06-10 Carlos Garcia Campos <cgarcia@igalia.com>
516 [WPE] Add a MiniBrowser and use it to run WebDriver tests
517 https://bugs.webkit.org/show_bug.cgi?id=186345
519 Reviewed by Žan Doberšek.
521 Add an option to enable building the MiniBrowser.
523 * Source/cmake/FindWaylandProtocols.cmake: Added.
524 * Source/cmake/OptionsWPE.cmake:
526 2018-06-06 Dan Bernstein <mitz@apple.com>
528 [Xcode] Opt out of the New Build System
529 https://bugs.webkit.org/show_bug.cgi?id=186380
531 Reviewed by Alexey Proskuryakov.
533 * WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: Use the Legacy Build System.
535 2018-06-06 Dan Bernstein <mitz@apple.com>
537 Check in a file created by the Xcode 10 beta.
539 * WebKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: Added.
541 2018-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
543 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.21.3 release.
545 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
547 2018-05-25 Adrian Perez de Castro <aperez@igalia.com>
549 Unreviewed. Update OptionsWPE.cmake and NEWS for 2.21.2 release.
551 * Source/cmake/OptionsWPE.cmake: Bump version numbers.
553 2018-05-22 Alberto Garcia <berto@igalia.com>
555 [CMake] Properly detect compiler flags, needed libs, and fallbacks for usage of 64-bit atomic operations
556 https://bugs.webkit.org/show_bug.cgi?id=182622
557 <rdar://problem/40292317>
559 Reviewed by Michael Catanzaro.
561 * Source/cmake/WebKitCompilerFlags.cmake:
562 Move the test to detect whether we need to link against libatomic
563 to a common CMake file so it can be used from both JavaScriptCore
566 2018-05-22 Michael Catanzaro <mcatanzaro@igalia.com>
568 Unreviewed, rolling out r231843.
574 "[CMake] Properly detect compiler flags, needed libs, and
575 fallbacks for usage of 64-bit atomic operations"
576 https://bugs.webkit.org/show_bug.cgi?id=182622
577 https://trac.webkit.org/changeset/231843
579 2018-05-21 Fujii Hironori <Hironori.Fujii@sony.com>
581 [WinCairo] Enable WebKit build by default
582 https://bugs.webkit.org/show_bug.cgi?id=185141
584 Reviewed by Per Arne Vollan.
586 * Source/cmake/OptionsWin.cmake: Disable
587 ENABLE_NETSCAPE_PLUGIN_API unconditionally for WinCairo port
588 because it builds both WK1 and WK2.
589 * Source/cmake/OptionsWinCairo.cmake: Turn ENABLE_WEBKIT on by default.
590 Remove BUILDING_WIN_CAIRO_WEBKIT macro.
592 2018-05-21 Carlos Garcia Campos <cgarcia@igalia.com>
594 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.21.2 release.
596 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
598 2018-05-17 Carlos Alberto Lopez Perez <clopez@igalia.com>
600 [WPE] Implement and enable FULLSCREEN_API
601 https://bugs.webkit.org/show_bug.cgi?id=185676
603 Reviewed by Žan Doberšek.
605 Remove the CMake option to disable this option for WPE.
606 This feature gets enabled now via Source/cmake/WebKitFeatures.cmake
608 * Source/cmake/OptionsWPE.cmake:
610 2018-05-16 Don Olmstead <don.olmstead@sony.com>
612 [WinCairo] Update WinCairoRequirements
613 https://bugs.webkit.org/show_bug.cgi?id=185700
615 Reviewed by Per Arne Vollan.
617 * Source/cmake/OptionsWinCairo.cmake:
619 2018-05-16 Andy VanWagoner <andy@vanwagoner.family>
621 Add support for Intl NumberFormat formatToParts
622 https://bugs.webkit.org/show_bug.cgi?id=185375
624 Reviewed by Yusuke Suzuki.
626 Add flag for NumberFormat formatToParts.
628 * Source/cmake/OptionsJSCOnly.cmake:
629 * Source/cmake/WebKitFeatures.cmake:
631 2018-05-14 Yusuke Suzuki <utatane.tea@gmail.com>
633 [Win] Use C++17 in MSVC
634 https://bugs.webkit.org/show_bug.cgi?id=185232
636 Reviewed by Alex Christensen.
638 Use /std:c++17 option.
640 * Source/cmake/OptionsMSVC.cmake:
642 2018-05-16 Alberto Garcia <berto@igalia.com>
644 [CMake] Properly detect compiler flags, needed libs, and fallbacks for usage of 64-bit atomic operations
645 https://bugs.webkit.org/show_bug.cgi?id=182622
647 Reviewed by Michael Catanzaro.
649 * Source/cmake/OptionsGTK.cmake:
650 * Source/cmake/OptionsJSCOnly.cmake:
651 * Source/cmake/OptionsWPE.cmake:
652 Enable THREADS_PREFER_PTHREAD_FLAG. This uses -pthread instead of
653 -lpthread, fixing the 64-bit RISC-V build of the GTK+ port due to
654 missing atomic primitives.
656 * Source/cmake/WebKitCompilerFlags.cmake:
657 Move the test to detect whether we need to link against libatomic
658 to a common CMake file so it can be used from both JavaScriptCore
661 2018-05-14 Zan Dobersek <zdobersek@igalia.com>
663 [GTK] REGRESSION(r231170) Build broken with Clang 5.0
664 https://bugs.webkit.org/show_bug.cgi?id=185198
666 Reviewed by Michael Catanzaro.
668 * Source/cmake/WebKitCompilerFlags.cmake: Fall back to the -std=c++1z
669 compiler flag if -std=c++17 is not supported. If that flag is not
670 supported either, bail with an error message.
672 2018-05-09 Jan Alexander Steffens <jan.steffens@gmail.com>
674 [GTK] gtk-doc installation subdir duplicated
675 https://bugs.webkit.org/show_bug.cgi?id=185468
677 Reviewed by Carlos Garcia Campos.
679 The GTK docs are installed into a duplicated subdir,
680 e.g. /usr/share/doc/gtk-doc/html/webkit2gtk-4.0/webkit2gtk-4.0.
682 * Source/PlatformGTK.cmake:
684 2018-05-09 Michael Catanzaro <mcatanzaro@igalia.com>
686 Unreviewed. Bump WPE soname for good measure.
688 * Source/cmake/OptionsWPE.cmake:
690 2018-05-09 Michael Catanzaro <mcatanzaro@igalia.com>
692 Unreviewed. Update OptionsWPE.cmake and NEWS for 2.21.1 release.
694 * Source/cmake/OptionsWPE.cmake: Bump version numbers.
696 2018-05-06 Yusuke Suzuki <utatane.tea@gmail.com>
698 [JSC][GTK][JSCONLY] Use capstone disassembler
699 https://bugs.webkit.org/show_bug.cgi?id=185283
701 Reviewed by Michael Catanzaro.
703 * Source/CMakeLists.txt:
704 * Source/cmake/FindLLVM.cmake: Removed.
705 * Source/cmake/OptionsCommon.cmake:
706 * Source/cmake/OptionsGTK.cmake:
707 * Source/cmake/OptionsJSCOnly.cmake:
708 * Source/cmake/OptionsWPE.cmake:
710 2018-05-08 Valerie R Young <valerie@bocoup.com>
712 test262/Runner.pm: create results dir for results of test262 run
713 https://bugs.webkit.org/show_bug.cgi?id=185392
715 Reviewed by Michael Saboff.
717 Remove reference to no longer existing files.
721 2018-05-07 Yusuke Suzuki <utatane.tea@gmail.com>
723 [JSCOnly] Enable Intl.PluralRules
724 https://bugs.webkit.org/show_bug.cgi?id=185359
726 Reviewed by Daniel Bates.
728 Enable Intl.PluralRules because JSCOnly port enables features aggressively.
730 * Source/cmake/OptionsJSCOnly.cmake:
732 2018-05-07 Don Olmstead <don.olmstead@sony.com>
734 [WinCairo] Disable plugin api when building modern WebKit
735 https://bugs.webkit.org/show_bug.cgi?id=185312
737 Reviewed by Michael Catanzaro.
739 * Source/cmake/OptionsWin.cmake:
741 2018-05-02 Valerie R Young <valerie@bocoup.com>
743 test262/Runner.pm: save summary to file
744 https://bugs.webkit.org/show_bug.cgi?id=185200
746 Reviewed by Michael Saboff.
750 2018-05-01 Leo Balter <leonardo.balter@gmail.com>
752 Auto save the results for Test262
753 https://bugs.webkit.org/show_bug.cgi?id=184926
755 Reviewed by Michael Saboff.
757 2018-05-01 Oleksandr Skachkov <gskachkov@gmail.com>
759 WebAssembly: add support for stream APIs - JavaScript API
760 https://bugs.webkit.org/show_bug.cgi?id=183442
762 Reviewed by Yusuke Suzuki and JF Bastien.
764 * Source/cmake/WebKitFeatures.cmake:
766 2018-04-30 JF Bastien <jfbastien@apple.com>
768 Use some C++17 features
769 https://bugs.webkit.org/show_bug.cgi?id=185135
771 Reviewed by Alex Christensen.
773 As discussed here [0] let's move WebKit to a subset of C++17. We
774 now require GCC 6 [1] which means that, according to [2] we can
775 use the following C++17 language features (I removed some
778 - New auto rules for direct-list-initialization
779 - static_assert with no message
780 - typename in a template template parameter
781 - Nested namespace definition
782 - Attributes for namespaces and enumerators
783 - u8 character literals
784 - Allow constant evaluation for all non-type template arguments
786 - Unary fold expressions and empty parameter packs
787 - __has_include in preprocessor conditional
788 - Differing begin and end types in range-based for
789 - Improving std::pair and std::tuple
791 Consult the Tony Tables [3] to see before / after examples.
793 Of course we can use any library feature if we're willing to
794 import them to WTF (and they don't require language support).
797 [0]: https://lists.webkit.org/pipermail/webkit-dev/2018-March/029922.html
798 [1]: https://trac.webkit.org/changeset/231152/webkit
799 [2]: https://en.cppreference.com/w/cpp/compiler_support
800 [3]: https://github.com/tvaneerd/cpp17_in_TTs/blob/master/ALL_IN_ONE.md
802 * Source/cmake/WebKitCompilerFlags.cmake:
804 2018-04-29 Michael Catanzaro <mcatanzaro@igalia.com>
806 [CMake] Require GCC 6
807 https://bugs.webkit.org/show_bug.cgi?id=184985
809 Reviewed by Alex Christensen.
815 2018-04-26 Daniel Bates <dabates@apple.com>
817 ASSERTION FAILED: ASSERT(!containsImage || MIMETypeRegistry::isSupportedImageResourceMIMEType([resource MIMEType])) in -[NSPasteboard(WebExtras) _web_writePromisedRTFDFromArchive:containsImage:]
818 https://bugs.webkit.org/show_bug.cgi?id=184161
819 <rdar://problem/39051645>
821 Reviewed by Dan Bernstein.
823 * ManualTests/DragInlinePDFImageDocument.html: Added.
824 * ManualTests/resources/simple.pdf: Added.
826 2018-04-26 Andy VanWagoner <thetalecrafter@gmail.com>
828 [INTL] Implement Intl.PluralRules
829 https://bugs.webkit.org/show_bug.cgi?id=184312
831 Reviewed by JF Bastien.
833 Added Intl.PluralRules feature flag.
835 * Source/cmake/WebKitFeatures.cmake:
837 2018-04-26 Zan Dobersek <zdobersek@igalia.com>
839 [GTK][WPE] Initial ASYNC_SCROLLING support
840 https://bugs.webkit.org/show_bug.cgi?id=184961
842 Reviewed by Carlos Garcia Campos.
844 * Source/cmake/OptionsGTK.cmake: Enable ASYNC_SCROLLING as a private option.
845 * Source/cmake/OptionsWPE.cmake: Ditto.
847 2018-04-25 Michael Catanzaro <mcatanzaro@igalia.com>
849 [WPE] Build and link against latest WPEBackend and WPEBackend-fdo
850 https://bugs.webkit.org/show_bug.cgi?id=184643
852 Reviewed by Žan Doberšek.
854 Update find modules to include the API versions.
856 * Source/cmake/FindWPEBackend-fdo.cmake:
857 * Source/cmake/FindWPEBackend.cmake:
859 2018-04-25 Michael Catanzaro <mcatanzaro@igalia.com>
861 [CMake] Some options should be marked as advanced
862 https://bugs.webkit.org/show_bug.cgi?id=184972
864 Reviewed by Konstantin Tokarev.
866 * Source/cmake/FindLibGcrypt.cmake:
867 * Source/cmake/FindWebP.cmake:
869 2018-04-25 Michael Catanzaro <mcatanzaro@igalia.com>
871 [GTK] Miscellaneous build cleanups
872 https://bugs.webkit.org/show_bug.cgi?id=184399
874 Reviewed by Žan Doberšek.
876 * Source/cmake/OptionsGTK.cmake:
878 2018-04-24 Leo Balter <leonardo.balter@gmail.com>
880 Land test262 test results associated with Test262 runner
881 https://bugs.webkit.org/show_bug.cgi?id=184667
883 Reviewed by Michael Saboff.
885 * .gitignore: Ignore test262 results file.
887 2018-04-24 Zan Dobersek <zdobersek@igalia.com>
889 [WPE] Remove libgbm dependency
890 https://bugs.webkit.org/show_bug.cgi?id=184906
892 Reviewed by Carlos Garcia Campos.
894 Remove the libgbm CMake search module. It's not necessary anymore
897 * Source/cmake/FindLibGBM.cmake: Removed.
899 2018-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
901 [GTK] check target looks broken
902 https://bugs.webkit.org/show_bug.cgi?id=184407
904 Reviewed by Carlos Garcia Campos.
906 It's pretty clear that nobody has been using check for a long time.
908 We got rid of check-for-webkitdom-api-breaks a long time ago, when we stopped autogenerating
909 the DOM API, but it's still used in the check target. Fix this.
911 Also, the check target for some reason runs itself from the Source subdirectory of the
912 builddir, but the test script expects to be run from the toplevel build directory. Fix this
915 Add VERBATIM for good measure.
917 * Source/PlatformGTK.cmake:
919 2018-04-20 Daniel Bates <dabates@apple.com>
921 Unreviewed, rolling out r230117.
923 Broke find-in-page for PDFs
927 "ASSERTION FAILED: ASSERT(!containsImage ||
928 MIMETypeRegistry::isSupportedImageResourceMIMEType([resource
929 MIMEType])) in -[NSPasteboard(WebExtras)
930 _web_writePromisedRTFDFromArchive:containsImage:]"
931 https://bugs.webkit.org/show_bug.cgi?id=184161
932 https://trac.webkit.org/changeset/230117
934 2018-04-20 Carlos Garcia Campos <cgarcia@igalia.com>
936 [GTK] Local cross references are broken in API documentation
937 https://bugs.webkit.org/show_bug.cgi?id=184771
939 Reviewed by Michael Catanzaro.
941 Update the documentation html paths and install the JSC GLib API too.
943 * Source/PlatformGTK.cmake:
945 2018-04-18 Carlos Garcia Campos <cgarcia@igalia.com>
947 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.21.1 release.
949 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
951 2018-04-17 Zan Dobersek <zdobersek@igalia.com>
953 [CMake] Add and enable the ENABLE_CSS_ANIMATIONS_LEVEL_2 feature define
954 https://bugs.webkit.org/show_bug.cgi?id=184681
956 Reviewed by Carlos Garcia Campos.
958 * Source/cmake/WebKitFeatures.cmake: Add the ENABLE_CSS_ANIMATIONS_LEVEL_2
959 feature define. Follow Cocoa ports and enable it by default.
961 2018-04-15 Michael Catanzaro <mcatanzaro@igalia.com>
963 [WPE] Install files needed for WebKitWebExtensions
964 https://bugs.webkit.org/show_bug.cgi?id=179915
966 Reviewed by Žan Doberšek.
968 * Source/cmake/OptionsWPE.cmake:
970 2018-04-12 Ryan Haddad <ryanhaddad@apple.com>
972 Unreviewed, rolling out r230554.
974 The non-ASCII character in the filename causes issues with SVN
978 "input.webkitEntries does not work as expected when folder
979 contains accented chars"
980 https://bugs.webkit.org/show_bug.cgi?id=184517
981 https://trac.webkit.org/changeset/230554
983 2018-04-12 Zan Dobersek <zdobersek@igalia.com>
985 [WPE] Switch testing process to using WPEBackend-fdo
986 https://bugs.webkit.org/show_bug.cgi?id=184357
988 Reviewed by Carlos Alberto Lopez Perez.
990 * Source/cmake/FindWPEBackend-fdo.cmake: Renamed from Source/cmake/FindWPEBackend-mesa.cmake.
992 2018-04-11 Thibault Saunier <tsaunier@igalia.com>
994 [GStreamer] Use of playbin3 when USE_PLAYBIN3 environment variable is set
995 https://bugs.webkit.org/show_bug.cgi?id=184498
997 Reviewed by Philippe Normand.
999 This is the same behaviour as with playbin itself.
1001 Make sure to keep using "playbin" for MediaSource.
1003 * Source/cmake/GStreamerDefinitions.cmake:
1005 2018-04-09 Michael Catanzaro <mcatanzaro@igalia.com>
1007 [WPE] Use GNU install directories
1008 https://bugs.webkit.org/show_bug.cgi?id=184377
1010 Reviewed by Carlos Garcia Campos.
1012 Notably, this means all the CMake arguments that distributors use to customize install
1013 directories (-DCMAKE_INSTALL_*DIR) will no longer be ignored.
1015 * Source/cmake/OptionsCommon.cmake:
1016 * Source/cmake/OptionsWPE.cmake:
1018 2018-04-08 Fujii Hironori <Hironori.Fujii@sony.com>
1020 [CMake] WebKit should link to WebCore as a PRIVATE library if WebCore is a static library
1021 https://bugs.webkit.org/show_bug.cgi?id=184127
1023 Reviewed by Konstantin Tokarev.
1025 Building TestWebKitLib on Windows causes a linkage error of
1026 multiply defined symbols because TestWebKitLib links to
1027 both WebCore and WebKit. TestWebKitLib explicitly links only with
1028 WebKit, But, WebCore is propagated because WebKit links WebCore as
1031 * Source/cmake/OptionsGTK.cmake (ADD_WHOLE_ARCHIVE_TO_LIBRARIES):
1032 Do not wrap PRIVATE and PUBLIC keywords with -Wl,--whole-archive.
1034 2018-04-08 Michael Catanzaro <mcatanzaro@igalia.com>
1036 [WPE][GTK] Remove applicationDirectoryPath() and sharedResourcePath()
1037 https://bugs.webkit.org/show_bug.cgi?id=184381
1039 Reviewed by Carlos Garcia Campos.
1041 * Source/cmake/OptionsGTK.cmake:
1042 * Source/cmake/OptionsWPE.cmake:
1044 2018-04-02 Per Arne Vollan <pvollan@apple.com>
1046 Remove references to internal version of WebKitQuartzCoreAdditions in CMake files.
1047 https://bugs.webkit.org/show_bug.cgi?id=184246
1048 <rdar://problem/39116563>
1050 Unreviewed build fix.
1052 * Source/PlatformWin.cmake:
1054 2018-04-02 Alejandro G. Castro <alex@igalia.com>
1056 [GTK] Make libwebrtc backend buildable for GTK port
1057 https://bugs.webkit.org/show_bug.cgi?id=178860
1059 Reviewed by Youenn Fablet.
1061 * Source/CMakeLists.txt: Add the libwebrtc directory to the compilation.
1062 * Source/cmake/OptionsGTK.cmake: Add the USE_LIBWEBRTC option to
1063 allow compilation of the specific code.
1065 2018-03-30 Daniel Bates <dabates@apple.com>
1067 ASSERTION FAILED: ASSERT(!containsImage || MIMETypeRegistry::isSupportedImageResourceMIMEType([resource MIMEType])) in -[NSPasteboard(WebExtras) _web_writePromisedRTFDFromArchive:containsImage:]
1068 https://bugs.webkit.org/show_bug.cgi?id=184161
1070 Reviewed by Per Arne Vollan.
1072 * ManualTests/DragInlinePDFImageDocument.html: Added.
1073 * ManualTests/resources/simple.pdf: Added.
1075 2018-03-28 Tim Horton <timothy_horton@apple.com>
1077 Make it possible to disable building the tools with Make
1078 https://bugs.webkit.org/show_bug.cgi?id=184109
1080 Reviewed by Simon Fraser.
1084 2018-03-25 Carlos Garcia Campos <cgarcia@igalia.com>
1086 [GTK][WPE] Add API to convert between DOM and JSCValue
1087 https://bugs.webkit.org/show_bug.cgi?id=183448
1089 Reviewed by Michael Catanzaro.
1091 Define FORWARDING_HEADERS_WPE_DOM_DIR.
1093 * Source/cmake/OptionsWPE.cmake:
1095 2018-03-22 Adrian Perez de Castro <aperez@igalia.com>
1097 [WPE] Enable WOFF2 support
1098 https://bugs.webkit.org/show_bug.cgi?id=178158
1100 Reviewed by Frédéric Wang.
1102 * Source/cmake/OptionsWPE.cmake: Add needed logic to detect the Brotli and WOFF2 libraries.
1104 2018-03-21 Carlos Garcia Campos <cgarcia@igalia.com>
1106 [GTK][WPE] Initial implementation of JavaScriptCore glib bindings
1107 https://bugs.webkit.org/show_bug.cgi?id=164061
1109 Reviewed by Michael Catanzaro.
1111 Set global variables used by the makefiles.
1113 * Source/cmake/OptionsGTK.cmake:
1114 * Source/cmake/OptionsWPE.cmake:
1116 2018-03-15 Ms2ger <Ms2ger@igalia.com>
1118 [GTK][WPE] Enable service workers
1119 https://bugs.webkit.org/show_bug.cgi?id=178576
1121 Reviewed by Žan Doberšek.
1123 * Source/cmake/OptionsGTK.cmake:
1124 * Source/cmake/OptionsWPE.cmake:
1126 2018-03-12 Yoav Weiss <yoav@yoav.ws>
1128 Runtime flag for link prefetch and remove link subresource.
1129 https://bugs.webkit.org/show_bug.cgi?id=183540
1131 Reviewed by Chris Dumez.
1133 Remove the LINK_PREFETCH build time flag.
1135 * Source/cmake/OptionsWin.cmake:
1136 * Source/cmake/WebKitFeatures.cmake:
1137 * Source/cmake/tools/vsprops/FeatureDefines.props:
1138 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
1140 2018-03-12 Zan Dobersek <zdobersek@igalia.com>
1142 Unreviewed. Unbreak the WPE layout testing that's been broken since
1143 r229470. Due to disassociation between ENABLE(ACCESSIBILITY) and
1144 HAVE(ACCESSIBILITY), the injected bundle for the WPE port was left with
1145 undefined symbols. This is fixed with ENABLE_ACCESSIBILITY being enabled
1146 for the WPE port as well.
1148 * Source/cmake/OptionsWPE.cmake:
1150 2018-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
1152 Unreviewed. Fix library version of JavaScriptCoreGTK.
1154 * Source/cmake/OptionsGTK.cmake:
1156 2018-03-09 Carlos Garcia Campos <cgarcia@igalia.com>
1158 Unreviewed. Bump WebKitGTK+ version to 2.21.0.
1160 * Source/cmake/OptionsGTK.cmake:
1162 2018-03-08 Tim Horton <timothy_horton@apple.com>
1164 Add a way to not build libwebrtc when building WebKit via Makefiles
1165 https://bugs.webkit.org/show_bug.cgi?id=183437
1166 <rdar://problem/38254840>
1168 Reviewed by Dan Bernstein.
1172 2018-03-05 Don Olmstead <don.olmstead@sony.com>
1174 [CMake] Split JSC header copying into public and private targets
1175 https://bugs.webkit.org/show_bug.cgi?id=183251
1177 Reviewed by Konstantin Tokarev.
1179 * Source/cmake/WebKitMacros.cmake:
1181 2018-03-02 Don Olmstead <don.olmstead@sony.com>
1183 Add clang-format configuration
1184 https://bugs.webkit.org/show_bug.cgi?id=183302
1186 Reviewed by Ryosuke Niwa.
1188 * .clang-format: Added.
1190 2018-03-01 Michael Catanzaro <mcatanzaro@igalia.com>
1192 [CMake] configure failure for aarch64
1193 https://bugs.webkit.org/show_bug.cgi?id=183268
1195 Unreviewed build fix. This failure is caused by a simple typo.
1197 * Source/cmake/OptionsCommon.cmake:
1199 2018-02-26 Yousuke Kimoto <yousuke.kimoto@sony.com>
1201 [WinCairo] WebKit2_C.h should be included for TestWebKit
1202 https://bugs.webkit.org/show_bug.cgi?id=182682
1204 Reviewed by Yusuke Suzuki.
1206 Added a new definition "BUILDING_WIN_CAIRO_WEBKIT" to specify
1207 the wincairo webkit build.
1209 * Source/cmake/OptionsWinCairo.cmake:
1211 2018-02-26 Fujii Hironori <Hironori.Fujii@sony.com>
1213 [CMake][OpenVR] Linkage errors happen because only OpenVR is compiled with -stdlib=libc++ if Clang is used
1214 https://bugs.webkit.org/show_bug.cgi?id=183116
1216 Reviewed by Žan Doberšek.
1218 OpenVR has a option USE_LIBCXX to enable/disable that behavior. Let's disable it.
1220 * Source/CMakeLists.txt: Added a option command for USE_LIBCXX to set OFF as default.
1222 2018-02-21 Don Olmstead <don.olmstead@sony.com>
1224 [CMake] Expose HAVE macros globally
1225 https://bugs.webkit.org/show_bug.cgi?id=183011
1227 Reviewed by Michael Catanzaro.
1229 * Source/cmake/OptionsCommon.cmake:
1230 * Source/cmake/WebKitFeatures.cmake:
1232 2018-02-21 Don Olmstead <don.olmstead@sony.com>
1234 [CMake][Win] Use cmakeconfig.h rather than config.h and Platform.h
1235 https://bugs.webkit.org/show_bug.cgi?id=182883
1237 Reviewed by Per Arne Vollan.
1239 * Source/cmake/OptionsAppleWin.cmake:
1240 * Source/cmake/OptionsWin.cmake:
1241 * Source/cmake/OptionsWinCairo.cmake:
1243 2018-02-21 Michael Catanzaro <mcatanzaro@igalia.com>
1245 [GTK] USE_UPOWER causes crashes inside a chroot or on systems with broken dbus/upower
1246 https://bugs.webkit.org/show_bug.cgi?id=181825
1248 Reviewed by Carlos Garcia Campos.
1250 Get rid of the upower-glib dependency. We will use upower's D-Bus API instead.
1252 * Source/cmake/FindUPowerGLib.cmake: Removed.
1253 * Source/cmake/OptionsGTK.cmake:
1255 2018-02-20 Adrian Perez de Castro <aperez@igalia.com>
1257 [GTK][CMake] Support building with Enchant 2.x
1258 https://bugs.webkit.org/show_bug.cgi?id=182933
1260 Reviewed by Michael Catanzaro.
1262 * Source/cmake/FindEnchant.cmake: Check for both the "enchant" and "enchant-2"
1263 pkg-config components, picking the first available for which the headers and
1266 2018-02-19 Philippe Normand <pnormand@igalia.com>
1268 [GStreamer] Playbin3 support
1269 https://bugs.webkit.org/show_bug.cgi?id=182530
1271 Reviewed by Xabier Rodriguez-Calvar.
1273 * Source/cmake/GStreamerDefinitions.cmake: New
1274 USE(GSTREAMER_PLAYBIN3) feature. This should be enabled only for
1275 very recent versions of GStreamer (1.14 at least) and is optional, for now.
1277 2018-02-18 Philippe Normand <pnormand@igalia.com>
1279 [GTK][WPE] Fullscreen video is broken
1280 https://bugs.webkit.org/show_bug.cgi?id=182740
1282 Reviewed by Michael Catanzaro.
1284 * Source/cmake/WebKitFeatures.cmake: Enable the
1285 VIDEO_USES_ELEMENT_FULLSCREEN feature on CMake ports.
1287 2018-02-16 Dean Jackson <dino@apple.com>
1289 Use OPENGL macros to be more clear about which OpenGL/ES WebGL uses on Cocoa
1290 https://bugs.webkit.org/show_bug.cgi?id=182894
1292 Reviewed by Tim Horton.
1294 Rename OPENGL_ES_2 to OPENGL_ES.
1296 * Source/cmake/OptionsGTK.cmake:
1297 * Source/cmake/OptionsWPE.cmake:
1299 2018-02-09 Ross Kirsling <ross.kirsling@sony.com>
1301 Simplify .gitignore's WebKitLibraries/win section.
1302 https://bugs.webkit.org/show_bug.cgi?id=182618
1304 Reviewed by Per Arne Vollan.
1306 We need to update this section for WinCairoRequirements regardless, but
1307 it never needed to be this longwinded in the first place.
1311 2018-02-08 Fujii Hironori <Hironori.Fujii@sony.com>
1313 [Meta][Win] Support ICU 59.1+
1314 https://bugs.webkit.org/show_bug.cgi?id=181004
1316 Reviewed by Alex Christensen.
1318 ICU 59 changed the type of UChar from wchar_t to char16_t on
1319 Windows. We need a lot of conversions between UChar* and wchar_t*
1320 to call Windows API because it takes string as wchar_t*.
1322 Fortunately, ICU is configurable to define UChar as wchar_t as
1323 well as the prior ICU.
1324 <http://icu-project.org/apiref/icu4c/umachine_8h.html#a6bb9fad572d65b305324ef288165e2ac>
1326 * Source/cmake/OptionsWin.cmake: Add a compile option -DUCHAR_TYPE=wchar_t.
1328 2018-02-08 Michael Catanzaro <mcatanzaro@igalia.com>
1330 Unreviewed, switch -pthread to -lpthread per recommendation from Adrian
1331 https://bugs.webkit.org/show_bug.cgi?id=182400
1332 <rdar://problem/37252242>
1334 This is tested and works fine.
1336 * Source/cmake/WebKitCompilerFlags.cmake:
1338 2018-02-05 Yousuke Kimoto <yousuke.kimoto@sony.com>
1340 [WinCairo] Refine WebKitLegacy and WebKit build for wincairo
1341 https://bugs.webkit.org/show_bug.cgi?id=182478
1343 Reviewed by Alex Christensen.
1345 * Source/cmake/OptionsWinCairo.cmake: Added a ENABLE_WIN_CAIRO_WEBKIT option to build webkit for wincairo.
1347 2018-02-05 Michael Catanzaro <mcatanzaro@igalia.com>
1349 Unreviewed, fix build using the new ENABLE_ADDRESS_SANITIZER option
1350 https://bugs.webkit.org/show_bug.cgi?id=182400
1351 <rdar://problem/37252242>
1353 I failed to properly test a last-minute change.
1355 * Source/cmake/WebKitCompilerFlags.cmake:
1357 2018-02-05 Michael Catanzaro <mcatanzaro@igalia.com>
1359 [CMake] Add ENABLE_ADDRESS_SANITIZER to make it easier to build with asan support
1360 https://bugs.webkit.org/show_bug.cgi?id=182400
1362 Reviewed by Konstantin Tokarev.
1364 * Source/cmake/OptionsGTK.cmake:
1365 * Source/cmake/WebKitCompilerFlags.cmake:
1367 2018-01-31 Michael Catanzaro <mcatanzaro@igalia.com>
1370 https://bugs.webkit.org/show_bug.cgi?id=182314
1372 Reviewed by Alex Christensen.
1374 Add download link for Epiphany Technology Preview. Improve build instructions for GTK. Add
1375 build instructions for WPE. Add instructions to run MiniBrowser on Linux. Miscellaneous
1376 typographical adjustments.
1380 2018-01-30 Sergio Villar Senin <svillar@igalia.com>
1382 [WebVR][GTK][WPE] Exclude OpenVR from tarballs
1383 https://bugs.webkit.org/show_bug.cgi?id=182284
1385 Reviewed by Michael Catanzaro.
1387 Added private build options for USE_OPENVR.
1389 * Source/cmake/OptionsGTK.cmake:
1390 * Source/cmake/OptionsWPE.cmake:
1392 2018-01-30 Basuke Suzuki <Basuke.Suzuki@sony.com>
1394 [WinCairo] Fix forwarding header conflict of WebKit on WinCairo
1395 https://bugs.webkit.org/show_bug.cgi?id=177202
1397 Reviewed by Alex Christensen.
1399 * Source/cmake/WebKitMacros.cmake:
1401 2018-01-29 Jiewen Tan <jiewen_tan@apple.com>
1403 [WebAuthN] Add a compile-time feature flag
1404 https://bugs.webkit.org/show_bug.cgi?id=182211
1405 <rdar://problem/36936365>
1407 Reviewed by Brent Fulgham.
1409 * Source/cmake/WebKitFeatures.cmake:
1410 * Source/cmake/tools/vsprops/FeatureDefines.props:
1411 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
1413 2018-01-18 Sergio Villar Senin <svillar@igalia.com>
1415 [WebVR] Add OpenVR to the tree and to the build
1416 https://bugs.webkit.org/show_bug.cgi?id=177298
1418 Reviewed by Žan Doberšek.
1420 * Source/CMakeLists.txt:
1421 * Source/cmake/OptionsGTK.cmake: Enable USE_OPENVR.
1422 * Source/cmake/OptionsWPE.cmake: Ditto.
1424 2018-01-18 Dan Bernstein <mitz@apple.com>
1426 [Xcode] Shared schemes in the WebKit workspace still have build pre-actions that invoke copy-webkitlibraries-to-product-directory
1427 https://bugs.webkit.org/show_bug.cgi?id=181784
1429 Reviewed by Anders Carlsson.
1431 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Remove the build pre-action.
1432 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Ditto.
1434 2018-01-17 Michael Catanzaro <mcatanzaro@igalia.com>
1436 WEBKIT_FRAMEWORK should not modify file-global include directories
1437 https://bugs.webkit.org/show_bug.cgi?id=181656
1439 Reviewed by Konstantin Tokarev.
1441 Only modify the system include directories of the target passed to WEBKIT_FRAMEWORK.
1443 * Source/cmake/WebKitMacros.cmake:
1445 2018-01-17 Carlos Garcia Campos <cgarcia@igalia.com>
1447 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.19.6 release.
1449 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1451 2018-01-15 Michael Catanzaro <mcatanzaro@igalia.com>
1453 REGRESSION(r226266): [GTK] RELEASE_ASSERT(reservedZoneSize >= minimumReservedZoneSize) in JSC::VM::updateStackLimits
1454 https://bugs.webkit.org/show_bug.cgi?id=181438
1455 <rdar://problem/36376724>
1457 Reviewed by Carlos Garcia Campos.
1459 Build JSC as a shared library.
1461 Stop using -fvisibility=hidden. This is a shame, but it is causing problems that I don't
1464 * Source/cmake/OptionsGTK.cmake:
1465 * Source/cmake/WebKitCompilerFlags.cmake:
1467 2018-01-11 Keith Miller <keith_miller@apple.com>
1469 Rename ENABLE_ASYNC_ITERATION to ENABLE_JS_ASYNC_ITERATION
1470 https://bugs.webkit.org/show_bug.cgi?id=181573
1472 Reviewed by Simon Fraser.
1474 * Source/cmake/WebKitFeatures.cmake:
1476 2018-01-10 Per Arne Vollan <pvollan@apple.com>
1478 [Win] WebKitLegacy should be a dll, not a static library.
1479 https://bugs.webkit.org/show_bug.cgi?id=181500
1481 Reviewed by Alex Christensen.
1483 Set WebKitLegacy library type to shared.
1485 * Source/cmake/OptionsWin.cmake:
1487 2018-01-09 Carlos Garcia Campos <cgarcia@igalia.com>
1489 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.19.5 release.
1491 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1493 2018-01-09 Carlos Garcia Campos <cgarcia@igalia.com>
1495 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.19.4 release.
1497 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1499 2018-01-05 Fujii Hironori <Hironori.Fujii@sony.com>
1501 REGRESSION(r226306)[Win][CMake] Unnecessary recompilations triggered by unconditionally copied header files of DerivedSources
1502 https://bugs.webkit.org/show_bug.cgi?id=181324
1504 Reviewed by Konstantin Tokarev.
1506 r226306 changed to use cmake -E copy to copy header files of
1507 DerivedSources. This command copies files unconditionally, then
1508 introduced unnecessary recompilations.
1510 * Source/cmake/WebKitMacros.cmake: Use copy_if_different instead of copy.
1512 2018-01-03 Ting-Wei Lan <lantw44@gmail.com>
1514 Replace hard-coded paths in shebangs with #!/usr/bin/env
1515 https://bugs.webkit.org/show_bug.cgi?id=181040
1517 Reviewed by Alex Christensen.
1519 * Source/cmake/tools/scripts/auto-version.pl:
1520 * Source/cmake/tools/scripts/feature-defines.pl:
1521 * Source/cmake/tools/scripts/version-stamp.pl:
1523 == Rolled over to ChangeLog-2018-01-01 ==