1 2015-11-16 Carlos Garcia Campos <cgarcia@igalia.com>
3 [GTK] Use FTL by default when LLVM 3.7 is available
4 https://bugs.webkit.org/show_bug.cgi?id=142128
6 Reviewed by Csaba Osztrogonác.
8 Enable FTL by default when architecture is X86_64. It requires
9 LLVM 3.7, but can be disabled manually as a cmake configure
12 * Source/cmake/FindLLVM.cmake: In debian llvm-config is only
13 available if the metapackage is installed and it points to
14 llvm-config-3.5. So, here we check first if the llvm-config is
15 from a recent enough version, and if not we check several
16 llvm-config-<version> programs, so this should work on any distro.
17 * Source/cmake/OptionsGTK.cmake: Enable FTL by default when
18 target architecture is X86_64, and check the LLVM is at least
19 3.7. The option is now public, since we want people to be able to
22 2015-11-11 Anders Carlsson <andersca@apple.com>
24 Enable cross-platform context menus by default
25 https://bugs.webkit.org/show_bug.cgi?id=151173
27 Reviewed by Tim Horton.
29 * Source/cmake/OptionsEfl.cmake:
31 2015-11-12 Csaba Osztrogonác <ossy@webkit.org>
33 Remove ENABLE(SATURATED_LAYOUT_ARITHMETIC) guards
34 https://bugs.webkit.org/show_bug.cgi?id=150972
36 Reviewed by Darin Adler.
38 * Source/cmake/OptionsMac.cmake:
39 * Source/cmake/WebKitFeatures.cmake:
41 2015-11-11 Philippe Normand <pnormand@igalia.com>
43 [GTK][Mac] don't install .frameworks
44 https://bugs.webkit.org/show_bug.cgi?id=151136
46 Reviewed by Alex Christensen.
48 * Source/cmake/WebKitMacros.cmake: Don't install framework files when building the GTK port on Mac.
50 2015-11-10 Pranjal Jumde <pjumde@apple.com>
52 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
53 https://bugs.webkit.org/show_bug.cgi?id=150252
54 <rdar://problem/23149470>
56 Reviewed by Brent Fulgham.
59 * Source/WebCore/editing/ios/EditorIOS.mm
60 * Source/WebCore/editing/mac/EditorMac.mm
61 In Editor::fontForSelection moved the node removal code, so that the
62 node is only removed if style is not NULL.
63 * Source/WebCore/editing/cocoa/EditorCocoa.mm
64 In Editor::styleForSelectionStart checking if the parentNode can
65 accept the styleElement node.
66 * LayoutTests/editing/execCommand/150252.xhtml
67 * LayoutTests/editing/execCommand/150252_minimal.xhtml
68 * LayoutTests/editing/execCommand/150252-expected.txt
69 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
71 2015-11-09 Pranjal Jumde <pjumde@apple.com>
73 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
74 https://bugs.webkit.org/show_bug.cgi?id=150252
75 <rdar://problem/23149470>
77 Reviewed by Brent Fulgham.
79 * Source/WebCore/editing/ios/EditorIOS.mm
80 * Source/WebCore/editing/mac/EditorMac.mm
81 In Editor::fontForSelection moved the node removal code, so that the
82 node is only removed if style is not NULL.
83 * LayoutTests/editing/execCommand/150252.xhtml
84 * LayoutTests/editing/execCommand/150252_minimal.xhtml
85 * LayoutTests/editing/execCommand/150252-expected.txt
86 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
88 2015-11-06 Daniel Bates <dabates@apple.com>
90 Teach Makefile to build LayoutTestRelay when building for iOS Simulator
91 https://bugs.webkit.org/show_bug.cgi?id=150849
93 Reviewed by Alexey Proskuryakov.
95 Add support for overriding the user-provided arguments SDKROOT and ARCHS
96 on a per Makefile basis.
100 2015-11-06 Philippe Normand <pnormand@igalia.com>
102 Unreviewed, GTK build fix after r192095.
104 * Source/cmake/FindGTK3.cmake:
106 2015-11-06 Philip Chimento <philip.chimento@gmail.com> and Michael Catanzaro <mcatanzaro@igalia.com>
108 [GTK] Re-enable Quartz backend on cmake build system
109 https://bugs.webkit.org/show_bug.cgi?id=144561
111 Reviewed by Philippe Normand.
113 * Source/cmake/FindGTK3.cmake: Set GTK3_SUPPORTS_QUARTZ based on
114 the presence of of gtk+-quartz-3.0 module.
115 * Source/cmake/OptionsGTK.cmake: Reintroduce the
116 ENABLE_QUARTZ_TARGET option to the CMake build, for building the
117 GTK+ Quartz backend on OS X.
119 2015-11-05 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
121 Add runtime and compile time flags for enabling Web Animations API and model.
122 https://bugs.webkit.org/show_bug.cgi?id=150914
124 Reviewed by Benjamin Poulain.
126 Add ENABLE_WEB_ANIMATIONS compile time flag, runtime flag webAnimationsEnabled and Expose WK2 preference for runtime flag.
128 * Source/cmake/OptionsWin.cmake:
129 * Source/cmake/WebKitFeatures.cmake:
131 2015-11-03 Brent Fulgham <bfulgham@apple.com>
133 [Win] CMake build update.
135 Rubberstamped by Tim Horton.
137 * Source/PlatformWin.cmake: Add internal tool to build
138 rules for internal use.
140 2015-11-03 Carlos Garcia Campos <cgarcia@igalia.com>
142 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.1 release.
144 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
146 2015-11-02 Philippe Normand <pnormand@igalia.com>
148 [Mac][GTK] Disable Ninja response file support
149 https://bugs.webkit.org/show_bug.cgi?id=150801
151 Reviewed by Alex Christensen.
153 * Source/cmake/OptionsCommon.cmake: The OSX toolchain doesn't
154 support response files, so instruct Ninja to not generate those.
156 2015-11-02 Csaba Osztrogonác <ossy@webkit.org>
158 Fix the FTL JIT build with system LLVM on Linux
159 https://bugs.webkit.org/show_bug.cgi?id=150795
161 Reviewed by Filip Pizlo.
163 * Source/cmake/FindLLVM.cmake:
165 2015-11-02 Carlos Garcia Campos <cgarcia@igalia.com>
167 Unreviewed. Bump GTK+ versions numbers.
169 * Source/cmake/OptionsGTK.cmake:
171 2015-11-01 Yusuke Suzuki <utatane.tea@gmail.com>
173 [ES6] Support Generator Syntax
174 https://bugs.webkit.org/show_bug.cgi?id=150769
176 Reviewed by Geoffrey Garen.
178 Added ENABLE_ES6_GENERATORS flag.
180 * Source/cmake/OptionsWin.cmake:
181 * Source/cmake/WebKitFeatures.cmake:
183 2015-10-30 Gyuyoung Kim <gyuyoung.kim@webkit.org>
185 [EFL] Add Shadow DOM feature
186 https://bugs.webkit.org/show_bug.cgi?id=150611
188 Reviewed by Csaba Osztrogonác.
190 * Source/cmake/OptionsEfl.cmake:
191 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SHADOW_DOM cmake variable.
193 2015-10-29 Alex Christensen <achristensen@webkit.org>
196 https://bugs.webkit.org/show_bug.cgi?id=150686
198 Reviewed by Filip Pizlo.
200 * Source/cmake/WebKitMacros.cmake:
202 2015-10-28 Alex Christensen <achristensen@webkit.org>
204 Compile and link with CMake on Mac
205 https://bugs.webkit.org/show_bug.cgi?id=150632
207 Reviewed by Tim Horton.
209 * Source/cmake/OptionsMac.cmake:
211 2015-10-26 Dana Burkart <dburkart@apple.com>
213 `make analyze` should build using the debug configuration
214 https://bugs.webkit.org/show_bug.cgi?id=150571
216 Reviewed by Lucas Forschler.
220 2015-10-26 Philippe Normand <pnormand@igalia.com>
222 Unreviewed, rolling out r191576.
224 broke the http/tests/media tests
228 "[GStreamer] Bump internal jhbuild versions to 1.6.0"
229 https://bugs.webkit.org/show_bug.cgi?id=149594
230 http://trac.webkit.org/changeset/191576
232 2015-10-26 ChangSeok Oh <changseok.oh@collabora.com>
234 [GStreamer] Bump internal jhbuild versions to 1.6.0
235 https://bugs.webkit.org/show_bug.cgi?id=149594
237 Reviewed by Philippe Normand.
239 Bump up the minimum reqirement version of gstreamer-gl to 1.6.0.
241 * Source/cmake/FindGStreamer.cmake:
243 2015-10-22 Philippe Normand <pnormand@igalia.com>
245 [GTK][Mac] ICU-related build fixes
246 https://bugs.webkit.org/show_bug.cgi?id=150032
248 Rubber-stamped by Darin Adler.
250 * Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
252 2015-10-20 Yoav Weiss <yoav@yoav.ws>
254 Rename the PICTURE_SIZES flag to CURRENTSRC
255 https://bugs.webkit.org/show_bug.cgi?id=150275
257 Reviewed by Dean Jackson.
259 * Source/cmake/OptionsEfl.cmake:
260 * Source/cmake/OptionsGTK.cmake:
261 * Source/cmake/OptionsMac.cmake:
262 * Source/cmake/OptionsWin.cmake:
263 * Source/cmake/WebKitFeatures.cmake:
265 2015-10-14 Tomas Popela <tpopela@redhat.com>
267 [GTK][EFL] Fix build with cmake 3.4
268 https://bugs.webkit.org/show_bug.cgi?id=150117
270 Explicitely include the CheckIncludeFiles module before using
271 the CHECK_INCLUDE_FILES command.
273 Reviewed by Žan Doberšek.
275 * Source/cmake/FindOpenGL.cmake:
276 * Source/cmake/FindWebP.cmake:
277 * Source/cmake/OptionsEfl.cmake:
279 2015-10-13 Dean Jackson <dino@apple.com>
281 Device motion and orientation should only be visible from the main frame's security origin
282 https://bugs.webkit.org/show_bug.cgi?id=150072
283 <rdar://problem/23082036>
285 Reviewed by Brent Fulgham.
287 Add a manual test for cross-origin device orientation events, while
288 we're waiting on the mock client to be supported everywhere.
290 * ManualTests/deviceorientation-child-frame.html: Added.
291 * ManualTests/deviceorientation-main-frame-only.html: Added.
293 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
295 [GTK] OSX linker doesn't understand --whole-archive
296 https://bugs.webkit.org/show_bug.cgi?id=144557
298 Reviewed by Martin Robinson.
300 * Source/cmake/OptionsGTK.cmake: Turn the macro
301 ADD_WHOLE_ARCHIVE_TO_LIBRARIES into a no-op on Darwin systems,
302 because XCode's linker doesn't have the --whole-archive option.
304 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
306 [GTK] Use --version-script only on Linux
307 https://bugs.webkit.org/show_bug.cgi?id=144555
309 Reviewed by Philippe Normand.
311 * Source/cmake/OptionsGTK.cmake: Don't add --version-script
312 option on Darwin (whose linker doesn't support it.)
314 2015-10-09 Gyuyoung Kim <gyuyoung.kim@webkit.org>
316 [CMake] Remove ENABLE_SUBPIXEL_LAYOUT macro
317 https://bugs.webkit.org/show_bug.cgi?id=149947
319 Reviewed by Csaba Osztrogonác.
321 ENABLE(SUBPIXEL_LAYOUT) was removed though, it is still alive in .cmake.
324 * Source/cmake/OptionsMac.cmake:
325 * Source/cmake/OptionsWin.cmake:
326 * Source/cmake/WebKitFeatures.cmake:
328 2015-10-06 Emanuele Aina <emanuele.aina@collabora.com>
330 Fix ENABLE_OPENGL=OFF builds
331 https://bugs.webkit.org/show_bug.cgi?id=146511
333 Reviewed by Darin Adler.
335 * Source/cmake/OptionsGTK.cmake: Make ENABLE_WAYLAND_TARGET depend on
336 ENABLE_OPENGL due to EGL usage.
338 2015-10-01 Wenson Hsieh <wenson_hsieh@apple.com>
340 Convert focused-input-should-assist-on-touch.html into an automated test
341 https://bugs.webkit.org/show_bug.cgi?id=149724
343 Reviewed by Simon Fraser.
345 Remove a manual test that can now be rewritten as an automated test.
347 * ManualTests/ios/focused-input-should-assist-on-touch.html: Removed.
349 2015-10-01 Brent Fulgham <bfulgham@apple.com>
351 [Win] Unreviewed CMake build fix.
353 * Source/cmake/OptionsWin.cmake: Clean up options setttings,
354 and make sure exception handling is turned off.
356 2015-09-30 Brent Fulgham <bfulgham@apple.com>
358 [Win] Unreviewed build fix after CMake conversion.
360 * Source/cmake/OptionsWin.cmake: Correct some Windows build flags.
362 2015-09-29 Michael Catanzaro <mcatanzaro@igalia.com>
364 [GTK][CMake] Warning about CMP0058
365 https://bugs.webkit.org/show_bug.cgi?id=149627
367 Reviewed by Martin Robinson.
369 Opt-in to the new behavior for CMP0058.
373 2015-09-28 Brent Fulgham <bfulgham@apple.com>
375 [Win] Unreviewed build fix for internal systems.
377 * Source/cmake/OptionsWin.cmake: Preferentially use the build target
378 location for include and link libraries, rather than the system locations.
380 2015-09-28 Alex Christensen <achristensen@webkit.org>
382 Build WK1 with CMake on Mac
383 https://bugs.webkit.org/show_bug.cgi?id=149604
385 Reviewed by Chris Dumez.
387 * Source/cmake/OptionsMac.cmake:
388 * Source/cmake/WebKitMacros.cmake:
389 ObjC bindings now have their own list of IDL files, but some of them still don't generate a .mm file.
391 2015-09-25 Alex Christensen <achristensen@webkit.org>
393 Clean up CMake build on Mac
394 https://bugs.webkit.org/show_bug.cgi?id=149573
396 Reviewed by Chris Dumez.
398 * Source/cmake/OptionsMac.cmake:
400 2015-09-25 Alex Christensen <achristensen@webkit.org>
402 [Win] Switch to CMake
403 https://bugs.webkit.org/show_bug.cgi?id=148111
405 Reviewed by Brent Fulgham.
407 * Source/cmake/WinTools.make: Added.
408 * Source/cmake/tools: Added.
409 * Source/cmake/tools/scripts: Copied from WebKitLibraries/win/tools/scripts.
410 * Source/cmake/tools/scripts/auto-version.pl: Copied from WebKitLibraries/win/tools/scripts/auto-version.pl.
412 2015-09-25 Alex Christensen <achristensen@webkit.org>
414 Prepare internal AppleWin build for CMake
415 https://bugs.webkit.org/show_bug.cgi?id=149570
417 Reviewed by Brent Fulgham.
419 * Source/PlatformWin.cmake:
420 Include internal CMake files if they exist.
422 2015-09-22 Gyuyoung Kim <gyuyoung.kim@webkit.org>
424 Add a file of pointer-lock to cmake ports
425 https://bugs.webkit.org/show_bug.cgi?id=149453
427 Reviewed by Csaba Osztrogonác.
429 * Source/cmake/OptionsEfl.cmake: Add a ENABLE_POINTER_LOCK.
431 2015-09-22 Carlos Alberto Lopez Perez <clopez@igalia.com>
433 [CMake] Allow to enable OpenMP support.
434 https://bugs.webkit.org/show_bug.cgi?id=149457
436 Reviewed by Csaba Osztrogonác.
438 * Source/cmake/OptionsCommon.cmake: Add the option USE_OPENMP that
439 will enable the support for OpenMP. Currently this is only used as
440 an alternative implementation to native threads for the parallelization
441 of the SVG filters. But name the option with a generic name (USE_OPENMP)
442 as it could be also used to enable future features that depend on OpenMP.
444 2015-09-22 Ryuan Choi <ryuan.choi@navercorp.com>
446 [EFL] Build break when DEVELOPER_MODE is OFF
447 https://bugs.webkit.org/show_bug.cgi?id=149448
449 Reviewed by Gyuyoung Kim.
451 Since r187191, DatabaseProcessMainUnix is missing in symbol filter.
453 * Source/cmake/eflsymbols.filter:
455 2015-09-21 Alex Christensen <achristensen@webkit.org>
457 Disable PICTURE_SIZES in Windows CMake build like r189745.
458 https://bugs.webkit.org/show_bug.cgi?id=149125
460 * Source/cmake/OptionsWin.cmake:
461 Do the same thing as r189745.
463 2015-09-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
465 Removing XHR_TIMEOUT guard
467 Remove XHR_TIMEOUT compilation guard
468 https://bugs.webkit.org/show_bug.cgi?id=149260
470 Reviewed by Benjamin Poulain.
472 * Source/cmake/OptionsEfl.cmake:
473 * Source/cmake/OptionsGTK.cmake:
474 * Source/cmake/OptionsMac.cmake:
475 * Source/cmake/OptionsWin.cmake:
476 * Source/cmake/WebKitFeatures.cmake:
478 2015-09-18 Alex Christensen <achristensen@webkit.org>
480 Fix tests on Windows after switching to CMake.
481 https://bugs.webkit.org/show_bug.cgi?id=149339
483 Reviewed by Brent Fulgham.
485 * Source/PlatformWin.cmake: Added to copy WebInspectorUI.
487 2015-09-17 Alex Christensen <achristensen@webkit.org>
489 Fix Windows EWS build after r189934.
491 * Source/cmake/OptionsWin.cmake:
492 Use WEBKIT_LIBRARIES environment variable if it exists.
493 We have the WebKitLibraries directory separate from the repository copy on the EWS bots.
495 2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
497 Add ShadowRoot interface and Element.prototype.attachShadow
498 https://bugs.webkit.org/show_bug.cgi?id=149187
500 Reviewed by Antti Koivisto.
502 * Source/cmake/OptionsGTK.cmake:
504 2015-09-15 Csaba Osztrogonác <ossy@webkit.org>
506 [cmake] Enable debug fission only if it is supported
507 https://bugs.webkit.org/show_bug.cgi?id=149161
509 Reviewed by Martin Robinson.
511 * Source/cmake/OptionsCommon.cmake:
513 2015-09-14 Alex Christensen <achristensen@webkit.org>
515 Progress towards CMake on Mac.
516 https://bugs.webkit.org/show_bug.cgi?id=149123
518 Reviewed by Chris Dumez.
520 * Source/cmake/OptionsMac.cmake:
521 * Source/cmake/WebKitFeatures.cmake:
522 Defined and enabled some more features needed on Mac.
523 * Source/cmake/WebKitMacros.cmake:
524 Objective C bindings need special changes when generating:
525 Some of the bindings do not generate a .mm file but the header is needed.
526 Some of the bindings do generate a .mm file that doesn't compile but the header is needed.
527 In order to handle these cases, it is necessary to change the GENERATE_BINDINGS macro just for ObjC.
529 2015-09-08 Daniel Bates <dabates@apple.com>
531 Convert manual test added in http://trac.webkit.org/changeset/70321 to an automated test
532 https://bugs.webkit.org/show_bug.cgi?id=74729
533 <rdar://problem/22550195>
535 Reviewed by Jon Honeycutt.
537 * ManualTests/compositing/resources/composited-subframe.html: Removed.
538 * ManualTests/compositing/show-composited-iframe-on-back-button.html: Removed.
540 2015-09-06 Andy Estes <aestes@apple.com>
542 WebKit.xcworkspace should be be able to build iOS platforms
543 https://bugs.webkit.org/show_bug.cgi?id=148881
545 Reviewed by Daniel Bates.
547 Since we don't want to create platform-specific schemes, all projects in the workspace's schemes need to build
548 for all supported platforms.
550 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Removed the DumpRenderTree target since its All
551 target was already included. Removed the WebKitTestRunner target and replaced it with its All target.
553 2015-09-04 Jon Honeycutt <jhoneycutt@apple.com>
555 [iOS] Need a test for bug #145539: Uploading an animated GIF from the
556 photo library uploads a JPEG
557 https://bugs.webkit.org/show_bug.cgi?id=148849
559 Reviewed by Daniel Bates.
561 * ManualTests/ios/image-file-uploads-as-original-type.html: Added.
562 On the Mac, file upload tests use EventSender::beginDragWithFiles. This
563 functionality doesn't exist on iOS, so we'll add a manual test.
564 This tests that the first few bytes of the selected file are "GIF".
566 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
568 Follow-up patch for r189343.
569 https://bugs.webkit.org/show_bug.cgi?id=148795
571 Rubber-stamped by Csaba Osztrogonác.
573 * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
574 to 1.9, since this seems to be enough to fix the build failure.
575 And 2.0 may cause problems for developers using some distributions like Ubuntu.
577 2015-09-04 Emanuele Aina <emanuele.aina@collabora.com>
579 [CMake] Trigger the memory-reduction tricks on armhf too
580 https://bugs.webkit.org/show_bug.cgi?id=146640
582 Reviewed by Csaba Osztrogonác.
584 * Source/cmake/OptionsCommon.cmake:
585 Activate --no-keep-memory even on armhf to reduce the amount of memory
586 needed during linking, to avoid out-of-memory failures as much as
589 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
591 REGRESSION(r189293): JavaScriptCore/offlineasm/x86.rb -- Build failure with ruby < 2.0
592 https://bugs.webkit.org/show_bug.cgi?id=148795
594 Rubber-stamped by Carlos Garcia Campos.
596 * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
598 2015-09-02 Alex Christensen <achristensen@webkit.org>
600 Make bison grammar compatible with bison 2.1
601 https://bugs.webkit.org/show_bug.cgi?id=148731
603 Reviewed by Tim Horton.
605 * Source/cmake/WebKitCommon.cmake:
608 2015-08-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
610 [CMake] Build with Debug Fission on by default on Debug builds.
611 https://bugs.webkit.org/show_bug.cgi?id=148639
613 Reviewed by Martin Robinson.
615 * Source/cmake/OptionsCommon.cmake:
617 2015-08-29 Alex Christensen <achristensen@webkit.org>
619 Unreviewed build fix after r179923.
621 * Source/CMakeLists.txt:
622 bmalloc isn't ported to Windows yet.
624 2015-08-27 Alex Christensen <achristensen@webkit.org>
626 Isolate Source directories in CMake build
627 https://bugs.webkit.org/show_bug.cgi?id=148389
629 Reviewed by Brent Fulgham.
632 * Source/cmake/WebKitCommon.cmake:
633 Move package finding to WebKitCommon.
635 2015-08-26 Per Arne Vollan <peavo@outlook.com>
637 [Win] Build does not generate debug info.
638 https://bugs.webkit.org/show_bug.cgi?id=148431
640 Reviewed by Alex Christensen.
642 Generate debug info for Windows builds.
644 * Source/cmake/OptionsWin.cmake:
646 2015-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
648 [GTK] Disable ACCELERATED_2D_CANVAS by default
649 https://bugs.webkit.org/show_bug.cgi?id=148473
651 Reviewed by Martin Robinson.
653 Currently ACCELERATED_2D_CANVAS is enabled by default on most systems (which have CairoGL)
654 but not on Debian (which does not). We've known this was problematic for a while, since it
655 means we have two different sets of distro-dependent bugs, but never decided whether that
656 outweighed the benefits of CarioGL or not. I'm making the call now: it's more important to
657 have the same bugs everywhere. We can turn this on again for other distros when we're ready
658 to turn it on for Debian.
660 Also, properly fail the build if ENABLE_ACCELERATED_2D_CANVAS is enabled but CairoGL is not
663 * Source/cmake/OptionsGTK.cmake:
665 2015-08-25 Commit Queue <commit-queue@webkit.org>
667 Unreviewed, rolling out r188919.
668 https://bugs.webkit.org/show_bug.cgi?id=148452
670 broke build (Requested by alexchristensen on #webkit).
674 "[Win] Build does not generate debug info."
675 https://bugs.webkit.org/show_bug.cgi?id=148431
676 http://trac.webkit.org/changeset/188919
678 2015-08-25 Michael Catanzaro <mcatanzaro@igalia.com>
680 [GTK] r186800 broke the build on Ubuntu 14.04
681 https://bugs.webkit.org/show_bug.cgi?id=147559
683 Reviewed by Martin Robinson.
685 * Source/cmake/FindGTK3.cmake: Always define GTK3_SUPPORTS_X11 and GTK3_SUPPORTS_WAYLAND.
686 * Source/cmake/OptionsGTK.cmake: Autodetect support for X11 and Wayland backends.
688 2015-08-25 Per Arne Vollan <peavo@outlook.com>
690 [Win] Build does not generate debug info.
691 https://bugs.webkit.org/show_bug.cgi?id=148431
693 Reviewed by Brent Fulgham.
695 Generate debug info for Windows builds.
697 * Source/cmake/OptionsWin.cmake:
699 2015-08-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
701 [GTK] Auto-detection of cairo-gl fails
702 https://bugs.webkit.org/show_bug.cgi?id=148189
704 Reviewed by Žan Doberšek.
706 * Source/cmake/FindCairoGL.cmake: only check for components if the main package has
707 been found. Otherwise, if either GLX or EGL are available, cairo-gl will also be
708 deemed available, which might not be the case.
709 * Source/cmake/OptionsGTK.cmake: fix the usage of the CAIROGL_FOUND variable.
711 2015-08-19 Alex Christensen <achristensen@webkit.org>
713 CMake Windows build should not include files directly from other Source directories
714 https://bugs.webkit.org/show_bug.cgi?id=148198
716 Reviewed by Brent Fulgham.
718 * Source/cmake/WebKitMacros.cmake:
720 2015-08-19 Alex Christensen <achristensen@webkit.org>
722 Build TestWTF on Mac with CMake.
723 https://bugs.webkit.org/show_bug.cgi?id=147972
725 Reviewed by Tim Horton.
727 * Source/cmake/OptionsMac.cmake:
728 Enable API tests in Mac's CMake build.
730 2015-08-18 Alex Christensen <achristensen@webkit.org>
732 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
733 https://bugs.webkit.org/show_bug.cgi?id=148127
735 Reviewed by Martin Robinson.
738 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
740 2015-08-17 Alex Christensen <achristensen@webkit.org>
742 [Win CMake] Allow WebKitLibraries directory to be set from the command line
743 https://bugs.webkit.org/show_bug.cgi?id=148112
745 Reviewed by Brent Fulgham.
747 * Source/cmake/OptionsWin.cmake:
748 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
749 Instead, use the default location if nothing is passed in from the command line.
750 This way we can set it from the command line for the AppleInternal build.
751 Also, set the output directories to be consistent between the old and new build systems (and ninja).
753 2015-08-17 Alex Christensen <achristensen@webkit.org>
755 Build Debug Suffix on Windows with CMake
756 https://bugs.webkit.org/show_bug.cgi?id=148083
758 Reviewed by Brent Fulgham.
760 * Source/cmake/OptionsWin.cmake:
761 Use debug libraries in debug suffix builds.
763 2015-08-17 Alex Christensen <achristensen@webkit.org>
765 Move some commands from ./CMakeLists.txt to Source/cmake
766 https://bugs.webkit.org/show_bug.cgi?id=148003
768 Reviewed by Brent Fulgham.
771 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
772 so we can change directory structure from command line parameters.
773 * Source/cmake/OptionsAppleWin.cmake:
774 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
775 * Source/cmake/OptionsWinCairo.cmake:
776 * Source/cmake/OptionsWindows.cmake: Removed.
777 * Source/cmake/WebKitCommon.cmake: Added.
778 * Source/cmake/WebKitFS.cmake:
780 2015-08-13 Commit Queue <commit-queue@webkit.org>
782 Unreviewed, rolling out r188428.
783 https://bugs.webkit.org/show_bug.cgi?id=148015
785 broke cmake build (Requested by alexchristensen on #webkit).
789 "Move some commands from ./CMakeLists.txt to Source/cmake"
790 https://bugs.webkit.org/show_bug.cgi?id=148003
791 http://trac.webkit.org/changeset/188428
793 2015-08-13 Alex Christensen <achristensen@webkit.org>
795 Move some commands from ./CMakeLists.txt to Source/cmake
796 https://bugs.webkit.org/show_bug.cgi?id=148003
798 Reviewed by Brent Fulgham.
801 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
802 so we can change directory structure from command line parameters.
803 * Source/cmake/WebKitCommon.cmake: Added.
804 * Source/cmake/WebKitFS.cmake:
806 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
808 A focused node should not be assisted when handling touch events synchronously
809 https://bugs.webkit.org/show_bug.cgi?id=147836
811 Reviewed by Enrica Casucci.
813 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
815 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
816 input can still be assisted due to a touch event.
817 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
818 event does not automatically cause us to assist the currently focused node.
820 2015-08-12 Alex Christensen <achristensen@webkit.org>
822 Fix Debug CMake builds on Windows
823 https://bugs.webkit.org/show_bug.cgi?id=147940
825 Reviewed by Chris Dumez.
827 * Source/cmake/OptionsWindows.cmake:
828 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
830 2015-08-10 Alex Christensen <achristensen@webkit.org>
832 Build TestWebKitAPI with CMake on Windows
833 https://bugs.webkit.org/show_bug.cgi?id=147851
835 Reviewed by Chris Dumez.
837 * Source/cmake/OptionsWindows.cmake:
838 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
840 2015-08-06 Alex Christensen <achristensen@webkit.org>
842 [Win] CMake build fix after r188098.
844 * Source/cmake/OptionsWinCairo.cmake:
845 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
847 2015-08-04 Alex Christensen <achristensen@webkit.org>
849 Fix quirks with CMake and VS2015
850 https://bugs.webkit.org/show_bug.cgi?id=147663
852 Reviewed by Brent Fulgham.
854 * Source/cmake/OptionsWindows.cmake:
855 Hide some warnings. Using the same variable names in nested scopes is ok for now.
856 Disable INTL for now.
858 2015-08-04 Alex Christensen <achristensen@webkit.org>
860 Enable WebGL on Windows CMake build.
861 https://bugs.webkit.org/show_bug.cgi?id=143311
863 Reviewed by Csaba Osztrogonác.
865 * Source/cmake/OptionsWindows.cmake:
866 Enable WebGL by default in CMake builds now that it works.
868 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
870 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
871 https://bugs.webkit.org/show_bug.cgi?id=147625
873 Reviewed by Martin Robinson.
875 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
876 components unless they were actually found, not to accidentally
877 enable Accelerated 2D canvas, which would cause the build to fail.
879 * Source/cmake/FindCairoGL.cmake: Set this variables only when
880 pkg_check_modules() had actually found the relevant component.
882 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
884 [CMake] Add an option to build AllInOne files
885 https://bugs.webkit.org/show_bug.cgi?id=102647
887 Reviewed by Alex Christensen.
889 * Source/cmake/OptionsEfl.cmake: Disabled by default.
890 * Source/cmake/OptionsGTK.cmake: Disabled by default.
891 * Source/cmake/OptionsWindows.cmake: Enabled by default.
892 * Source/cmake/WebKitFeatures.cmake:
893 * Source/cmake/WebKitMacros.cmake:
895 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
897 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
899 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
901 2015-07-31 Alex Christensen <achristensen@webkit.org>
903 Prepare for debug CMake builds on Windows.
904 https://bugs.webkit.org/show_bug.cgi?id=147484
906 Reviewed by Tim Horton.
908 * Source/cmake/OptionsWindows.cmake:
909 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
911 2015-07-30 Joonghun Park <jh718.park@samsung.com>
913 [EFL] Enable IndexedDB based on DatabaseProcess
914 https://bugs.webkit.org/show_bug.cgi?id=147221
916 Reviewed by Csaba Osztrogonác.
918 * Source/cmake/OptionsEfl.cmake:
920 2015-07-30 Alex Christensen <achristensen@webkit.org>
922 Build AppleWin port with CMake
923 https://bugs.webkit.org/show_bug.cgi?id=147385
925 Reviewed by Martin Robinson.
927 * Source/cmake/OptionsWindows.cmake:
928 Use the static multithreaded runtime. Based on
929 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
931 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
933 Implement basic types for ECMAScript Internationalization API
934 https://bugs.webkit.org/show_bug.cgi?id=146926
936 Reviewed by Benjamin Poulain.
938 Enable flag now that the basic objects are in place.
940 * Source/cmake/WebKitFeatures.cmake: enable INTL
942 2015-07-29 Basile Clement <basile_clement@apple.com>
944 Remove native call inlining
945 https://bugs.webkit.org/show_bug.cgi?id=147417
947 Rubber-stamped by Filip Pizlo.
949 * Source/cmake/OptionsEfl.cmake:
950 * Source/cmake/WebKitFeatures.cmake:
952 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
954 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
955 https://bugs.webkit.org/show_bug.cgi?id=147350
957 Reviewed by Sam Weinig.
959 * Source/cmake/WebKitFeatures.cmake:
961 2015-07-27 Alex Christensen <achristensen@webkit.org>
963 Use Ninja on Windows.
964 https://bugs.webkit.org/show_bug.cgi?id=147228
966 Reviewed by Martin Robinson.
968 * Source/cmake/OptionsWindows.cmake:
969 Only use /MP when using generated Visual Studio solution files to build.
970 It makes compiling parallel in MSVC, but Ninja doesn't like it.
972 2015-07-27 Alex Christensen <achristensen@webkit.org>
974 Progress towards building AppleWin with CMake
975 https://bugs.webkit.org/show_bug.cgi?id=147325
977 Reviewed by Martin Robinson.
979 * Source/cmake/OptionsWindows.cmake:
980 Link with 64-bit libraries if building 64-bit binaries.
981 Don't run regular expressions on empty strings when using Ninja.
982 Removed DebugSuffix Visual Studio environment variables.
984 2015-07-23 Alex Christensen <achristensen@webkit.org>
986 Remove compile and runtime flags for promises.
987 https://bugs.webkit.org/show_bug.cgi?id=147244
989 Reviewed by Yusuke Suzuki.
991 * Source/cmake/OptionsMac.cmake:
992 * Source/cmake/OptionsWindows.cmake:
993 * Source/cmake/WebKitFeatures.cmake:
995 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
997 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
998 https://bugs.webkit.org/show_bug.cgi?id=147212
1000 Reviewed by Filip Pizlo.
1002 * Source/cmake/WebKitFeatures.cmake:
1004 2015-07-22 Alex Christensen <achristensen@webkit.org>
1006 Fix quirks in CMake build on Mac and Windows
1007 https://bugs.webkit.org/show_bug.cgi?id=147174
1009 Reviewed by Gyuyoung Kim.
1012 * Source/cmake/OptionsWindows.cmake:
1013 Added options I removed in r187022. They are indeed needed.
1014 * Source/cmake/WebKitFS.cmake:
1015 Make the DerivedSources/WebKit directory.
1017 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
1019 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
1021 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1023 2015-07-20 Alex Christensen <achristensen@webkit.org>
1025 Resurrect CMake build on Windows.
1026 https://bugs.webkit.org/show_bug.cgi?id=147083
1028 Reviewed by Gyuyoung Kim.
1030 * Source/cmake/OptionsCommon.cmake:
1031 * Source/cmake/OptionsWindows.cmake:
1032 Change features to get it to compile. Still not a complete feature set.
1034 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
1036 [GTK] Add seccomp filters support
1037 https://bugs.webkit.org/show_bug.cgi?id=110014
1039 Reviewed by Žan Doberšek.
1041 Find needed compiler and linker flags for libseccomp.
1043 * Source/cmake/OptionsGTK.cmake:
1045 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
1047 Bring back the GNU ar check to create thin archives on non-Linux systems
1048 https://bugs.webkit.org/show_bug.cgi?id=146681
1050 Reviewed by Martin Robinson.
1052 We already use GNU ar thin archive feature to save time and disk space
1053 on creating static archives, but it is only enabled on Linux. Without
1054 this feature, the debug build of WebCore can be larger than 4 GiB,
1055 which can cause error because GNU ar format uses 32-bit integer to
1056 store offsets in the symbol table. This patch is similar to
1057 https://bugs.webkit.org/show_bug.cgi?id=128596.
1059 * Source/cmake/OptionsCommon.cmake:
1061 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
1063 [GTK] [Wayland] Build by default the X11 and Wayland targets.
1064 https://bugs.webkit.org/show_bug.cgi?id=146057
1066 Reviewed by Carlos Garcia Campos.
1068 * Source/cmake/OptionsGTK.cmake:
1070 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
1072 [GTK] ar warning when linking static libraries
1073 https://bugs.webkit.org/show_bug.cgi?id=144988
1075 Reviewed by Carlos Garcia Campos.
1077 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
1078 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
1079 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
1080 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
1081 should either stop using 'u' or else add 'U' as well in order to disable deterministic
1082 archives. Using 'U' should result in a somewhat faster build (at least when using the
1083 Makefile generator), but it's unlikely that the difference is significant, so let's simply
1084 remove 'u' until someone determines otherwise. This seems like a better option than adding
1085 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
1086 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
1087 behavior change on distributions that do not use --enable-deterministic-archives, notably
1090 * Source/cmake/OptionsCommon.cmake:
1092 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
1094 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
1095 https://bugs.webkit.org/show_bug.cgi?id=146590
1097 Reviewed by Martin Robinson.
1099 * Source/PlatformGTK.cmake: override the cached variables to
1100 forcefully disable gtk-doc and gobject-introspection when
1102 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
1103 documentation syntax when cross-building.
1106 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
1108 [EFL] test_ewk2_application_cache_manager has been failed since r185527
1109 https://bugs.webkit.org/show_bug.cgi?id=146016
1111 Reviewed by Gyuyoung Kim.
1113 In order to handle properly WebApplicationCacheManagerProxy implementation which use
1114 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
1115 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
1117 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
1119 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
1121 Implement ECMAScript Internationalization API
1122 https://bugs.webkit.org/show_bug.cgi?id=90906
1124 Reviewed by Benjamin Poulain.
1126 Begin implementing the Intl apis behind ENABLE_INTL flag.
1127 Create the base Intl namespace object.
1129 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
1131 2015-06-30 Philippe Normand <pnormand@igalia.com>
1133 [CMake] Error when gst-plugins-base is missing is too confusing
1134 https://bugs.webkit.org/show_bug.cgi?id=145682
1136 Reviewed by Carlos Garcia Campos.
1138 * Source/cmake/OptionsGTK.cmake: Error out if the required
1139 GStreamer libraries are not found on the host.
1141 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
1143 CairoGL should be checked unconditionally
1144 https://bugs.webkit.org/show_bug.cgi?id=146390
1146 Reviewed by Darin Adler.
1148 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
1149 it is run unconditionally; this is necessary because its result
1150 is used later on, outside of any conditions.
1152 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
1154 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
1155 https://bugs.webkit.org/show_bug.cgi?id=146318
1157 Reviewed by Sergio Villar Senin.
1159 Enable PUBLIC_SUFFIX_LIST for GTK+.
1161 * Source/cmake/OptionsGTK.cmake:
1163 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
1165 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
1167 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1169 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
1171 [EFL] Hyphenation is not supported
1172 https://bugs.webkit.org/show_bug.cgi?id=89830
1174 Reviewed by Gyuyoung Kim.
1176 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
1178 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
1180 [CMake] Add support for building with various sanitizer tools
1181 https://bugs.webkit.org/show_bug.cgi?id=131941
1183 Reviewed by Martin Robinson.
1185 * Source/PlatformGTK.cmake: Don't generate any documentation
1186 when compiling with sanitizers enabled.
1187 * Source/cmake/OptionsCommon.cmake: Allow linking with
1188 undefined symbols when compiling with sanitizers enabled.
1190 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
1192 libwebkit2gtk fails to link without opengl
1193 https://bugs.webkit.org/show_bug.cgi?id=138332
1195 Reviewed by Carlos Garcia Campos.
1197 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
1198 enabled regardless of whether OpenGL is, because certain symbols
1199 such as WebCore::GraphicsLayer::create() need to be built.
1201 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
1203 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
1204 https://bugs.webkit.org/show_bug.cgi?id=146181
1206 Reviewed by Martin Robinson.
1208 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
1210 * Source/cmake/OptionsGTK.cmake:
1212 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
1214 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
1215 https://bugs.webkit.org/show_bug.cgi?id=146171
1217 Reviewed by Gyuyoung Kim.
1219 * Source/cmake/OptionsEfl.cmake:
1220 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
1222 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
1224 [CMake] FindGTK3.cmake should not modify the values of build options
1225 https://bugs.webkit.org/show_bug.cgi?id=144613
1227 Reviewed by Martin Robinson.
1229 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
1230 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
1231 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
1232 GTK3_SUPPORTS_GESTURES for consistency.
1233 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
1234 available. It's not possible to automatically select a backend correctly anymore, since all
1235 options are set at the same time.
1237 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
1239 Remove unnecessary svn:executable flags
1240 https://bugs.webkit.org/show_bug.cgi?id=146107
1242 Reviewed by Alexey Proskuryakov.
1244 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
1245 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
1246 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
1247 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
1248 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
1250 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
1252 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
1253 https://bugs.webkit.org/show_bug.cgi?id=146108
1255 Reviewed by Gyuyoung Kim.
1257 * Source/cmake/OptionsEfl.cmake:
1259 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
1261 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
1262 https://bugs.webkit.org/show_bug.cgi?id=146035
1264 Reviewed by Gyuyoung Kim.
1266 * Source/cmake/OptionsEfl.cmake:
1268 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
1270 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1271 https://bugs.webkit.org/show_bug.cgi?id=145701
1273 Reviewed by Darin Adler.
1275 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1277 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
1279 [iOS] Crash long pressing on <input type=file>
1280 https://bugs.webkit.org/show_bug.cgi?id=146009
1281 <rdar://problem/21234453>
1283 Reviewed by Ryosuke Niwa.
1285 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
1287 2015-06-16 Brent Fulgham <bfulgham@apple.com>
1289 Rollout accidental Xcode project change.
1291 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1293 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1295 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
1296 https://bugs.webkit.org/show_bug.cgi?id=145909
1298 Reviewed by Csaba Osztrogonác.
1300 Bump EWebKit version based on efl library version used by the EWebKit.
1302 * Source/cmake/OptionsEfl.cmake:
1304 2015-06-11 Commit Queue <commit-queue@webkit.org>
1306 Unreviewed, rolling out r185453.
1307 https://bugs.webkit.org/show_bug.cgi?id=145881
1309 it broke the 32-bit build (Requested by clopez on #webkit).
1313 "[GTK] [Wayland] Should be possible to build with support for
1314 both X11 and Wayland."
1315 https://bugs.webkit.org/show_bug.cgi?id=145701
1316 http://trac.webkit.org/changeset/185453
1318 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1320 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1321 https://bugs.webkit.org/show_bug.cgi?id=145701
1323 Reviewed by Žan Doberšek.
1325 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1327 2015-06-03 Daniel Bates <dabates@apple.com>
1329 Caps lock indicator should not be shown in read-only or disabled field
1330 https://bugs.webkit.org/show_bug.cgi?id=145612
1331 <rdar://problem/21227454>
1333 Reviewed by Darin Adler.
1335 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
1336 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
1337 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
1339 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
1341 [cmake] Suppress parentheses-equality warnings
1342 https://bugs.webkit.org/show_bug.cgi?id=145126
1344 Reviewed by Darin Adler.
1346 * Source/cmake/WebKitHelpers.cmake:
1348 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1350 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
1351 https://bugs.webkit.org/show_bug.cgi?id=145408
1353 Reviewed by Carlos Garcia Campos.
1355 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
1356 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
1357 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
1359 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
1360 libraries. Detect also GLX libraries.
1361 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
1362 libraries. Use find_path() to get the include path.
1363 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
1365 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
1366 depending on the libraries found on the system.
1367 Move the detection of GLX (and the include of CMakePushCheckState)
1368 to FindOpenGL.cmake.
1369 Ensure that we only define USE_GLX when we build with OpenGL
1370 (but not with GLESv2).
1372 2015-05-27 Dean Jackson <dino@apple.com>
1374 img.currentSrc problem in strict mode with old picturefill
1375 https://bugs.webkit.org/show_bug.cgi?id=144095
1376 <rdar://problem/21087013>
1378 Reviewed by Simon Fraser.
1380 Add a PICTURE_SIZES flag.
1382 * Source/cmake/OptionsEfl.cmake:
1383 * Source/cmake/OptionsGTK.cmake:
1384 * Source/cmake/OptionsMac.cmake:
1385 * Source/cmake/OptionsWindows.cmake:
1386 * Source/cmake/WebKitFeatures.cmake:
1388 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
1390 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
1392 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1394 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1396 Unreviewed. Export DatabaseProcessMainUnix symbol.
1398 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
1399 is exported in production builds.
1401 * Source/cmake/gtksymbols.filter:
1403 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1405 [GTK] Enable IndexedDB
1406 https://bugs.webkit.org/show_bug.cgi?id=98932
1408 Reviewed by Žan Doberšek.
1410 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1411 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1413 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
1415 [GTK] Bump GCC requirements to 4.9.0
1416 https://bugs.webkit.org/show_bug.cgi?id=145211
1418 Reviewed by Žan Doberšek.
1420 It's required to build with IndexedDB support when using GCC,
1421 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
1423 * Source/cmake/OptionsGTK.cmake:
1425 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
1427 [CMake] Ignore warnings in system headers
1428 https://bugs.webkit.org/show_bug.cgi?id=144747
1430 Reviewed by Darin Adler.
1432 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
1433 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
1434 use the SYSTEM argument to the command (added in 2.8.12).
1438 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
1440 [CMake] Error out when ruby is too old
1441 https://bugs.webkit.org/show_bug.cgi?id=145014
1443 Reviewed by Martin Robinson.
1445 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
1450 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
1452 [GTK] Enable plugin-related CMake options and variables for the X11 target only
1453 https://bugs.webkit.org/show_bug.cgi?id=144995
1455 Reviewed by Carlos Garcia Campos.
1457 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
1458 the X11 windowing target at the moment, so the following options
1459 and variables should be enabled or disabled accordingly:
1460 - ENABLE_PLUGIN_PROCESS_GTK2
1461 - ENABLE_NETSCAPE_PLUGIN_API
1462 - ENABLE_PLUGIN_PROCESS
1464 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
1466 Linker fails without -DDEVELOPER_MODE=ON
1467 https://bugs.webkit.org/show_bug.cgi?id=144117
1469 Reviewed by Gyuyoung Kim.
1471 * Source/cmake/OptionsEfl.cmake:
1472 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
1473 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
1475 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1477 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
1478 https://bugs.webkit.org/show_bug.cgi?id=144846
1480 Reviewed by Martin Robinson.
1482 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
1483 CAIRO_GL_* throughout, because find_package will define
1485 * Source/cmake/OptionsGTK.cmake: Ditto.
1487 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1489 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
1490 https://bugs.webkit.org/show_bug.cgi?id=144845
1492 Reviewed by Martin Robinson.
1494 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
1495 if their corresponding WTF options are ON. The code in npapi.h
1496 relies on these being undefined if they are to be switched off.
1498 2015-05-09 Yoav Weiss <yoav@yoav.ws>
1500 Remove the PICTURE_SIZES build flag
1501 https://bugs.webkit.org/show_bug.cgi?id=144679
1503 Reviewed by Benjamin Poulain.
1505 Removed the PICTURE_SIZES build time flag.
1507 * Source/cmake/OptionsEfl.cmake:
1508 * Source/cmake/OptionsGTK.cmake:
1509 * Source/cmake/OptionsMac.cmake:
1510 * Source/cmake/OptionsWindows.cmake:
1511 * Source/cmake/WebKitFeatures.cmake:
1513 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
1515 [GTK] [CMake] Check for required X libraries
1516 https://bugs.webkit.org/show_bug.cgi?id=144823
1518 Reviewed by Martin Robinson.
1520 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
1522 * Source/cmake/OptionsGTK.cmake:
1524 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
1526 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1527 https://bugs.webkit.org/show_bug.cgi?id=144746
1529 Reviewed by Carlos Garcia Campos.
1531 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1532 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
1533 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
1535 * Source/cmake/OptionsGTK.cmake:
1537 2015-05-08 Daniel Bates <dabates@apple.com>
1539 [iOS] WebSQL operations are not performed after device is locked
1540 https://bugs.webkit.org/show_bug.cgi?id=137503
1541 <rdar://problem/20844952>
1543 Rubber-stamped by Alexey Proskuryakov.
1545 Add a manual test to help verify that we do not regress this issue.
1547 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
1549 2015-05-08 Commit Queue <commit-queue@webkit.org>
1551 Unreviewed, rolling out r183945.
1552 https://bugs.webkit.org/show_bug.cgi?id=144789
1554 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
1558 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
1559 https://bugs.webkit.org/show_bug.cgi?id=144746
1560 http://trac.webkit.org/changeset/183945
1562 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
1564 Cleanup after r183940
1565 https://bugs.webkit.org/show_bug.cgi?id=144768
1569 Looks like the empty directories were not deleted.
1571 * Source/PAL: Removed.
1572 * Source/PAL/Configurations: Removed.
1573 * Source/PAL/PAL.xcodeproj: Removed.
1574 * Source/PAL/graphics: Removed.
1576 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
1578 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1579 https://bugs.webkit.org/show_bug.cgi?id=144746
1581 Reviewed by Martin Robinson.
1583 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1584 what it is defined to, so defining it to 0 effectively turned it on always.
1586 * Source/cmake/OptionsGTK.cmake:
1588 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1590 Revert "Introducing the Platform Abstraction Layer (PAL)"
1591 https://bugs.webkit.org/show_bug.cgi?id=144751
1595 PAL should be a new target inside WebCore, rather than a top-level folder.
1597 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1599 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
1601 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
1603 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1605 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1607 Introducing the Platform Abstraction Layer (PAL)
1608 https://bugs.webkit.org/show_bug.cgi?id=143358
1610 Reviewed by Simon Fraser.
1612 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1614 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
1616 [cmake] Disable GNU Gold linker on Cortex A53
1617 https://bugs.webkit.org/show_bug.cgi?id=144382
1619 Reviewed by Carlos Garcia Campos.
1621 * Source/cmake/OptionsCommon.cmake:
1623 2015-05-01 Martin Robinson <mrobinson@igalia.com>
1625 USE(...) macro should expect unprefixed variables
1626 https://bugs.webkit.org/show_bug.cgi?id=144454
1628 Reviewed by Daniel Bates.
1630 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
1631 * Source/cmake/OptionsEfl.cmake: Ditto.
1632 * Source/cmake/OptionsGTK.cmake: Ditto.
1633 * Source/cmake/OptionsMac.cmake: Ditto.
1634 * Source/cmake/OptionsWinCairo.cmake: Ditto.
1635 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
1638 2015-04-30 Martin Robinson <mrobinson@igalia.com>
1640 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
1641 https://bugs.webkit.org/show_bug.cgi?id=144394
1643 Reviewed by Carlos Garcia Campos.
1645 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
1646 is that it fixes the redirected XComposite window for GTK+, which was accidentally
1647 disabled in previous reworking of the CMake configuration.
1649 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
1650 version of USE variables.
1651 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
1652 is exposed to the build.
1654 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
1656 Unreviewed. Bump GTK+ version numbers.
1658 * Source/cmake/OptionsGTK.cmake:
1660 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1662 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
1663 https://bugs.webkit.org/show_bug.cgi?id=144435
1665 Reviewed by Gyuyoung Kim.
1667 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
1668 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
1670 * Source/cmake/OptionsEfl.cmake:
1672 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
1674 REGRESSION(183583): [Mac] make without SDKROOT has issues
1675 https://bugs.webkit.org/show_bug.cgi?id=144431
1677 Reviewed by Dan Bernstein.
1680 Assume an empty SDKROOT means an macosx variant, so only
1681 enable settings if the SDKROOT is not empty and does not
1684 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1686 Fix the GTK+ build after r183584
1688 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
1690 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1692 [GTK] Add support for automatic hyphenation
1693 https://bugs.webkit.org/show_bug.cgi?id=44478
1695 Reviewed by Carlos Garcia Campos.
1697 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
1698 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
1699 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
1701 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
1703 Failure when building WebKit for appletvsimulator.
1704 https://bugs.webkit.org/show_bug.cgi?id=144356
1706 Reviewed by Alexey Proskuryakov.
1708 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
1709 make TVOS and WatchOS behave correctly.
1713 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1715 [CMake] [GTK] Organize and clean up unused CMake variables
1716 https://bugs.webkit.org/show_bug.cgi?id=144364
1718 Reviewed by Gyuyoung Kim.
1720 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
1721 specific to certain projects into their PlatformGTK.cmake files.
1723 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1725 [EFL] Build failure to find gio-unix
1726 https://bugs.webkit.org/show_bug.cgi?id=144083
1728 Reviewed by Gyuyoung Kim.
1730 Original patch by Doug Newgard <scimma22@outlook.com>
1732 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
1734 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
1736 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
1737 https://bugs.webkit.org/show_bug.cgi?id=143001
1739 Reviewed by Gyuyoung Kim.
1741 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
1742 * Source/cmake/OptionsGTK.cmake: Ditto.
1744 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1746 Unreviewed, fix typo in previous commit
1748 libsecretr -> libsecret in the error message.
1750 * Source/cmake/OptionsGTK.cmake:
1752 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1754 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
1755 https://bugs.webkit.org/show_bug.cgi?id=143546
1757 Reviewed by Martin Robinson.
1759 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
1760 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
1761 default. Fail the build with an informative error message if an optional dependency required
1762 for an enabled feature is not present. Perform find_package commands only when necessary.
1763 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
1766 * Source/cmake/OptionsGTK.cmake:
1768 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1770 [GTK] Make all options actually options
1771 https://bugs.webkit.org/show_bug.cgi?id=144106
1773 Reviewed by Martin Robinson.
1775 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
1776 ENABLE_WAYLAND_TARGET.
1778 * Source/cmake/OptionsGTK.cmake:
1780 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1782 Unreviewed, fix GTK build after r183452
1784 * Source/cmake/OptionsGTK.cmake:
1786 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1788 [GTK] Add one single option to control all OpenGL-related options
1789 https://bugs.webkit.org/show_bug.cgi?id=144105
1791 Reviewed by Martin Robinson.
1793 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
1794 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
1795 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
1796 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
1797 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
1798 presence of CairoGL.
1800 * Source/cmake/OptionsGTK.cmake:
1802 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1804 [GTK] ENABLE_SMOOTH_SCROLLING should be private
1805 https://bugs.webkit.org/show_bug.cgi?id=144306
1807 Reviewed by Martin Robinson.
1809 Make ENABLE_SMOOTH_SCROLLING private instead of public.
1811 * Source/cmake/OptionsGTK.cmake:
1813 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1815 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
1816 https://bugs.webkit.org/show_bug.cgi?id=144193
1818 Reviewed by Darin Adler.
1820 * Source/cmake/OptionsEfl.cmake:
1821 * Source/cmake/OptionsGTK.cmake:
1822 * Source/cmake/OptionsWinCairo.cmake:
1823 * Source/cmake/WebKitFeatures.cmake:
1825 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1827 [CMake] Should be possible for an option to conflict with other options
1828 https://bugs.webkit.org/show_bug.cgi?id=143956
1830 Reviewed by Martin Robinson.
1832 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
1834 * Source/cmake/WebKitFeatures.cmake:
1836 2015-04-22 Martin Robinson <mrobinson@igalia.com>
1838 [CMake] Autogenerate cmakeconfig.h.cmake
1839 https://bugs.webkit.org/show_bug.cgi?id=143997
1841 Reviewed by Csaba Osztrogonác.
1843 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
1844 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
1845 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
1846 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
1847 Do some other miscellaneous related cleanup.
1848 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
1849 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
1850 build exposed variables. Add a macro to generate a configuration from them.
1851 * Source/cmakeconfig.h.cmake: Removed.
1853 2015-04-24 Philippe Normand <pnormand@igalia.com>
1855 [JHBuild] Move to upstream OpenWebRTC
1856 https://bugs.webkit.org/show_bug.cgi?id=144145
1858 Reviewed by Carlos Garcia Campos.
1860 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
1863 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
1865 [ES6] Implement ES6 template literals
1866 https://bugs.webkit.org/show_bug.cgi?id=142691
1868 Reviewed by Darin Adler.
1870 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
1872 * Source/cmake/WebKitFeatures.cmake:
1873 * Source/cmakeconfig.h.cmake:
1875 2015-04-25 Martin Robinson <mrobinson@igalia.com>
1877 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
1878 https://bugs.webkit.org/show_bug.cgi?id=144182
1880 Reviewed by Simon Fraser.
1882 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1883 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1884 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1885 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1886 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1888 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1890 [GTK] Add more public options
1891 https://bugs.webkit.org/show_bug.cgi?id=144116
1893 Reviewed by Martin Robinson.
1895 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
1897 * Source/cmake/OptionsGTK.cmake:
1899 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1901 [CMake] Some internal variables are not marked as advanced
1902 https://bugs.webkit.org/show_bug.cgi?id=143595
1904 Reviewed by Martin Robinson.
1906 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
1907 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
1909 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1911 [GTK] Mark as advanced the build options we don't want to expose
1912 https://bugs.webkit.org/show_bug.cgi?id=143558
1914 Reviewed by Martin Robinson.
1916 Mark various options as private instead of public.
1918 * Source/cmake/OptionsGTK.cmake:
1920 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1922 [CMake] Should be possible for an option to depend on multiple options
1923 https://bugs.webkit.org/show_bug.cgi?id=143839
1925 Reviewed by Martin Robinson.
1927 Use a list instead of a single variable to track the dependencies of each option. Iterate
1928 over the list as many times as necessary to ensure all options are properly disabled.
1930 * Source/cmake/WebKitFeatures.cmake:
1932 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1934 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
1935 https://bugs.webkit.org/show_bug.cgi?id=144103
1937 Reviewed by Martin Robinson.
1939 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
1941 * Source/cmake/WebKitFeatures.cmake:
1943 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1945 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
1946 https://bugs.webkit.org/show_bug.cgi?id=144102
1948 Reviewed by Martin Robinson.
1950 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
1951 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
1952 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
1954 * Source/cmake/OptionsGTK.cmake:
1956 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1958 [CMake] Clean up JSC JIT options
1959 https://bugs.webkit.org/show_bug.cgi?id=143998
1961 Reviewed by Filip Pizlo.
1963 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
1964 define for ENABLE_FTL_NATIVE_CALL_INLINING.
1965 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
1966 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
1967 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
1968 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
1970 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1972 [CMake] Use lowercase for local variables in macros
1973 https://bugs.webkit.org/show_bug.cgi?id=144059
1975 Reviewed by Martin Robinson.
1977 Convert some variable names to lowercase.
1979 * Source/cmake/WebKitFeatures.cmake:
1981 2015-04-22 Commit Queue <commit-queue@webkit.org>
1983 Unreviewed, rolling out r183116.
1984 https://bugs.webkit.org/show_bug.cgi?id=144060
1986 Inadvertently deleted a file... (Requested by mcatanzaro on
1991 "[CMake] Use lowercase for local variables in macros"
1992 https://bugs.webkit.org/show_bug.cgi?id=144059
1993 http://trac.webkit.org/changeset/183116
1995 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1997 [CMake] Use lowercase for local variables in macros
1998 https://bugs.webkit.org/show_bug.cgi?id=144059
2000 Reviewed by Martin Robinson.
2002 Convert some variable names to lowercase.
2004 * Source/cmake/WebKitFeatures.cmake:
2006 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2008 [CMake] Features list should print dots every other row
2009 https://bugs.webkit.org/show_bug.cgi?id=143832
2011 Reviewed by Martin Robinson.
2013 Discount private options when determining whether to print dots on a given row of the
2014 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
2015 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
2016 wasn't noticed because it only affects the first line, and use of the variable name as a
2017 string in a conditional.)
2019 * Source/cmake/WebKitFeatures.cmake:
2021 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2023 [CMake] Require specifying visibility of WebKit options
2024 https://bugs.webkit.org/show_bug.cgi?id=143831
2026 Reviewed by Alex Christensen.
2028 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
2029 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
2030 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
2031 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
2032 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
2033 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
2034 cross-platform options as PRIVATE.
2036 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2038 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
2039 https://bugs.webkit.org/show_bug.cgi?id=143935
2041 Reviewed by Darin Adler.
2043 Some variables aren't defined in these files or unused variables aren't removed. This
2044 patch cleans up it as well as fix wrong alphabet order.
2046 * Source/cmake/WebKitFeatures.cmake:
2047 * Source/cmakeconfig.h.cmake:
2049 2015-04-19 Simon Fraser <simon.fraser@apple.com>
2051 Restore the WebKit.xcworkspace to the way it was before r182899,
2052 which inadvertently added the Source directory and a couple of source
2055 * WebKit.xcworkspace/contents.xcworkspacedata:
2057 2015-04-16 Basile Clement <basile_clement@apple.com>
2059 Extract the allocation profile from JSFunction into a rare object
2060 https://bugs.webkit.org/show_bug.cgi?id=143807
2062 Reviewed by Filip Pizlo.
2064 * WebKit.xcworkspace/contents.xcworkspacedata:
2066 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
2068 [EFL] Bump LLVM to version 3.6.0 on X86_64
2069 https://bugs.webkit.org/show_bug.cgi?id=143604
2071 Reviewed by Gyuyoung Kim.
2073 * Source/cmake/FindLLVM.cmake: Added version handling.
2074 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
2076 2015-04-15 Timothy Horton <timothy_horton@apple.com>
2078 Custom CSS cursors do not use -webkit-image-set on retina displays
2079 https://bugs.webkit.org/show_bug.cgi?id=120783
2081 Reviewed by Beth Dakin.
2082 Patch by Evan Wallace <evan.exe@gmail.com>.
2084 Add a manual test for custom CSS cursors on retina displays.
2086 * ManualTests/retina-cursors.html: Added.
2088 2015-04-15 Alex Christensen <achristensen@webkit.org>
2090 Progress towards CMake on Mac.
2091 https://bugs.webkit.org/show_bug.cgi?id=143785
2093 Reviewed by Csaba Osztrogonác.
2096 * Source/cmake/OptionsMac.cmake:
2097 * Source/cmake/WebKitFS.cmake:
2099 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
2101 Cannot click "Next" button on Google two-factor auth setup page
2103 <https://bugs.webkit.org/show_bug.cgi?id=143624>
2104 <rdar://problem/19175714>
2106 Reviewed by Darin Adler.
2108 * ManualTests/button-that-focuses-itself-on-click.html: Added.
2110 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
2112 [cmake] REGRESSION(182663): It broke feature dependency handling
2113 https://bugs.webkit.org/show_bug.cgi?id=143665
2115 Reviewed by Csaba Osztrogonác.
2117 Don't try to check the value of options before defining the options.
2119 * Source/cmake/WebKitFeatures.cmake:
2121 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
2123 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
2124 https://bugs.webkit.org/show_bug.cgi?id=143664
2126 Reviewed by Gyuyoung Kim.
2128 * Source/cmake/OptionsEfl.cmake:
2129 * Source/cmake/OptionsGTK.cmake:
2130 * Source/cmake/WebKitFeatures.cmake:
2131 * Source/cmakeconfig.h.cmake:
2133 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2135 [EFL] Enable Media Source
2136 https://bugs.webkit.org/show_bug.cgi?id=143635
2138 Reviewed by Csaba Osztrogonác.
2140 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
2142 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2144 [CMake] Miscellaneous issues in WebKitFeatures.cmake
2145 https://bugs.webkit.org/show_bug.cgi?id=143636
2147 Reviewed by Martin Robinson.
2149 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
2150 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
2152 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
2153 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
2155 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
2157 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
2159 Fix ENABLE_TOUCH_SLIDER so that it can be used
2163 * Source/cmake/WebKitFeatures.cmake:
2165 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2167 [CMake] Print sorted feature list at the very end of the configure process
2168 https://bugs.webkit.org/show_bug.cgi?id=143596
2170 Reviewed by Martin Robinson.
2172 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
2173 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
2174 and sort the options before printing. Reorder some code so that features still get
2175 propagated to the bindings generators.
2177 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2179 [CMake] Options should be marked as advanced by default
2180 https://bugs.webkit.org/show_bug.cgi?id=143572
2182 Reviewed by Gyuyoung Kim.
2184 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
2185 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
2186 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
2187 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
2188 option without making it public.
2190 * Source/cmake/WebKitFeatures.cmake:
2192 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2194 [CMake] Remove unnecessary ENABLE_WEBCORE switch
2195 https://bugs.webkit.org/show_bug.cgi?id=143584
2197 Reviewed by Csaba Osztrogonác.
2199 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
2203 * Source/CMakeLists.txt:
2204 * Source/cmake/OptionsGTK.cmake:
2205 * Source/cmake/WebKitFS.cmake:
2207 2015-04-08 Filip Pizlo <fpizlo@apple.com>
2209 Unreviewed, revert accidental commit.
2213 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
2215 Add CMake build system for WinCairo port.
2216 https://bugs.webkit.org/show_bug.cgi?id=115944
2218 Reviewed by Chris Dumez.
2220 * Source/cmake/OptionsWindows.cmake:
2221 * Source/cmake/WebKitMacros.cmake:
2222 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2224 2015-04-06 Alberto Garcia <berto@igalia.com>
2226 [GTK] Fix HPPA build
2227 https://bugs.webkit.org/show_bug.cgi?id=143453
2229 Reviewed by Darin Adler.
2231 Add HPPA to the list of supported CPUs.
2235 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
2237 Unreviewed, kick the GTK bots to fix an incremental build issue.
2239 * Source/cmake/OptionsGTK.cmake:
2241 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
2243 Fix the EFL and GTK build after r182243
2244 https://bugs.webkit.org/show_bug.cgi?id=143361
2246 Reviewed by Csaba Osztrogonác.
2248 * Source/PlatformEfl.cmake: Add a custom command that copies
2249 the InspectorBackendCommands.js file into the proper directory
2250 under DerivedSources/WebInspectorUI/.
2252 2015-04-01 Alex Christensen <achristensen@webkit.org>
2254 Progress towards CMake on Windows and Mac.
2255 https://bugs.webkit.org/show_bug.cgi?id=143293
2257 Reviewed by Filip Pizlo.
2260 Set DERIVED_SOURCES_WTF_DIR for Windows.
2261 * Source/CMakeLists.txt:
2262 Don't compile bmalloc on Windows.
2263 * Source/cmake/OptionsCommon.cmake:
2264 Use the absolute path of the C preprocessor.
2265 * Source/cmake/OptionsWinCairo.cmake:
2266 Added needed definitions.
2267 * Source/cmake/OptionsWindows.cmake:
2268 Set some default values and removed support for old Visual Studio versions before /MP.
2269 * Source/cmake/WebKitFS.cmake:
2270 Make WTF DerivedSources directory.
2271 * Source/cmake/WebKitMacros.cmake:
2272 Added ADD_PRECOMPILED_HEADER macro based on
2273 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2275 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
2277 Use colored diagnostics when building with cmake + ninja + clang
2278 https://bugs.webkit.org/show_bug.cgi?id=143297
2280 Reviewed by Žan Doberšek.
2282 Because that ninja sets subprocess stdout/stderr to a pipe, clang
2283 disables colored output.
2284 This patch forces clang to use colored diagnostics when we are using
2287 * Source/cmake/OptionsCommon.cmake:
2289 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2291 [CMake] Update old CMakeList.txt in gtest
2292 https://bugs.webkit.org/show_bug.cgi?id=143192
2294 Reviewed by Darin Adler.
2296 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
2297 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
2298 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
2300 * Source/CMakeLists.txt:
2301 * Source/cmake/gtest/CMakeLists.txt: Removed.
2303 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2305 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
2306 https://bugs.webkit.org/show_bug.cgi?id=143138
2308 Reviewed by Csaba Osztrogonác.
2310 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
2311 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
2313 * Source/cmake/OptionsWindows.cmake:
2314 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
2315 * Source/cmake/WebKitMacros.cmake:
2317 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2319 [GStreamer] share GL context in pipeline, part 2
2320 https://bugs.webkit.org/show_bug.cgi?id=143049
2322 Reviewed by Carlos Garcia Campos.
2324 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
2325 OpenGL/ES2 is found and GLX/EGL is found too.
2327 2015-03-26 Alex Christensen <achristensen@webkit.org>
2329 Progress towards CMake on Mac.
2330 https://bugs.webkit.org/show_bug.cgi?id=143112
2332 Reviewed by Chris Dumez.
2334 * Source/cmake/OptionsMac.cmake:
2336 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
2338 [EFL] Add OpenWebRTC in jhbuild
2339 https://bugs.webkit.org/show_bug.cgi?id=142778
2341 Reviewed by Gyuyoung Kim.
2343 Original patch by Philippe Normand <pnormand@igalia.com>
2345 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
2346 mediastream build is enabled.
2348 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
2350 [GTK] Add a configure option to build without Redirected XComposite Window
2351 https://bugs.webkit.org/show_bug.cgi?id=142865
2353 Reviewed by Žan Doberšek.
2355 The Redirected XComposite Window was added to support some
2356 features like GtkOverlay, but in cases where we don't need such
2357 features, it's more efficient to use the XID of the WebKitWebView
2358 window as the native surface handle for the accelerated
2359 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
2360 that is enabled by default for X11 target when OpenGL is enabled.
2362 * Source/cmake/OptionsGTK.cmake:
2364 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
2366 [GTK] Search for the Wayland dependency when enabling Wayland target
2367 https://bugs.webkit.org/show_bug.cgi?id=142876
2369 Reviewed by Carlos Garcia Campos.
2371 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
2372 requirement of either the GTK+ or GDK pkg-config files, so we have to
2373 search for it ourselves when WebKitGTK+ has been configured to support
2374 the Wayland windowing target.
2376 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2378 Unreviewed, kick the GTK bots to regenerate makefile.
2379 https://bugs.webkit.org/show_bug.cgi?id=137394
2381 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
2382 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
2384 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2386 Unreviewed, kick the GTK bots to regenerate makefile.
2387 https://bugs.webkit.org/show_bug.cgi?id=137394
2389 * Source/cmake/OptionsEfl.cmake:
2391 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
2393 [GTK] Fix inspector userinterface related incremental build issue
2394 https://bugs.webkit.org/show_bug.cgi?id=142849
2396 Reviewed by Carlos Garcia Campos.
2398 * Source/cmake/OptionsGTK.cmake: Revert r181733.
2400 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
2402 Unreviewed, kick the GTK bots to regenerate makefile.
2404 * Source/cmake/OptionsGTK.cmake:
2406 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
2408 [EFL] Expose JavaScript binding interface through ewk_extension
2409 https://bugs.webkit.org/show_bug.cgi?id=142033
2411 Reviewed by Gyuyoung Kim.
2413 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
2415 2015-03-17 Philippe Normand <pnormand@igalia.com>
2417 [GTK] basic OpenWebRTC build support
2418 https://bugs.webkit.org/show_bug.cgi?id=142393
2420 Reviewed by Carlos Garcia Campos.
2422 * Source/cmake/FindOpenWebRTC.cmake: Added.
2423 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
2424 mediastream build is enabled.
2426 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2428 [CMake][EFL] Build test tools only for developer mode
2429 https://bugs.webkit.org/show_bug.cgi?id=142761
2431 Reviewed by Csaba Osztrogonác.
2433 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
2435 * Source/cmake/OptionsEfl.cmake:
2436 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
2437 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
2438 * Source/cmakeconfig.h.cmake:
2440 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
2442 Enable ES6 classes by default
2443 https://bugs.webkit.org/show_bug.cgi?id=142774
2445 Reviewed by Gavin Barraclough.
2447 * Source/cmake/WebKitFeatures.cmake:
2449 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2451 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
2452 https://bugs.webkit.org/show_bug.cgi?id=142722
2454 Reviewed by Csaba Osztrogonác.
2456 Categorize to define cmake variables, to find necessary packages,
2457 use upper case for "glib_conponents" cmake variable name, re-arrange
2458 wrong alphabet sorting, and so on.
2460 * CMakeLists.txt: Remove WinCE port.
2461 * Source/cmake/OptionsEfl.cmake:
2463 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2465 [GStreamer] share GL context in pipeline
2466 https://bugs.webkit.org/show_bug.cgi?id=142693
2468 Reviewed by Philippe Normand.
2470 Add search of gstreamer-gl library in the GStreamer installation. If
2471 it is found, WTF_USE_GSTREAMER_GL macro is defined.
2473 * Source/cmake/FindGStreamer.cmake:
2474 * Source/cmake/OptionsGTK.cmake:
2476 2015-03-13 Alex Christensen <achristensen@webkit.org>
2478 Progress towards CMake on Mac.
2479 https://bugs.webkit.org/show_bug.cgi?id=142680
2481 Reviewed by Gyuyoung Kim.
2484 * Source/PlatformMac.cmake: Added stub.
2485 * Source/cmake/OptionsMac.cmake:
2486 Change defines to get CMake working.
2488 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2490 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
2491 https://bugs.webkit.org/show_bug.cgi?id=126688
2493 Reviewed by Gustavo Noronha Silva.
2495 Add ENABLE_MINIBROWSER option, enabled by default for development
2496 builds and disabled for production builds unless explicilty enabled.
2498 * Source/cmake/OptionsGTK.cmake:
2500 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2502 [GTK] Do not look for child processes in the UI process binary path
2503 https://bugs.webkit.org/show_bug.cgi?id=135752
2505 Reviewed by Gustavo Noronha Silva.
2507 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
2508 build for development builds.
2510 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
2512 [GTK] Add a configure option to build with OpenGL ES 2
2513 https://bugs.webkit.org/show_bug.cgi?id=142498
2515 Reviewed by Martin Robinson.
2517 Add ENABLE_GLES2 option. It's disabled by default, but if passed
2518 GLES2 is required and OpenGL is not even searched. Otherwise we
2519 search for OpenGL as usual, using it only if present.
2521 * Source/cmake/OptionsGTK.cmake:
2523 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
2525 [cmake] Handle unused parameter warnings as build errors except in WebKit2
2526 https://bugs.webkit.org/show_bug.cgi?id=142338
2528 Reviewed by Gyuyoung Kim.
2530 * Source/cmake/WebKitHelpers.cmake:
2532 2015-03-03 Daniel Bates <dabates@apple.com>
2534 Convert ManualTests/svg-tooltip.svg to a DRT test
2535 https://bugs.webkit.org/show_bug.cgi?id=140480
2537 Reviewed by Alex Christensen.
2539 * ManualTests/svg-tooltip.svg: Removed.
2541 2015-03-02 Debarshi Ray <debarshir@gnome.org>
2543 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
2544 https://bugs.webkit.org/show_bug.cgi?id=142165
2546 Reviewed by Carlos Garcia Campos.
2548 * Source/cmake/gtksymbols.filter:
2550 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
2552 [EFL] Remove unnecessary comment after r179110
2553 https://bugs.webkit.org/show_bug.cgi?id=142042
2555 Reviewed by Gyuyoung Kim.
2557 * Source/cmake/OptionsEfl.cmake:
2559 2015-02-23 Tomas Popela <tpopela@redhat.com>
2561 [GTK] Fails to compile with cmake 3.2.x
2562 https://bugs.webkit.org/show_bug.cgi?id=141796
2564 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
2565 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
2566 added and the build will fail.
2568 Reviewed by Martin Robinson.
2570 * Source/cmake/OptionsGTK.cmake:
2572 2015-02-20 Alexey Proskuryakov <ap@apple.com>
2574 Remove svn:keywords property.
2576 As far as I can tell, the property had no effect on any of these files, but also,
2577 when it has effect it's likely harmful.
2579 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
2580 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
2581 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
2582 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
2583 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
2584 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
2585 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
2586 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
2587 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
2588 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
2589 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
2590 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
2591 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
2592 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
2594 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2596 [CMAKE] Remove CMakeLists.txt in WK1 port
2597 https://bugs.webkit.org/show_bug.cgi?id=141617
2599 Reviewed by Anders Carlsson.
2601 Nobody uses CMake in WK1 port. Remove it.
2605 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
2607 Unreviewed, remove empty directories.
2609 * ManualTests/qt: Removed.
2611 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
2613 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
2614 https://bugs.webkit.org/show_bug.cgi?id=141481
2616 Reviewed by Csaba Osztrogonác.
2618 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
2620 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2622 [EFL][GTK] Use bmalloc instead of tcmalloc
2623 https://bugs.webkit.org/show_bug.cgi?id=140162
2625 Reviewed by Carlos Garcia Campos.
2627 Add bmalloc directory to build list.
2629 * CMakeLists.txt: Define BMALLOC_DIR directory.
2630 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
2632 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
2634 [GTK] Add default color chooser implementation using GtkColorChooserDialog
2635 https://bugs.webkit.org/show_bug.cgi?id=141392
2637 Reviewed by Gustavo Noronha Silva.
2639 Enable INPUT_TYPE_COLOR by default for GTK+ port.
2641 * Source/cmake/OptionsGTK.cmake:
2643 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
2645 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
2646 https://bugs.webkit.org/show_bug.cgi?id=141328
2648 Reviewed by Darin Adler.
2650 Added as manual test because it involves a huge grid allocation
2651 which is very slow on Debug bots, the only ones capable to trigger
2654 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
2656 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
2658 [Streams API] Implement a barebone ReadableStream interface
2659 https://bugs.webkit.org/show_bug.cgi?id=141045
2661 Reviewed by Benjamin Poulain.
2663 * Source/cmake/WebKitFeatures.cmake:
2664 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
2666 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2668 Revert accidental change in r179490.
2672 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2674 Unreviewed, revert accidental change to Makefile.shared in r179478
2678 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
2680 [CMake] Minimum python version should be 2.7.
2681 https://bugs.webkit.org/show_bug.cgi?id=140997
2683 Reviewed by Csaba Osztrogonác.
2687 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
2689 Apply feTurbulence spec change to fix zero length vector generation
2690 https://bugs.webkit.org/show_bug.cgi?id=140812
2692 Reviewed by Darin Adler.
2694 Recently a bug with the turbulence algorithm was corrected in the
2695 Filter Effects specification.
2696 For some seed values this bug allowed zero length vectors to be generated.
2697 This resulted in large solid color squares being present in the generated image.
2698 The feTurbulence algorithm was updated to reject zero length vectors. This patch
2699 applies that change in WebCore.
2701 Test: svg/filters/feTurbulence_bad_seeds.html
2703 * platform/graphics/filters/FETurbulence.cpp:
2704 (WebCore::FETurbulence::initPaint):
2705 Added rejection sampling during vector generation to avoid zero length vectors.
2707 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2709 [cmake] Remove compiler version calculate cruft
2710 https://bugs.webkit.org/show_bug.cgi?id=140885
2712 Reviewed by Darin Adler.
2714 * Source/cmake/WebKitHelpers.cmake:
2716 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2718 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
2719 https://bugs.webkit.org/show_bug.cgi?id=140886
2721 Reviewed by Žan Doberšek.
2723 * Source/cmake/WebKitHelpers.cmake:
2725 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
2727 [GTK] gtkdoc does not appear in DevHelp
2728 https://bugs.webkit.org/show_bug.cgi?id=139369
2730 Reviewed by Philippe Normand.
2732 Expect the gtkdoc to be generated in folders named with the API version.
2734 * Source/PlatformGTK.cmake:
2736 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
2738 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
2739 https://bugs.webkit.org/show_bug.cgi?id=140609
2741 Reviewed by Csaba Osztrogonác.
2743 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
2744 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
2745 compilation flags. Those were added after the jsCStack branch merge, but
2746 can now be removed since the -ftree-dce issues were fixed in GCC, and
2747 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
2749 * Source/cmake/OptionsEfl.cmake:
2750 * Source/cmake/OptionsGTK.cmake:
2752 2015-01-26 Commit Queue <commit-queue@webkit.org>
2754 Unreviewed, rolling out r179107.
2755 https://bugs.webkit.org/show_bug.cgi?id=140880
2757 The GCC in the bots doesn't support the AsyncTask
2758 implementation (Requested by KaL on #webkit).
2762 "[GTK] Enable IndexedDB"
2763 https://bugs.webkit.org/show_bug.cgi?id=98932
2764 http://trac.webkit.org/changeset/179107
2766 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
2768 [GTK] Enable IndexedDB
2769 https://bugs.webkit.org/show_bug.cgi?id=98932
2771 Reviewed by Žan Doberšek.
2773 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
2774 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
2776 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
2778 [GTK] Add initial database process support
2779 https://bugs.webkit.org/show_bug.cgi?id=139491
2781 Reviewed by Sergio Villar Senin.
2783 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
2785 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
2787 Add a build flag for ES6 class syntax
2788 https://bugs.webkit.org/show_bug.cgi?id=140760
2790 Reviewed by Michael Saboff.
2792 * Source/cmake/WebKitFeatures.cmake:
2793 * Source/cmakeconfig.h.cmake:
2795 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2797 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
2798 https://bugs.webkit.org/show_bug.cgi?id=140049
2800 Reviewed by Gyuyoung Kim.
2802 * Source/cmake/OptionsCommon.cmake:
2804 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2806 Remove ENABLE(INSPECTOR) ifdef guards
2807 https://bugs.webkit.org/show_bug.cgi?id=140668
2809 Reviewed by Darin Adler.
2811 * Source/PlatformEfl.cmake:
2812 * Source/cmake/OptionsEfl.cmake:
2813 * Source/cmake/OptionsGTK.cmake:
2814 * Source/cmake/OptionsMac.cmake:
2815 * Source/cmake/WebKitFeatures.cmake:
2816 * Source/cmakeconfig.h.cmake:
2818 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
2820 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
2822 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2824 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2826 [CMAKE] Fix cmake warning
2827 https://bugs.webkit.org/show_bug.cgi?id=140497
2829 Reviewed by Gustavo Noronha Silva.
2831 r173155 already tried to fix cmake warning though, the warning is still exist.
2832 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
2833 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
2834 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
2835 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
2836 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
2840 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
2842 [GTK] Generate the make dist manifest from a CMake template file
2843 https://bugs.webkit.org/show_bug.cgi?id=139387
2845 Reviewed by Martin Robinson.
2847 Generate manifest.txt from manifest.txt.in. Only expose the dist and
2848 distcheck targets for developer builds, as they won't work when
2849 building from a tarball because the manifest is not distributed.
2851 * Source/PlatformGTK.cmake:
2853 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
2855 Remove ENABLE(SQL_DATABASE) guards
2856 https://bugs.webkit.org/show_bug.cgi?id=140434
2858 Reviewed by Darin Adler.
2860 * Source/cmake/OptionsMac.cmake:
2861 * Source/cmake/WebKitFeatures.cmake:
2862 * Source/cmakeconfig.h.cmake:
2864 2015-01-11 Sam Weinig <sam@webkit.org>
2866 Remove support for SharedWorkers
2867 https://bugs.webkit.org/show_bug.cgi?id=140344
2869 Reviewed by Anders Carlsson.
2871 * Source/cmake/OptionsEfl.cmake:
2872 * Source/cmake/OptionsGTK.cmake:
2873 * Source/cmake/OptionsMac.cmake:
2874 * Source/cmake/WebKitFeatures.cmake:
2875 * Source/cmakeconfig.h.cmake:
2877 2015-01-10 Dan Bernstein <mitz@apple.com>
2879 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
2880 https://bugs.webkit.org/show_bug.cgi?id=140339
2882 Reviewed by Mark Rowe.
2884 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
2885 prevents unnecessary rebuilding due to PATH differences.
2887 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
2889 [GTK][ThreadedCompositor] Add support for threaded compositor.
2890 https://bugs.webkit.org/show_bug.cgi?id=118265
2892 Reviewed by Martin Robinson.
2894 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
2895 autotools build systems. The feature is disabled by default.
2896 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
2897 from the feature flags.
2899 * Source/cmake/OptionsEfl.cmake:
2900 * Source/cmake/OptionsGTK.cmake:
2901 * Source/cmake/WebKitFeatures.cmake:
2902 * Source/cmakeconfig.h.cmake:
2904 2014-12-23 Alexey Proskuryakov <ap@apple.com>
2906 Simplify building with ASan
2907 https://bugs.webkit.org/show_bug.cgi?id=139916
2909 Reviewed by Mark Rowe.
2911 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
2913 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
2915 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
2917 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2919 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
2921 Null dereference performing a "TapAndAHalf" gesture in Google search field
2923 <https://bugs.webkit.org/show_bug.cgi?id=139506>
2924 <rdar://problem/19028828>
2926 Reviewed by Darin Adler.
2928 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
2930 2014-12-10 Dean Jackson <dino@apple.com>
2932 Blur filter performance test doesn't provide results
2933 https://bugs.webkit.org/show_bug.cgi?id=139462
2935 Reviewed by Sam Weinig.
2937 This can't currently work under our performance test
2938 infrastructure. Move it to a manual test to avoid
2939 putting FAILures into the results.
2941 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
2943 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2945 [GTK][WK2] Add HTML5 Notifications support
2946 https://bugs.webkit.org/show_bug.cgi?id=61140
2948 Reviewed by Carlos Garcia Campos.
2950 * Source/cmake/FindLibNotify.cmake: Added.
2951 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
2952 libnotify and use it for a default implementation when found.
2954 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
2956 REGRESSION(r155906): Page content disappears on Tuaw article after loading
2957 https://bugs.webkit.org/show_bug.cgi?id=138100
2959 Reviewed by Simon Fraser.
2961 DRT causes an extra paint which makes it impossible to test this with
2964 * ManualTests/float-layer-not-painting.html: Added.
2966 2014-12-07 Alberto Garcia <berto@igalia.com>
2968 [GTK] WebKit has a new required dependency on GnuTLS
2969 https://bugs.webkit.org/show_bug.cgi?id=136158
2971 Reviewed by Martin Robinson.
2973 Detect if GnuTLS is installed and enable or disable subtle crypto
2974 support accordingly.
2976 * Source/cmake/OptionsGTK.cmake:
2978 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
2980 [GTK] Missing API detected in GObject DOM bindings after r176630
2981 https://bugs.webkit.org/show_bug.cgi?id=139201
2983 Reviewed by Gustavo Noronha Silva.
2985 Change GENERATE_BINDINGS macro to receive a list of optional
2986 additional dependencies, so that we can add more dependecies
2987 without having to change the macro.
2989 * Source/cmake/WebKitMacros.cmake:
2991 2014-12-05 Simon Fraser <simon.fraser@apple.com>
2993 Programmatic scrolling and content changes are not always synchronized
2994 https://bugs.webkit.org/show_bug.cgi?id=139245
2995 rdar://problem/18833612
2997 Reviewed by Anders Carlsson.
2999 Manual test that tries to sync layout with programmatic scrolling.
3001 * ManualTests/programmatic-scroll-flicker.html: Added.
3003 2014-12-04 Alberto Garcia <berto@igalia.com>
3005 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
3006 https://bugs.webkit.org/show_bug.cgi?id=136576
3008 Reviewed by Carlos Garcia Campos.
3010 CMake should complain if Accelerated 2D Canvas is explicitly
3011 enabled but cairo-gl is not found.
3013 * Source/cmake/OptionsGTK.cmake:
3015 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3017 [EFL] Add subtle crypto to the build system
3018 https://bugs.webkit.org/show_bug.cgi?id=138612
3020 Reviewed by Csaba Osztrogonác.
3022 * Source/cmake/OptionsEfl.cmake:
3024 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3026 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
3027 https://bugs.webkit.org/show_bug.cgi?id=139085
3029 Reviewed by Andreas Kling.
3031 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
3032 * Source/cmake/WebKitFeatures.cmake: ditto.
3033 * Source/cmakeconfig.h.cmake: ditto.
3035 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
3037 [EFL] Drop support for the EFL 1.7
3038 https://bugs.webkit.org/show_bug.cgi?id=139114
3040 Reviewed by Gyuyoung Kim.
3042 * Source/cmake/EFLHelpers.cmake: Removed.
3043 * Source/cmake/FindEcore.cmake: Removed.
3044 * Source/cmake/FindEdje.cmake: Removed.
3045 * Source/cmake/FindEet.cmake: Removed.
3046 * Source/cmake/FindEeze.cmake: Removed.
3047 * Source/cmake/FindEfreet.cmake: Removed.
3048 * Source/cmake/FindEina.cmake: Removed.
3049 * Source/cmake/FindElementary.cmake: Removed.
3050 * Source/cmake/FindEvas.cmake: Removed.
3051 * Source/cmake/OptionsEfl.cmake:
3053 2014-11-28 Philippe Normand <pnormand@igalia.com>
3055 [CMake] Build failure against GStreamer git master
3056 https://bugs.webkit.org/show_bug.cgi?id=138872
3058 Reviewed by Csaba Osztrogon.
3060 * Source/cmake/FindGStreamer.cmake: Simplified the
3061 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
3062 headers lookup, there's no need to do this manually. Also
3063 explicitely check the version specified in GStreamer_FIND_VERSION.
3065 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
3067 [EFL] Remove E_Dbus dependency
3068 https://bugs.webkit.org/show_bug.cgi?id=136355
3070 Reviewed by Gyuyoung Kim.
3072 * Source/cmake/FindE_DBus.cmake: Removed.
3073 * Source/cmake/OptionsEfl.cmake:
3075 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
3077 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
3079 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3081 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
3083 [CMake] Use ld.gold if it is available to speedup builds
3084 https://bugs.webkit.org/show_bug.cgi?id=137953
3086 Reviewed by Carlos Garcia Campos.
3088 * Source/cmake/OptionsCommon.cmake:
3090 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
3092 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
3093 https://bugs.webkit.org/show_bug.cgi?id=138840
3095 Reviewed by Csaba Osztrogonác.
3097 * Source/cmake/OptionsCommon.cmake:
3099 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
3101 Remove Source/Platform cruft
3102 https://bugs.webkit.org/show_bug.cgi?id=138658
3104 Reviewed by Anders Carlsson.
3107 * Source/Platform: Removed.
3109 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
3111 Enable Cortex-A53-specific code paths by default if core is detected.
3112 https://bugs.webkit.org/show_bug.cgi?id=138499
3114 Reviewed by Csaba Osztrogonác.
3116 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
3117 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
3120 Since on ARM64/Linux the part number that cpuinfo reports depends on
3121 the core the query is run on, the check is bound to and executed on the
3122 available cores one by one.
3124 * Source/cmake/OptionsCommon.cmake:
3126 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3128 [EFL] Remove unnecessary version check from OptionsEfl.cmake
3129 https://bugs.webkit.org/show_bug.cgi?id=138498
3131 Reviewed by Csaba Osztrogonác.
3133 * Source/cmake/OptionsEfl.cmake:
3135 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3137 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
3138 https://bugs.webkit.org/show_bug.cgi?id=138465
3140 Reviewed by Gyuyoung Kim.
3142 * Source/cmake/OptionsEfl.cmake:
3144 2014-11-03 Dean Jackson <dino@apple.com>
3146 Add ENABLE_FILTERS_LEVEL_2 feature guard.
3147 https://bugs.webkit.org/show_bug.cgi?id=138362
3149 Reviewed by Tim Horton.
3151 Add a new feature define for Level 2 of CSS Filters.
3152 http://dev.w3.org/fxtf/filters-2/
3154 * Source/cmake/OptionsEfl.cmake:
3155 * Source/cmake/OptionsGTK.cmake:
3156 * Source/cmake/OptionsMac.cmake:
3157 * Source/cmake/WebKitFeatures.cmake:
3158 * Source/cmakeconfig.h.cmake:
3160 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
3162 Workaround for Cortex-A53 erratum 835769
3163 https://bugs.webkit.org/show_bug.cgi?id=138315
3165 Reviewed by Filip Pizlo.
3167 This patch introduces CMake variable and preprocessor macro
3168 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
3169 code paths, if set true.
3171 * Source/cmake/OptionsCommon.cmake:
3172 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
3174 * Source/cmakeconfig.h.cmake:
3175 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
3177 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
3179 [GTK] Fix the build of FTL JIT
3180 https://bugs.webkit.org/show_bug.cgi?id=138298
3182 Reviewed by Carlos Garcia Campos.
3184 * Source/cmake/OptionsGTK.cmake:
3185 Remove the need for the LIBCXXABI package.
3187 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
3189 REGRESSION(CMake): Make it possible to build without introspection
3190 https://bugs.webkit.org/show_bug.cgi?id=138006
3192 Reviewed by Philippe Normand.
3194 Add ENABLE_INTROSPECTION option.
3196 * Source/PlatformGTK.cmake: Dot not add gir global target if
3197 introspection is disabled.
3198 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
3199 introspection is disabled.
3201 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
3203 [GTK] Support script message handlers WebKitUserContentManager
3204 https://bugs.webkit.org/show_bug.cgi?id=133730
3206 Reviewed by Carlos Garcia Campos.
3208 Support user script message handlers in WebKitUserContentManager.
3209 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
3210 an option is added to the CMake build files. The option is disabled
3211 globally by default, and the WebKitGTK port enables it. On the API
3212 level, two new methods to register and unregister names are provided
3213 in the "window.webkit" namespace, and on message reception the
3214 "WebKitUserContentManager::script-message-received" signal is
3215 emitted, using the registered names as signal detail.
3217 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
3218 ENABLE_USER_MESSAGE_HANDLERS feature by default.
3219 * Source/cmake/WebKitFeatures.cmake: Add feature description for
3220 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
3222 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
3224 [GTK] Bump libsoup's minimum version to 2.42.0.
3225 https://bugs.webkit.org/show_bug.cgi?id=138086
3227 Reviewed by Martin Robinson.
3229 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
3230 soup-version.h header was added to soup.h in 2.41.4, which then becomes
3231 the minimum version required to build the port these days.
3233 In addition, since the autotools build system required 2.42.0 before
3234 being retired, require the same version here. Version 2.42.0 was also
3236 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
3238 * Source/cmake/OptionsGTK.cmake:
3240 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3242 [EFL] Remove unnecessary defines from OptionsEfl.cmake
3243 https://bugs.webkit.org/show_bug.cgi?id=138132
3245 Reviewed by Csaba Osztrogonác.
3247 * Source/cmake/OptionsEfl.cmake:
3249 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
3251 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
3253 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3255 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
3257 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
3258 https://bugs.webkit.org/show_bug.cgi?id=137946
3260 Reviewed by Gyuyoung Kim.
3262 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
3264 * Source/cmake/OptionsEfl.cmake:
3266 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3268 Fix FTL Native Inlining for EFL
3269 https://bugs.webkit.org/show_bug.cgi?id=137774
3271 Reviewed by Michael Saboff.
3273 Updated CMake for FTL Native Inlining.
3276 * Source/cmake/FindClang.cmake: Added.
3277 * Source/cmake/OptionsEfl.cmake:
3278 * Source/cmakeconfig.h.cmake:
3280 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
3282 Web Inspector: Generate all Inspector domains together in JavaScriptCore
3283 https://bugs.webkit.org/show_bug.cgi?id=137748
3285 Reviewed by Brian Burg.
3287 * Source/PlatformEfl.cmake:
3289 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
3291 [GTK] Add initial gestures support
3292 https://bugs.webkit.org/show_bug.cgi?id=137812
3294 Reviewed by Sergio Villar Senin.
3296 Check if the GTK+ version supports gestures or not.
3298 * Source/cmake/FindGTK3.cmake:
3299 * Source/cmake/OptionsGTK.cmake:
3301 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
3303 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
3304 https://bugs.webkit.org/show_bug.cgi?id=137781
3306 Reviewed by Martin Robinson.
3308 We used to enable smooth scrolling unconditionally in autotools
3309 (via WebKitFeatures.m4), but since the switch to CMake it's
3310 unconditionally disabled, so changing the setting doesn't have any
3313 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
3315 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
3317 Removing CUSTOM_PROTOCOLS guard
3318 https://bugs.webkit.org/show_bug.cgi?id=137741
3320 Reviewed by Benjamin Poulain.
3322 * Source/cmake/OptionsEfl.cmake:
3324 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
3326 [EFL] Enable WebP support.
3327 https://bugs.webkit.org/show_bug.cgi?id=136156
3329 Reviewed by Gyuyoung Kim.
3331 Add WebP package finding rule.
3333 * Source/cmake/OptionsEfl.cmake:
3335 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
3337 [EFL] Enable custom URI schemes with CustomProtocols
3338 https://bugs.webkit.org/show_bug.cgi?id=128177
3340 Reviewed by Gyuyoung Kim.
3342 Fixing ewk_context_url_scheme_register() ewebkit2 API
3343 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
3345 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
3347 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
3349 Bump version to 2.7.0
3350 https://bugs.webkit.org/show_bug.cgi?id=137301
3352 Rubber-stamped by Carlos Garcia Campos.
3354 * Source/cmake/OptionsGTK.cmake: Bump version numbers
3356 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3358 [EFL] Rename TEST_THEME_DIR macro
3359 https://bugs.webkit.org/show_bug.cgi?id=137244
3361 Reviewed by Csaba Osztrogonác.
3363 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
3365 2014-09-27 Dan Bernstein <mitz@apple.com>
3367 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
3368 https://bugs.webkit.org/show_bug.cgi?id=137053
3370 Reviewed by Mark Rowe.
3372 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3373 In the build pre-action, pass the --wksi and --llvm options to
3374 copy-webkitlibraries-to-product-directory.
3375 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
3377 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
3379 [GTK] Enable CSS_IMAGE_SET in production builds
3380 https://bugs.webkit.org/show_bug.cgi?id=137142
3382 Reviewed by Alejandro G. Castro.
3384 This is required by the inspector to show some of the icons that
3385 has a HiDPI variant.
3387 * Source/cmake/OptionsGTK.cmake:
3389 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
3391 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
3392 https://bugs.webkit.org/show_bug.cgi?id=136377
3394 Reviewed by Philippe Normand.
3396 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
3397 for CMake versions less than 3.
3399 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
3401 Remove WinCE port from trunk
3402 https://bugs.webkit.org/show_bug.cgi?id=136951
3404 Reviewed by Alex Christensen.
3406 * Source/cmake/OptionsWinCE.cmake: Removed.
3407 * Source/cmake/WebKitPackaging.cmake:
3409 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
3411 [EFL][GTK] Remove WebKit1 related codes
3412 https://bugs.webkit.org/show_bug.cgi?id=136853
3414 Reviewed by Csaba Osztrogonác.
3416 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
3419 * Source/PlatformGTK.cmake:
3421 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3424 https://bugs.webkit.org/show_bug.cgi?id=136820
3426 Reviewed by Csaba Osztrogonác.
3428 * Source/cmake/FindICU.cmake:
3430 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
3432 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
3433 https://bugs.webkit.org/show_bug.cgi?id=136814
3435 Reviewed by Philippe Normand.
3437 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
3438 We bundle the wayland-egl dependency with wayland-client and wayland-server
3439 and store the resulting variables with the WAYLAND_ prefix. Because of this
3440 this line wasn't exporting anything useful.
3442 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
3444 URTBF after r173574.
3446 * Source/cmake/WebKitMacros.cmake:
3448 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
3450 [JavaScriptCore] Fix FTL on platform EFL.
3451 https://bugs.webkit.org/show_bug.cgi?id=133571
3453 Reviewed by Filip Pizlo.
3457 * Source/cmake/FindLIBCXXABI.cmake: Removed.
3458 * Source/cmake/OptionsEfl.cmake:
3460 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3463 https://bugs.webkit.org/show_bug.cgi?id=136571
3465 Reviewed by Darin Adler.
3467 * Source/cmake/OptionsEfl.cmake:
3468 * Source/cmake/OptionsGTK.cmake:
3469 * Source/cmake/OptionsMac.cmake:
3470 * Source/cmake/WebKitFeatures.cmake:
3471 * Source/cmakeconfig.h.cmake:
3473 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3475 Remove CSS_FILTERS flag
3476 https://bugs.webkit.org/show_bug.cgi?id=136529
3478 Reviewed by Dirk Schulze.
3480 * Source/cmake/OptionsEfl.cmake:
3481 * Source/cmake/OptionsGTK.cmake:
3482 * Source/cmake/OptionsMac.cmake:
3483 * Source/cmake/WebKitFeatures.cmake:
3484 * Source/cmakeconfig.h.cmake:
3486 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3488 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
3489 https://bugs.webkit.org/show_bug.cgi?id=136194
3491 Reviewed by Csaba Osztrogonác.
3493 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
3497 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3499 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
3500 https://bugs.webkit.org/show_bug.cgi?id=135560
3502 Reviewed by Gyuyoung Kim.
3504 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
3506 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
3508 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
3509 https://bugs.webkit.org/show_bug.cgi?id=136343
3511 Reviewed by David Kilzer.
3513 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
3515 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3516 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3518 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
3520 [EFL] Share fast/speechsynthesis/ with other ports
3521 https://bugs.webkit.org/show_bug.cgi?id=136224
3523 Reviewed by Chris Fleizach.
3525 Enable WebSpeech for EFL.
3527 * Source/cmake/OptionsEfl.cmake:
3529 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
3531 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
3532 https://bugs.webkit.org/show_bug.cgi?id=136127
3534 Reviewed by Gyuyoung Kim.
3536 Add build support for espeak.
3538 * Source/cmake/FindEspeak.cmake: Added.
3539 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
3541 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
3543 [EFL] Build break using clang
3544 https://bugs.webkit.org/show_bug.cgi?id=136245
3546 Reviewed by Gyuyoung Kim.
3548 * Source/cmake/OptionsEfl.cmake:
3549 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
3550 Some warnings are from system libraries.
3552 2014-08-25 Alberto Garcia <berto@igalia.com>
3554 [GTK] Unify webkitgtk and webkit2gtk directories
3555 https://bugs.webkit.org/show_bug.cgi?id=136209
3557 Reviewed by Carlos Garcia Campos.
3559 Use webkit2gtk-X.X both for the process binaries and the injected
3562 * Source/cmake/OptionsGTK.cmake:
3564 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3566 [EFL] Move Efl specific code from Source/CMakeLists.txt
3567 https://bugs.webkit.org/show_bug.cgi?id=136206
3569 Reviewed by Gyuyoung Kim.
3571 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
3572 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
3574 * Source/CMakeLists.txt:
3575 * Source/cmake/OptionsEfl.cmake:
3577 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3579 [EFL] Introduce DEVELOPER_MODE
3580 https://bugs.webkit.org/show_bug.cgi?id=135884
3582 Reviewed by Gyuyoung Kim.
3584 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
3585 instead of SHARED_CORE.
3586 SHARED_CORE can reduce link time and memory consumption but it is slightly different
3587 from release binary.
3589 * Source/cmake/OptionsEfl.cmake:
3590 * Source/cmake/WebKitHelpers.cmake:
3591 Moved fvisibility=hidden to OptionsEfl.cmake
3593 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
3595 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
3596 https://bugs.webkit.org/show_bug.cgi?id=136110
3598 Reviewed by Gyuyoung Kim.
3600 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
3602 * Source/cmake/OptionsEfl.cmake:
3604 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3606 [EFL] Apply eflsymbols.filter to WebKit2
3607 https://bugs.webkit.org/show_bug.cgi?id=136148
3609 Reviewed by Csaba Osztrogonác.
3611 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
3612 in the eflsymbols.filter.
3614 * Source/cmake/OptionsEfl.cmake:
3615 * Source/cmake/eflsymbols.filter:
3617 2014-08-21 Zalan Bujtas <zalan@apple.com>
3619 Enable SATURATED_LAYOUT_ARITHMETIC.
3620 https://bugs.webkit.org/show_bug.cgi?id=136106
3622 Reviewed by Simon Fraser.
3624 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
3625 (No measurable performance regression on Mac.)
3627 * Source/cmake/OptionsMac.cmake:
3628 * Source/cmake/WebKitFeatures.cmake:
3629 * Source/cmakeconfig.h.cmake:
3631 2014-08-19 Zalan Bujtas <zalan@apple.com>
3633 Remove ENABLE(SUBPIXEL_LAYOUT).
3634 https://bugs.webkit.org/show_bug.cgi?id=136077
3636 Reviewed by Simon Fraser.
3638 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
3640 * Source/cmake/OptionsEfl.cmake:
3641 * Source/cmake/OptionsGTK.cmake:
3642 * Source/cmake/OptionsMac.cmake:
3643 * Source/cmake/WebKitFeatures.cmake:
3644 * Source/cmakeconfig.h.cmake:
3646 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
3648 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
3649 https://bugs.webkit.org/show_bug.cgi?id=135980
3651 Reviewed by Martin Robinson.
3653 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
3654 overrides any other disabled optimization that was prepended to these
3655 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
3656 lists first in the final list of compilation flags.
3658 To avoid -On re-enabling optimizations that we'd like to keep disabled,
3659 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
3661 * Source/cmake/OptionsCommon.cmake:
3662 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
3663 * Source/cmake/OptionsGTK.cmake:
3665 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3667 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
3669 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3671 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
3673 [GTK] Disable memory sampler on non-Linux system
3674 https://bugs.webkit.org/show_bug.cgi?id=134483
3676 Reviewed by Philippe Normand.
3678 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
3679 Linux because it uses many Linux-specific features, so we should disable
3680 memory sampler on other systems by default.
3682 * Source/cmake/OptionsGTK.cmake:
3684 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3686 [GTK] HTML API documentation should also be installed versioned
3687 https://bugs.webkit.org/show_bug.cgi?id=135970
3689 Reviewed by Philippe Normand.
3691 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
3694 2014-08-14 Tomas Popela <tpopela@redhat.com>
3696 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
3697 https://bugs.webkit.org/show_bug.cgi?id=135937
3699 Reviewed by Carlos Garcia Campos.
3703 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3705 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
3706 https://bugs.webkit.org/show_bug.cgi?id=135934
3708 Reviewed by Gustavo Noronha Silva.
3710 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
3711 The gir files should installed in $datadir/gir-1.0/ together with all other
3712 gir files. We don't need to install introspection files in a versioned
3713 directory because their filenames already contain the binary version. But before
3714 r171598, the files were only installed to the right directory if the
3715 gobject-instrospection pkg-config file was in the same prefix than the one we
3716 wanted to install, because the gir and typelibs directories were extracted from
3717 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
3718 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
3719 like we do in the autotools build.
3721 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
3722 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3723 * Source/cmake/OptionsGTK.cmake: Define
3724 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3726 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3728 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
3729 https://bugs.webkit.org/show_bug.cgi?id=135836
3731 Reviewed by Philippe Normand.
3733 * Source/PlatformGTK.cmake: Add install command to also install
3734 the GObject DOM bindings API docs.
3736 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
3738 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
3739 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
3740 re-set CMAKE_C_FLAGS with the new string. The two flags should really
3741 be appended to CMAKE_C_FLAGS and the same variable re-set with the
3744 * Source/cmake/OptionsCommon.cmake:
3746 2014-08-13 Alex Christensen <achristensen@webkit.org>
3748 Progress towards CMake on Mac.
3749 https://bugs.webkit.org/show_bug.cgi?id=135819
3751 Reviewed by Laszlo Gombos.
3753 * Source/cmake/OptionsMac.cmake:
3754 Disable some more features temporarily to get CMake working.
3755 * Source/cmake/WebKitMacros.cmake:
3756 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
3758 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3760 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
3761 https://bugs.webkit.org/show_bug.cgi?id=135798
3763 Reviewed by Philippe Normand.
3765 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
3767 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3768 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3769 https://bugs.webkit.org/show_bug.cgi?id=133317
3771 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3773 Reviewed by Philippe Normand.
3775 No new tests since no new functionality has been added.
3777 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3779 2014-08-11 Commit Queue <commit-queue@webkit.org>
3781 Unreviewed, rolling out r172393.
3782 https://bugs.webkit.org/show_bug.cgi?id=135796
3784 discussion needed about GnuTLS version bump on the bots
3785 (Requested by philn on #webkit).
3789 https://bugs.webkit.org/show_bug.cgi?id=133317
3790 http://trac.webkit.org/changeset/172393
3792 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3793 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3794 https://bugs.webkit.org/show_bug.cgi?id=133317
3796 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3798 Reviewed by Philippe Normand.
3800 No new tests since no new functionality has been added.
3802 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3804 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3806 [GTK] Adds stubs for all subtle crypto algorithm implemntations
3807 https://bugs.webkit.org/show_bug.cgi?id=133316
3809 Reviewed by Philippe Normand.
3811 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
3812 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
3813 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
3815 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
3817 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
3819 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3821 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3823 [GTK] REGRESSION(r166239): The ld version script is not being used
3824 https://bugs.webkit.org/show_bug.cgi?id=135694
3826 Reviewed by Martin Robinson.
3828 Move the symbols filter file from Tools/gtk to Source/cmake and rename
3829 it as gtksymbols.filter. Also updated it, since some of the symbols
3830 exported were renamed.
3832 * Source/cmake/OptionsGTK.cmake:
3833 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
3835 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3837 [GTK] Child processes should be installed in a versioned directory
3838 https://bugs.webkit.org/show_bug.cgi?id=135754
3840 Reviewed by Gustavo Noronha Silva.
3842 Define LIBEXEC_INSTALL_DIR as
3843 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
3844 so that the child processes are installed in $libexec/webkitgtk-4.0.
3845 This makes it possible to install 2.6 in parallel to older versions.
3847 * Source/cmake/OptionsGTK.cmake:
3849 2014-08-08 Alex Christensen <achristensen@webkit.org>
3851 Progress towards using CMake on Mac.
3852 https://bugs.webkit.org/show_bug.cgi?id=135662
3854 Reviewed by Laszlo Gombos.