1 2015-10-14 Tomas Popela <tpopela@redhat.com>
3 [GTK][EFL] Fix build with cmake 3.4
4 https://bugs.webkit.org/show_bug.cgi?id=150117
6 Explicitely include the CheckIncludeFiles module before using
7 the CHECK_INCLUDE_FILES command.
9 Reviewed by Žan Doberšek.
11 * Source/cmake/FindOpenGL.cmake:
12 * Source/cmake/FindWebP.cmake:
13 * Source/cmake/OptionsEfl.cmake:
15 2015-10-13 Dean Jackson <dino@apple.com>
17 Device motion and orientation should only be visible from the main frame's security origin
18 https://bugs.webkit.org/show_bug.cgi?id=150072
19 <rdar://problem/23082036>
21 Reviewed by Brent Fulgham.
23 Add a manual test for cross-origin device orientation events, while
24 we're waiting on the mock client to be supported everywhere.
26 * ManualTests/deviceorientation-child-frame.html: Added.
27 * ManualTests/deviceorientation-main-frame-only.html: Added.
29 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
31 [GTK] OSX linker doesn't understand --whole-archive
32 https://bugs.webkit.org/show_bug.cgi?id=144557
34 Reviewed by Martin Robinson.
36 * Source/cmake/OptionsGTK.cmake: Turn the macro
37 ADD_WHOLE_ARCHIVE_TO_LIBRARIES into a no-op on Darwin systems,
38 because XCode's linker doesn't have the --whole-archive option.
40 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
42 [GTK] Use --version-script only on Linux
43 https://bugs.webkit.org/show_bug.cgi?id=144555
45 Reviewed by Philippe Normand.
47 * Source/cmake/OptionsGTK.cmake: Don't add --version-script
48 option on Darwin (whose linker doesn't support it.)
50 2015-10-09 Gyuyoung Kim <gyuyoung.kim@webkit.org>
52 [CMake] Remove ENABLE_SUBPIXEL_LAYOUT macro
53 https://bugs.webkit.org/show_bug.cgi?id=149947
55 Reviewed by Csaba Osztrogonác.
57 ENABLE(SUBPIXEL_LAYOUT) was removed though, it is still alive in .cmake.
60 * Source/cmake/OptionsMac.cmake:
61 * Source/cmake/OptionsWin.cmake:
62 * Source/cmake/WebKitFeatures.cmake:
64 2015-10-06 Emanuele Aina <emanuele.aina@collabora.com>
66 Fix ENABLE_OPENGL=OFF builds
67 https://bugs.webkit.org/show_bug.cgi?id=146511
69 Reviewed by Darin Adler.
71 * Source/cmake/OptionsGTK.cmake: Make ENABLE_WAYLAND_TARGET depend on
72 ENABLE_OPENGL due to EGL usage.
74 2015-10-01 Wenson Hsieh <wenson_hsieh@apple.com>
76 Convert focused-input-should-assist-on-touch.html into an automated test
77 https://bugs.webkit.org/show_bug.cgi?id=149724
79 Reviewed by Simon Fraser.
81 Remove a manual test that can now be rewritten as an automated test.
83 * ManualTests/ios/focused-input-should-assist-on-touch.html: Removed.
85 2015-10-01 Brent Fulgham <bfulgham@apple.com>
87 [Win] Unreviewed CMake build fix.
89 * Source/cmake/OptionsWin.cmake: Clean up options setttings,
90 and make sure exception handling is turned off.
92 2015-09-30 Brent Fulgham <bfulgham@apple.com>
94 [Win] Unreviewed build fix after CMake conversion.
96 * Source/cmake/OptionsWin.cmake: Correct some Windows build flags.
98 2015-09-29 Michael Catanzaro <mcatanzaro@igalia.com>
100 [GTK][CMake] Warning about CMP0058
101 https://bugs.webkit.org/show_bug.cgi?id=149627
103 Reviewed by Martin Robinson.
105 Opt-in to the new behavior for CMP0058.
109 2015-09-28 Brent Fulgham <bfulgham@apple.com>
111 [Win] Unreviewed build fix for internal systems.
113 * Source/cmake/OptionsWin.cmake: Preferentially use the build target
114 location for include and link libraries, rather than the system locations.
116 2015-09-28 Alex Christensen <achristensen@webkit.org>
118 Build WK1 with CMake on Mac
119 https://bugs.webkit.org/show_bug.cgi?id=149604
121 Reviewed by Chris Dumez.
123 * Source/cmake/OptionsMac.cmake:
124 * Source/cmake/WebKitMacros.cmake:
125 ObjC bindings now have their own list of IDL files, but some of them still don't generate a .mm file.
127 2015-09-25 Alex Christensen <achristensen@webkit.org>
129 Clean up CMake build on Mac
130 https://bugs.webkit.org/show_bug.cgi?id=149573
132 Reviewed by Chris Dumez.
134 * Source/cmake/OptionsMac.cmake:
136 2015-09-25 Alex Christensen <achristensen@webkit.org>
138 [Win] Switch to CMake
139 https://bugs.webkit.org/show_bug.cgi?id=148111
141 Reviewed by Brent Fulgham.
143 * Source/cmake/WinTools.make: Added.
144 * Source/cmake/tools: Added.
145 * Source/cmake/tools/scripts: Copied from WebKitLibraries/win/tools/scripts.
146 * Source/cmake/tools/scripts/auto-version.pl: Copied from WebKitLibraries/win/tools/scripts/auto-version.pl.
148 2015-09-25 Alex Christensen <achristensen@webkit.org>
150 Prepare internal AppleWin build for CMake
151 https://bugs.webkit.org/show_bug.cgi?id=149570
153 Reviewed by Brent Fulgham.
155 * Source/PlatformWin.cmake:
156 Include internal CMake files if they exist.
158 2015-09-22 Gyuyoung Kim <gyuyoung.kim@webkit.org>
160 Add a file of pointer-lock to cmake ports
161 https://bugs.webkit.org/show_bug.cgi?id=149453
163 Reviewed by Csaba Osztrogonác.
165 * Source/cmake/OptionsEfl.cmake: Add a ENABLE_POINTER_LOCK.
167 2015-09-22 Carlos Alberto Lopez Perez <clopez@igalia.com>
169 [CMake] Allow to enable OpenMP support.
170 https://bugs.webkit.org/show_bug.cgi?id=149457
172 Reviewed by Csaba Osztrogonác.
174 * Source/cmake/OptionsCommon.cmake: Add the option USE_OPENMP that
175 will enable the support for OpenMP. Currently this is only used as
176 an alternative implementation to native threads for the parallelization
177 of the SVG filters. But name the option with a generic name (USE_OPENMP)
178 as it could be also used to enable future features that depend on OpenMP.
180 2015-09-22 Ryuan Choi <ryuan.choi@navercorp.com>
182 [EFL] Build break when DEVELOPER_MODE is OFF
183 https://bugs.webkit.org/show_bug.cgi?id=149448
185 Reviewed by Gyuyoung Kim.
187 Since r187191, DatabaseProcessMainUnix is missing in symbol filter.
189 * Source/cmake/eflsymbols.filter:
191 2015-09-21 Alex Christensen <achristensen@webkit.org>
193 Disable PICTURE_SIZES in Windows CMake build like r189745.
194 https://bugs.webkit.org/show_bug.cgi?id=149125
196 * Source/cmake/OptionsWin.cmake:
197 Do the same thing as r189745.
199 2015-09-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
201 Removing XHR_TIMEOUT guard
203 Remove XHR_TIMEOUT compilation guard
204 https://bugs.webkit.org/show_bug.cgi?id=149260
206 Reviewed by Benjamin Poulain.
208 * Source/cmake/OptionsEfl.cmake:
209 * Source/cmake/OptionsGTK.cmake:
210 * Source/cmake/OptionsMac.cmake:
211 * Source/cmake/OptionsWin.cmake:
212 * Source/cmake/WebKitFeatures.cmake:
214 2015-09-18 Alex Christensen <achristensen@webkit.org>
216 Fix tests on Windows after switching to CMake.
217 https://bugs.webkit.org/show_bug.cgi?id=149339
219 Reviewed by Brent Fulgham.
221 * Source/PlatformWin.cmake: Added to copy WebInspectorUI.
223 2015-09-17 Alex Christensen <achristensen@webkit.org>
225 Fix Windows EWS build after r189934.
227 * Source/cmake/OptionsWin.cmake:
228 Use WEBKIT_LIBRARIES environment variable if it exists.
229 We have the WebKitLibraries directory separate from the repository copy on the EWS bots.
231 2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
233 Add ShadowRoot interface and Element.prototype.attachShadow
234 https://bugs.webkit.org/show_bug.cgi?id=149187
236 Reviewed by Antti Koivisto.
238 * Source/cmake/OptionsGTK.cmake:
240 2015-09-15 Csaba Osztrogonác <ossy@webkit.org>
242 [cmake] Enable debug fission only if it is supported
243 https://bugs.webkit.org/show_bug.cgi?id=149161
245 Reviewed by Martin Robinson.
247 * Source/cmake/OptionsCommon.cmake:
249 2015-09-14 Alex Christensen <achristensen@webkit.org>
251 Progress towards CMake on Mac.
252 https://bugs.webkit.org/show_bug.cgi?id=149123
254 Reviewed by Chris Dumez.
256 * Source/cmake/OptionsMac.cmake:
257 * Source/cmake/WebKitFeatures.cmake:
258 Defined and enabled some more features needed on Mac.
259 * Source/cmake/WebKitMacros.cmake:
260 Objective C bindings need special changes when generating:
261 Some of the bindings do not generate a .mm file but the header is needed.
262 Some of the bindings do generate a .mm file that doesn't compile but the header is needed.
263 In order to handle these cases, it is necessary to change the GENERATE_BINDINGS macro just for ObjC.
265 2015-09-08 Daniel Bates <dabates@apple.com>
267 Convert manual test added in http://trac.webkit.org/changeset/70321 to an automated test
268 https://bugs.webkit.org/show_bug.cgi?id=74729
269 <rdar://problem/22550195>
271 Reviewed by Jon Honeycutt.
273 * ManualTests/compositing/resources/composited-subframe.html: Removed.
274 * ManualTests/compositing/show-composited-iframe-on-back-button.html: Removed.
276 2015-09-06 Andy Estes <aestes@apple.com>
278 WebKit.xcworkspace should be be able to build iOS platforms
279 https://bugs.webkit.org/show_bug.cgi?id=148881
281 Reviewed by Daniel Bates.
283 Since we don't want to create platform-specific schemes, all projects in the workspace's schemes need to build
284 for all supported platforms.
286 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Removed the DumpRenderTree target since its All
287 target was already included. Removed the WebKitTestRunner target and replaced it with its All target.
289 2015-09-04 Jon Honeycutt <jhoneycutt@apple.com>
291 [iOS] Need a test for bug #145539: Uploading an animated GIF from the
292 photo library uploads a JPEG
293 https://bugs.webkit.org/show_bug.cgi?id=148849
295 Reviewed by Daniel Bates.
297 * ManualTests/ios/image-file-uploads-as-original-type.html: Added.
298 On the Mac, file upload tests use EventSender::beginDragWithFiles. This
299 functionality doesn't exist on iOS, so we'll add a manual test.
300 This tests that the first few bytes of the selected file are "GIF".
302 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
304 Follow-up patch for r189343.
305 https://bugs.webkit.org/show_bug.cgi?id=148795
307 Rubber-stamped by Csaba Osztrogonác.
309 * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
310 to 1.9, since this seems to be enough to fix the build failure.
311 And 2.0 may cause problems for developers using some distributions like Ubuntu.
313 2015-09-04 Emanuele Aina <emanuele.aina@collabora.com>
315 [CMake] Trigger the memory-reduction tricks on armhf too
316 https://bugs.webkit.org/show_bug.cgi?id=146640
318 Reviewed by Csaba Osztrogonác.
320 * Source/cmake/OptionsCommon.cmake:
321 Activate --no-keep-memory even on armhf to reduce the amount of memory
322 needed during linking, to avoid out-of-memory failures as much as
325 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
327 REGRESSION(r189293): JavaScriptCore/offlineasm/x86.rb -- Build failure with ruby < 2.0
328 https://bugs.webkit.org/show_bug.cgi?id=148795
330 Rubber-stamped by Carlos Garcia Campos.
332 * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
334 2015-09-02 Alex Christensen <achristensen@webkit.org>
336 Make bison grammar compatible with bison 2.1
337 https://bugs.webkit.org/show_bug.cgi?id=148731
339 Reviewed by Tim Horton.
341 * Source/cmake/WebKitCommon.cmake:
344 2015-08-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
346 [CMake] Build with Debug Fission on by default on Debug builds.
347 https://bugs.webkit.org/show_bug.cgi?id=148639
349 Reviewed by Martin Robinson.
351 * Source/cmake/OptionsCommon.cmake:
353 2015-08-29 Alex Christensen <achristensen@webkit.org>
355 Unreviewed build fix after r179923.
357 * Source/CMakeLists.txt:
358 bmalloc isn't ported to Windows yet.
360 2015-08-27 Alex Christensen <achristensen@webkit.org>
362 Isolate Source directories in CMake build
363 https://bugs.webkit.org/show_bug.cgi?id=148389
365 Reviewed by Brent Fulgham.
368 * Source/cmake/WebKitCommon.cmake:
369 Move package finding to WebKitCommon.
371 2015-08-26 Per Arne Vollan <peavo@outlook.com>
373 [Win] Build does not generate debug info.
374 https://bugs.webkit.org/show_bug.cgi?id=148431
376 Reviewed by Alex Christensen.
378 Generate debug info for Windows builds.
380 * Source/cmake/OptionsWin.cmake:
382 2015-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
384 [GTK] Disable ACCELERATED_2D_CANVAS by default
385 https://bugs.webkit.org/show_bug.cgi?id=148473
387 Reviewed by Martin Robinson.
389 Currently ACCELERATED_2D_CANVAS is enabled by default on most systems (which have CairoGL)
390 but not on Debian (which does not). We've known this was problematic for a while, since it
391 means we have two different sets of distro-dependent bugs, but never decided whether that
392 outweighed the benefits of CarioGL or not. I'm making the call now: it's more important to
393 have the same bugs everywhere. We can turn this on again for other distros when we're ready
394 to turn it on for Debian.
396 Also, properly fail the build if ENABLE_ACCELERATED_2D_CANVAS is enabled but CairoGL is not
399 * Source/cmake/OptionsGTK.cmake:
401 2015-08-25 Commit Queue <commit-queue@webkit.org>
403 Unreviewed, rolling out r188919.
404 https://bugs.webkit.org/show_bug.cgi?id=148452
406 broke build (Requested by alexchristensen on #webkit).
410 "[Win] Build does not generate debug info."
411 https://bugs.webkit.org/show_bug.cgi?id=148431
412 http://trac.webkit.org/changeset/188919
414 2015-08-25 Michael Catanzaro <mcatanzaro@igalia.com>
416 [GTK] r186800 broke the build on Ubuntu 14.04
417 https://bugs.webkit.org/show_bug.cgi?id=147559
419 Reviewed by Martin Robinson.
421 * Source/cmake/FindGTK3.cmake: Always define GTK3_SUPPORTS_X11 and GTK3_SUPPORTS_WAYLAND.
422 * Source/cmake/OptionsGTK.cmake: Autodetect support for X11 and Wayland backends.
424 2015-08-25 Per Arne Vollan <peavo@outlook.com>
426 [Win] Build does not generate debug info.
427 https://bugs.webkit.org/show_bug.cgi?id=148431
429 Reviewed by Brent Fulgham.
431 Generate debug info for Windows builds.
433 * Source/cmake/OptionsWin.cmake:
435 2015-08-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
437 [GTK] Auto-detection of cairo-gl fails
438 https://bugs.webkit.org/show_bug.cgi?id=148189
440 Reviewed by Žan Doberšek.
442 * Source/cmake/FindCairoGL.cmake: only check for components if the main package has
443 been found. Otherwise, if either GLX or EGL are available, cairo-gl will also be
444 deemed available, which might not be the case.
445 * Source/cmake/OptionsGTK.cmake: fix the usage of the CAIROGL_FOUND variable.
447 2015-08-19 Alex Christensen <achristensen@webkit.org>
449 CMake Windows build should not include files directly from other Source directories
450 https://bugs.webkit.org/show_bug.cgi?id=148198
452 Reviewed by Brent Fulgham.
454 * Source/cmake/WebKitMacros.cmake:
456 2015-08-19 Alex Christensen <achristensen@webkit.org>
458 Build TestWTF on Mac with CMake.
459 https://bugs.webkit.org/show_bug.cgi?id=147972
461 Reviewed by Tim Horton.
463 * Source/cmake/OptionsMac.cmake:
464 Enable API tests in Mac's CMake build.
466 2015-08-18 Alex Christensen <achristensen@webkit.org>
468 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
469 https://bugs.webkit.org/show_bug.cgi?id=148127
471 Reviewed by Martin Robinson.
474 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
476 2015-08-17 Alex Christensen <achristensen@webkit.org>
478 [Win CMake] Allow WebKitLibraries directory to be set from the command line
479 https://bugs.webkit.org/show_bug.cgi?id=148112
481 Reviewed by Brent Fulgham.
483 * Source/cmake/OptionsWin.cmake:
484 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
485 Instead, use the default location if nothing is passed in from the command line.
486 This way we can set it from the command line for the AppleInternal build.
487 Also, set the output directories to be consistent between the old and new build systems (and ninja).
489 2015-08-17 Alex Christensen <achristensen@webkit.org>
491 Build Debug Suffix on Windows with CMake
492 https://bugs.webkit.org/show_bug.cgi?id=148083
494 Reviewed by Brent Fulgham.
496 * Source/cmake/OptionsWin.cmake:
497 Use debug libraries in debug suffix builds.
499 2015-08-17 Alex Christensen <achristensen@webkit.org>
501 Move some commands from ./CMakeLists.txt to Source/cmake
502 https://bugs.webkit.org/show_bug.cgi?id=148003
504 Reviewed by Brent Fulgham.
507 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
508 so we can change directory structure from command line parameters.
509 * Source/cmake/OptionsAppleWin.cmake:
510 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
511 * Source/cmake/OptionsWinCairo.cmake:
512 * Source/cmake/OptionsWindows.cmake: Removed.
513 * Source/cmake/WebKitCommon.cmake: Added.
514 * Source/cmake/WebKitFS.cmake:
516 2015-08-13 Commit Queue <commit-queue@webkit.org>
518 Unreviewed, rolling out r188428.
519 https://bugs.webkit.org/show_bug.cgi?id=148015
521 broke cmake build (Requested by alexchristensen on #webkit).
525 "Move some commands from ./CMakeLists.txt to Source/cmake"
526 https://bugs.webkit.org/show_bug.cgi?id=148003
527 http://trac.webkit.org/changeset/188428
529 2015-08-13 Alex Christensen <achristensen@webkit.org>
531 Move some commands from ./CMakeLists.txt to Source/cmake
532 https://bugs.webkit.org/show_bug.cgi?id=148003
534 Reviewed by Brent Fulgham.
537 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
538 so we can change directory structure from command line parameters.
539 * Source/cmake/WebKitCommon.cmake: Added.
540 * Source/cmake/WebKitFS.cmake:
542 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
544 A focused node should not be assisted when handling touch events synchronously
545 https://bugs.webkit.org/show_bug.cgi?id=147836
547 Reviewed by Enrica Casucci.
549 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
551 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
552 input can still be assisted due to a touch event.
553 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
554 event does not automatically cause us to assist the currently focused node.
556 2015-08-12 Alex Christensen <achristensen@webkit.org>
558 Fix Debug CMake builds on Windows
559 https://bugs.webkit.org/show_bug.cgi?id=147940
561 Reviewed by Chris Dumez.
563 * Source/cmake/OptionsWindows.cmake:
564 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
566 2015-08-10 Alex Christensen <achristensen@webkit.org>
568 Build TestWebKitAPI with CMake on Windows
569 https://bugs.webkit.org/show_bug.cgi?id=147851
571 Reviewed by Chris Dumez.
573 * Source/cmake/OptionsWindows.cmake:
574 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
576 2015-08-06 Alex Christensen <achristensen@webkit.org>
578 [Win] CMake build fix after r188098.
580 * Source/cmake/OptionsWinCairo.cmake:
581 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
583 2015-08-04 Alex Christensen <achristensen@webkit.org>
585 Fix quirks with CMake and VS2015
586 https://bugs.webkit.org/show_bug.cgi?id=147663
588 Reviewed by Brent Fulgham.
590 * Source/cmake/OptionsWindows.cmake:
591 Hide some warnings. Using the same variable names in nested scopes is ok for now.
592 Disable INTL for now.
594 2015-08-04 Alex Christensen <achristensen@webkit.org>
596 Enable WebGL on Windows CMake build.
597 https://bugs.webkit.org/show_bug.cgi?id=143311
599 Reviewed by Csaba Osztrogonác.
601 * Source/cmake/OptionsWindows.cmake:
602 Enable WebGL by default in CMake builds now that it works.
604 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
606 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
607 https://bugs.webkit.org/show_bug.cgi?id=147625
609 Reviewed by Martin Robinson.
611 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
612 components unless they were actually found, not to accidentally
613 enable Accelerated 2D canvas, which would cause the build to fail.
615 * Source/cmake/FindCairoGL.cmake: Set this variables only when
616 pkg_check_modules() had actually found the relevant component.
618 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
620 [CMake] Add an option to build AllInOne files
621 https://bugs.webkit.org/show_bug.cgi?id=102647
623 Reviewed by Alex Christensen.
625 * Source/cmake/OptionsEfl.cmake: Disabled by default.
626 * Source/cmake/OptionsGTK.cmake: Disabled by default.
627 * Source/cmake/OptionsWindows.cmake: Enabled by default.
628 * Source/cmake/WebKitFeatures.cmake:
629 * Source/cmake/WebKitMacros.cmake:
631 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
633 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
635 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
637 2015-07-31 Alex Christensen <achristensen@webkit.org>
639 Prepare for debug CMake builds on Windows.
640 https://bugs.webkit.org/show_bug.cgi?id=147484
642 Reviewed by Tim Horton.
644 * Source/cmake/OptionsWindows.cmake:
645 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
647 2015-07-30 Joonghun Park <jh718.park@samsung.com>
649 [EFL] Enable IndexedDB based on DatabaseProcess
650 https://bugs.webkit.org/show_bug.cgi?id=147221
652 Reviewed by Csaba Osztrogonác.
654 * Source/cmake/OptionsEfl.cmake:
656 2015-07-30 Alex Christensen <achristensen@webkit.org>
658 Build AppleWin port with CMake
659 https://bugs.webkit.org/show_bug.cgi?id=147385
661 Reviewed by Martin Robinson.
663 * Source/cmake/OptionsWindows.cmake:
664 Use the static multithreaded runtime. Based on
665 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
667 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
669 Implement basic types for ECMAScript Internationalization API
670 https://bugs.webkit.org/show_bug.cgi?id=146926
672 Reviewed by Benjamin Poulain.
674 Enable flag now that the basic objects are in place.
676 * Source/cmake/WebKitFeatures.cmake: enable INTL
678 2015-07-29 Basile Clement <basile_clement@apple.com>
680 Remove native call inlining
681 https://bugs.webkit.org/show_bug.cgi?id=147417
683 Rubber-stamped by Filip Pizlo.
685 * Source/cmake/OptionsEfl.cmake:
686 * Source/cmake/WebKitFeatures.cmake:
688 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
690 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
691 https://bugs.webkit.org/show_bug.cgi?id=147350
693 Reviewed by Sam Weinig.
695 * Source/cmake/WebKitFeatures.cmake:
697 2015-07-27 Alex Christensen <achristensen@webkit.org>
699 Use Ninja on Windows.
700 https://bugs.webkit.org/show_bug.cgi?id=147228
702 Reviewed by Martin Robinson.
704 * Source/cmake/OptionsWindows.cmake:
705 Only use /MP when using generated Visual Studio solution files to build.
706 It makes compiling parallel in MSVC, but Ninja doesn't like it.
708 2015-07-27 Alex Christensen <achristensen@webkit.org>
710 Progress towards building AppleWin with CMake
711 https://bugs.webkit.org/show_bug.cgi?id=147325
713 Reviewed by Martin Robinson.
715 * Source/cmake/OptionsWindows.cmake:
716 Link with 64-bit libraries if building 64-bit binaries.
717 Don't run regular expressions on empty strings when using Ninja.
718 Removed DebugSuffix Visual Studio environment variables.
720 2015-07-23 Alex Christensen <achristensen@webkit.org>
722 Remove compile and runtime flags for promises.
723 https://bugs.webkit.org/show_bug.cgi?id=147244
725 Reviewed by Yusuke Suzuki.
727 * Source/cmake/OptionsMac.cmake:
728 * Source/cmake/OptionsWindows.cmake:
729 * Source/cmake/WebKitFeatures.cmake:
731 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
733 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
734 https://bugs.webkit.org/show_bug.cgi?id=147212
736 Reviewed by Filip Pizlo.
738 * Source/cmake/WebKitFeatures.cmake:
740 2015-07-22 Alex Christensen <achristensen@webkit.org>
742 Fix quirks in CMake build on Mac and Windows
743 https://bugs.webkit.org/show_bug.cgi?id=147174
745 Reviewed by Gyuyoung Kim.
748 * Source/cmake/OptionsWindows.cmake:
749 Added options I removed in r187022. They are indeed needed.
750 * Source/cmake/WebKitFS.cmake:
751 Make the DerivedSources/WebKit directory.
753 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
755 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
757 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
759 2015-07-20 Alex Christensen <achristensen@webkit.org>
761 Resurrect CMake build on Windows.
762 https://bugs.webkit.org/show_bug.cgi?id=147083
764 Reviewed by Gyuyoung Kim.
766 * Source/cmake/OptionsCommon.cmake:
767 * Source/cmake/OptionsWindows.cmake:
768 Change features to get it to compile. Still not a complete feature set.
770 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
772 [GTK] Add seccomp filters support
773 https://bugs.webkit.org/show_bug.cgi?id=110014
775 Reviewed by Žan Doberšek.
777 Find needed compiler and linker flags for libseccomp.
779 * Source/cmake/OptionsGTK.cmake:
781 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
783 Bring back the GNU ar check to create thin archives on non-Linux systems
784 https://bugs.webkit.org/show_bug.cgi?id=146681
786 Reviewed by Martin Robinson.
788 We already use GNU ar thin archive feature to save time and disk space
789 on creating static archives, but it is only enabled on Linux. Without
790 this feature, the debug build of WebCore can be larger than 4 GiB,
791 which can cause error because GNU ar format uses 32-bit integer to
792 store offsets in the symbol table. This patch is similar to
793 https://bugs.webkit.org/show_bug.cgi?id=128596.
795 * Source/cmake/OptionsCommon.cmake:
797 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
799 [GTK] [Wayland] Build by default the X11 and Wayland targets.
800 https://bugs.webkit.org/show_bug.cgi?id=146057
802 Reviewed by Carlos Garcia Campos.
804 * Source/cmake/OptionsGTK.cmake:
806 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
808 [GTK] ar warning when linking static libraries
809 https://bugs.webkit.org/show_bug.cgi?id=144988
811 Reviewed by Carlos Garcia Campos.
813 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
814 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
815 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
816 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
817 should either stop using 'u' or else add 'U' as well in order to disable deterministic
818 archives. Using 'U' should result in a somewhat faster build (at least when using the
819 Makefile generator), but it's unlikely that the difference is significant, so let's simply
820 remove 'u' until someone determines otherwise. This seems like a better option than adding
821 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
822 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
823 behavior change on distributions that do not use --enable-deterministic-archives, notably
826 * Source/cmake/OptionsCommon.cmake:
828 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
830 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
831 https://bugs.webkit.org/show_bug.cgi?id=146590
833 Reviewed by Martin Robinson.
835 * Source/PlatformGTK.cmake: override the cached variables to
836 forcefully disable gtk-doc and gobject-introspection when
838 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
839 documentation syntax when cross-building.
842 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
844 [EFL] test_ewk2_application_cache_manager has been failed since r185527
845 https://bugs.webkit.org/show_bug.cgi?id=146016
847 Reviewed by Gyuyoung Kim.
849 In order to handle properly WebApplicationCacheManagerProxy implementation which use
850 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
851 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
853 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
855 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
857 Implement ECMAScript Internationalization API
858 https://bugs.webkit.org/show_bug.cgi?id=90906
860 Reviewed by Benjamin Poulain.
862 Begin implementing the Intl apis behind ENABLE_INTL flag.
863 Create the base Intl namespace object.
865 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
867 2015-06-30 Philippe Normand <pnormand@igalia.com>
869 [CMake] Error when gst-plugins-base is missing is too confusing
870 https://bugs.webkit.org/show_bug.cgi?id=145682
872 Reviewed by Carlos Garcia Campos.
874 * Source/cmake/OptionsGTK.cmake: Error out if the required
875 GStreamer libraries are not found on the host.
877 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
879 CairoGL should be checked unconditionally
880 https://bugs.webkit.org/show_bug.cgi?id=146390
882 Reviewed by Darin Adler.
884 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
885 it is run unconditionally; this is necessary because its result
886 is used later on, outside of any conditions.
888 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
890 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
891 https://bugs.webkit.org/show_bug.cgi?id=146318
893 Reviewed by Sergio Villar Senin.
895 Enable PUBLIC_SUFFIX_LIST for GTK+.
897 * Source/cmake/OptionsGTK.cmake:
899 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
901 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
903 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
905 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
907 [EFL] Hyphenation is not supported
908 https://bugs.webkit.org/show_bug.cgi?id=89830
910 Reviewed by Gyuyoung Kim.
912 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
914 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
916 [CMake] Add support for building with various sanitizer tools
917 https://bugs.webkit.org/show_bug.cgi?id=131941
919 Reviewed by Martin Robinson.
921 * Source/PlatformGTK.cmake: Don't generate any documentation
922 when compiling with sanitizers enabled.
923 * Source/cmake/OptionsCommon.cmake: Allow linking with
924 undefined symbols when compiling with sanitizers enabled.
926 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
928 libwebkit2gtk fails to link without opengl
929 https://bugs.webkit.org/show_bug.cgi?id=138332
931 Reviewed by Carlos Garcia Campos.
933 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
934 enabled regardless of whether OpenGL is, because certain symbols
935 such as WebCore::GraphicsLayer::create() need to be built.
937 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
939 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
940 https://bugs.webkit.org/show_bug.cgi?id=146181
942 Reviewed by Martin Robinson.
944 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
946 * Source/cmake/OptionsGTK.cmake:
948 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
950 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
951 https://bugs.webkit.org/show_bug.cgi?id=146171
953 Reviewed by Gyuyoung Kim.
955 * Source/cmake/OptionsEfl.cmake:
956 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
958 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
960 [CMake] FindGTK3.cmake should not modify the values of build options
961 https://bugs.webkit.org/show_bug.cgi?id=144613
963 Reviewed by Martin Robinson.
965 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
966 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
967 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
968 GTK3_SUPPORTS_GESTURES for consistency.
969 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
970 available. It's not possible to automatically select a backend correctly anymore, since all
971 options are set at the same time.
973 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
975 Remove unnecessary svn:executable flags
976 https://bugs.webkit.org/show_bug.cgi?id=146107
978 Reviewed by Alexey Proskuryakov.
980 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
981 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
982 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
983 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
984 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
986 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
988 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
989 https://bugs.webkit.org/show_bug.cgi?id=146108
991 Reviewed by Gyuyoung Kim.
993 * Source/cmake/OptionsEfl.cmake:
995 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
997 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
998 https://bugs.webkit.org/show_bug.cgi?id=146035
1000 Reviewed by Gyuyoung Kim.
1002 * Source/cmake/OptionsEfl.cmake:
1004 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
1006 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1007 https://bugs.webkit.org/show_bug.cgi?id=145701
1009 Reviewed by Darin Adler.
1011 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1013 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
1015 [iOS] Crash long pressing on <input type=file>
1016 https://bugs.webkit.org/show_bug.cgi?id=146009
1017 <rdar://problem/21234453>
1019 Reviewed by Ryosuke Niwa.
1021 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
1023 2015-06-16 Brent Fulgham <bfulgham@apple.com>
1025 Rollout accidental Xcode project change.
1027 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1029 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1031 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
1032 https://bugs.webkit.org/show_bug.cgi?id=145909
1034 Reviewed by Csaba Osztrogonác.
1036 Bump EWebKit version based on efl library version used by the EWebKit.
1038 * Source/cmake/OptionsEfl.cmake:
1040 2015-06-11 Commit Queue <commit-queue@webkit.org>
1042 Unreviewed, rolling out r185453.
1043 https://bugs.webkit.org/show_bug.cgi?id=145881
1045 it broke the 32-bit build (Requested by clopez on #webkit).
1049 "[GTK] [Wayland] Should be possible to build with support for
1050 both X11 and Wayland."
1051 https://bugs.webkit.org/show_bug.cgi?id=145701
1052 http://trac.webkit.org/changeset/185453
1054 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1056 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1057 https://bugs.webkit.org/show_bug.cgi?id=145701
1059 Reviewed by Žan Doberšek.
1061 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1063 2015-06-03 Daniel Bates <dabates@apple.com>
1065 Caps lock indicator should not be shown in read-only or disabled field
1066 https://bugs.webkit.org/show_bug.cgi?id=145612
1067 <rdar://problem/21227454>
1069 Reviewed by Darin Adler.
1071 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
1072 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
1073 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
1075 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
1077 [cmake] Suppress parentheses-equality warnings
1078 https://bugs.webkit.org/show_bug.cgi?id=145126
1080 Reviewed by Darin Adler.
1082 * Source/cmake/WebKitHelpers.cmake:
1084 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1086 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
1087 https://bugs.webkit.org/show_bug.cgi?id=145408
1089 Reviewed by Carlos Garcia Campos.
1091 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
1092 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
1093 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
1095 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
1096 libraries. Detect also GLX libraries.
1097 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
1098 libraries. Use find_path() to get the include path.
1099 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
1101 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
1102 depending on the libraries found on the system.
1103 Move the detection of GLX (and the include of CMakePushCheckState)
1104 to FindOpenGL.cmake.
1105 Ensure that we only define USE_GLX when we build with OpenGL
1106 (but not with GLESv2).
1108 2015-05-27 Dean Jackson <dino@apple.com>
1110 img.currentSrc problem in strict mode with old picturefill
1111 https://bugs.webkit.org/show_bug.cgi?id=144095
1112 <rdar://problem/21087013>
1114 Reviewed by Simon Fraser.
1116 Add a PICTURE_SIZES flag.
1118 * Source/cmake/OptionsEfl.cmake:
1119 * Source/cmake/OptionsGTK.cmake:
1120 * Source/cmake/OptionsMac.cmake:
1121 * Source/cmake/OptionsWindows.cmake:
1122 * Source/cmake/WebKitFeatures.cmake:
1124 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
1126 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
1128 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1130 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1132 Unreviewed. Export DatabaseProcessMainUnix symbol.
1134 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
1135 is exported in production builds.
1137 * Source/cmake/gtksymbols.filter:
1139 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1141 [GTK] Enable IndexedDB
1142 https://bugs.webkit.org/show_bug.cgi?id=98932
1144 Reviewed by Žan Doberšek.
1146 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1147 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1149 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
1151 [GTK] Bump GCC requirements to 4.9.0
1152 https://bugs.webkit.org/show_bug.cgi?id=145211
1154 Reviewed by Žan Doberšek.
1156 It's required to build with IndexedDB support when using GCC,
1157 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
1159 * Source/cmake/OptionsGTK.cmake:
1161 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
1163 [CMake] Ignore warnings in system headers
1164 https://bugs.webkit.org/show_bug.cgi?id=144747
1166 Reviewed by Darin Adler.
1168 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
1169 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
1170 use the SYSTEM argument to the command (added in 2.8.12).
1174 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
1176 [CMake] Error out when ruby is too old
1177 https://bugs.webkit.org/show_bug.cgi?id=145014
1179 Reviewed by Martin Robinson.
1181 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
1186 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
1188 [GTK] Enable plugin-related CMake options and variables for the X11 target only
1189 https://bugs.webkit.org/show_bug.cgi?id=144995
1191 Reviewed by Carlos Garcia Campos.
1193 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
1194 the X11 windowing target at the moment, so the following options
1195 and variables should be enabled or disabled accordingly:
1196 - ENABLE_PLUGIN_PROCESS_GTK2
1197 - ENABLE_NETSCAPE_PLUGIN_API
1198 - ENABLE_PLUGIN_PROCESS
1200 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
1202 Linker fails without -DDEVELOPER_MODE=ON
1203 https://bugs.webkit.org/show_bug.cgi?id=144117
1205 Reviewed by Gyuyoung Kim.
1207 * Source/cmake/OptionsEfl.cmake:
1208 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
1209 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
1211 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1213 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
1214 https://bugs.webkit.org/show_bug.cgi?id=144846
1216 Reviewed by Martin Robinson.
1218 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
1219 CAIRO_GL_* throughout, because find_package will define
1221 * Source/cmake/OptionsGTK.cmake: Ditto.
1223 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1225 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
1226 https://bugs.webkit.org/show_bug.cgi?id=144845
1228 Reviewed by Martin Robinson.
1230 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
1231 if their corresponding WTF options are ON. The code in npapi.h
1232 relies on these being undefined if they are to be switched off.
1234 2015-05-09 Yoav Weiss <yoav@yoav.ws>
1236 Remove the PICTURE_SIZES build flag
1237 https://bugs.webkit.org/show_bug.cgi?id=144679
1239 Reviewed by Benjamin Poulain.
1241 Removed the PICTURE_SIZES build time flag.
1243 * Source/cmake/OptionsEfl.cmake:
1244 * Source/cmake/OptionsGTK.cmake:
1245 * Source/cmake/OptionsMac.cmake:
1246 * Source/cmake/OptionsWindows.cmake:
1247 * Source/cmake/WebKitFeatures.cmake:
1249 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
1251 [GTK] [CMake] Check for required X libraries
1252 https://bugs.webkit.org/show_bug.cgi?id=144823
1254 Reviewed by Martin Robinson.
1256 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
1258 * Source/cmake/OptionsGTK.cmake:
1260 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
1262 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1263 https://bugs.webkit.org/show_bug.cgi?id=144746
1265 Reviewed by Carlos Garcia Campos.
1267 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1268 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
1269 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
1271 * Source/cmake/OptionsGTK.cmake:
1273 2015-05-08 Daniel Bates <dabates@apple.com>
1275 [iOS] WebSQL operations are not performed after device is locked
1276 https://bugs.webkit.org/show_bug.cgi?id=137503
1277 <rdar://problem/20844952>
1279 Rubber-stamped by Alexey Proskuryakov.
1281 Add a manual test to help verify that we do not regress this issue.
1283 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
1285 2015-05-08 Commit Queue <commit-queue@webkit.org>
1287 Unreviewed, rolling out r183945.
1288 https://bugs.webkit.org/show_bug.cgi?id=144789
1290 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
1294 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
1295 https://bugs.webkit.org/show_bug.cgi?id=144746
1296 http://trac.webkit.org/changeset/183945
1298 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
1300 Cleanup after r183940
1301 https://bugs.webkit.org/show_bug.cgi?id=144768
1305 Looks like the empty directories were not deleted.
1307 * Source/PAL: Removed.
1308 * Source/PAL/Configurations: Removed.
1309 * Source/PAL/PAL.xcodeproj: Removed.
1310 * Source/PAL/graphics: Removed.
1312 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
1314 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1315 https://bugs.webkit.org/show_bug.cgi?id=144746
1317 Reviewed by Martin Robinson.
1319 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1320 what it is defined to, so defining it to 0 effectively turned it on always.
1322 * Source/cmake/OptionsGTK.cmake:
1324 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1326 Revert "Introducing the Platform Abstraction Layer (PAL)"
1327 https://bugs.webkit.org/show_bug.cgi?id=144751
1331 PAL should be a new target inside WebCore, rather than a top-level folder.
1333 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1335 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
1337 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
1339 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1341 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1343 Introducing the Platform Abstraction Layer (PAL)
1344 https://bugs.webkit.org/show_bug.cgi?id=143358
1346 Reviewed by Simon Fraser.
1348 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1350 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
1352 [cmake] Disable GNU Gold linker on Cortex A53
1353 https://bugs.webkit.org/show_bug.cgi?id=144382
1355 Reviewed by Carlos Garcia Campos.
1357 * Source/cmake/OptionsCommon.cmake:
1359 2015-05-01 Martin Robinson <mrobinson@igalia.com>
1361 USE(...) macro should expect unprefixed variables
1362 https://bugs.webkit.org/show_bug.cgi?id=144454
1364 Reviewed by Daniel Bates.
1366 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
1367 * Source/cmake/OptionsEfl.cmake: Ditto.
1368 * Source/cmake/OptionsGTK.cmake: Ditto.
1369 * Source/cmake/OptionsMac.cmake: Ditto.
1370 * Source/cmake/OptionsWinCairo.cmake: Ditto.
1371 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
1374 2015-04-30 Martin Robinson <mrobinson@igalia.com>
1376 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
1377 https://bugs.webkit.org/show_bug.cgi?id=144394
1379 Reviewed by Carlos Garcia Campos.
1381 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
1382 is that it fixes the redirected XComposite window for GTK+, which was accidentally
1383 disabled in previous reworking of the CMake configuration.
1385 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
1386 version of USE variables.
1387 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
1388 is exposed to the build.
1390 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
1392 Unreviewed. Bump GTK+ version numbers.
1394 * Source/cmake/OptionsGTK.cmake:
1396 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1398 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
1399 https://bugs.webkit.org/show_bug.cgi?id=144435
1401 Reviewed by Gyuyoung Kim.
1403 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
1404 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
1406 * Source/cmake/OptionsEfl.cmake:
1408 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
1410 REGRESSION(183583): [Mac] make without SDKROOT has issues
1411 https://bugs.webkit.org/show_bug.cgi?id=144431
1413 Reviewed by Dan Bernstein.
1416 Assume an empty SDKROOT means an macosx variant, so only
1417 enable settings if the SDKROOT is not empty and does not
1420 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1422 Fix the GTK+ build after r183584
1424 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
1426 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1428 [GTK] Add support for automatic hyphenation
1429 https://bugs.webkit.org/show_bug.cgi?id=44478
1431 Reviewed by Carlos Garcia Campos.
1433 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
1434 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
1435 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
1437 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
1439 Failure when building WebKit for appletvsimulator.
1440 https://bugs.webkit.org/show_bug.cgi?id=144356
1442 Reviewed by Alexey Proskuryakov.
1444 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
1445 make TVOS and WatchOS behave correctly.
1449 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1451 [CMake] [GTK] Organize and clean up unused CMake variables
1452 https://bugs.webkit.org/show_bug.cgi?id=144364
1454 Reviewed by Gyuyoung Kim.
1456 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
1457 specific to certain projects into their PlatformGTK.cmake files.
1459 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1461 [EFL] Build failure to find gio-unix
1462 https://bugs.webkit.org/show_bug.cgi?id=144083
1464 Reviewed by Gyuyoung Kim.
1466 Original patch by Doug Newgard <scimma22@outlook.com>
1468 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
1470 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
1472 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
1473 https://bugs.webkit.org/show_bug.cgi?id=143001
1475 Reviewed by Gyuyoung Kim.
1477 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
1478 * Source/cmake/OptionsGTK.cmake: Ditto.
1480 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1482 Unreviewed, fix typo in previous commit
1484 libsecretr -> libsecret in the error message.
1486 * Source/cmake/OptionsGTK.cmake:
1488 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1490 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
1491 https://bugs.webkit.org/show_bug.cgi?id=143546
1493 Reviewed by Martin Robinson.
1495 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
1496 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
1497 default. Fail the build with an informative error message if an optional dependency required
1498 for an enabled feature is not present. Perform find_package commands only when necessary.
1499 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
1502 * Source/cmake/OptionsGTK.cmake:
1504 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1506 [GTK] Make all options actually options
1507 https://bugs.webkit.org/show_bug.cgi?id=144106
1509 Reviewed by Martin Robinson.
1511 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
1512 ENABLE_WAYLAND_TARGET.
1514 * Source/cmake/OptionsGTK.cmake:
1516 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1518 Unreviewed, fix GTK build after r183452
1520 * Source/cmake/OptionsGTK.cmake:
1522 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1524 [GTK] Add one single option to control all OpenGL-related options
1525 https://bugs.webkit.org/show_bug.cgi?id=144105
1527 Reviewed by Martin Robinson.
1529 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
1530 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
1531 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
1532 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
1533 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
1534 presence of CairoGL.
1536 * Source/cmake/OptionsGTK.cmake:
1538 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1540 [GTK] ENABLE_SMOOTH_SCROLLING should be private
1541 https://bugs.webkit.org/show_bug.cgi?id=144306
1543 Reviewed by Martin Robinson.
1545 Make ENABLE_SMOOTH_SCROLLING private instead of public.
1547 * Source/cmake/OptionsGTK.cmake:
1549 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1551 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
1552 https://bugs.webkit.org/show_bug.cgi?id=144193
1554 Reviewed by Darin Adler.
1556 * Source/cmake/OptionsEfl.cmake:
1557 * Source/cmake/OptionsGTK.cmake:
1558 * Source/cmake/OptionsWinCairo.cmake:
1559 * Source/cmake/WebKitFeatures.cmake:
1561 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1563 [CMake] Should be possible for an option to conflict with other options
1564 https://bugs.webkit.org/show_bug.cgi?id=143956
1566 Reviewed by Martin Robinson.
1568 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
1570 * Source/cmake/WebKitFeatures.cmake:
1572 2015-04-22 Martin Robinson <mrobinson@igalia.com>
1574 [CMake] Autogenerate cmakeconfig.h.cmake
1575 https://bugs.webkit.org/show_bug.cgi?id=143997
1577 Reviewed by Csaba Osztrogonác.
1579 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
1580 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
1581 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
1582 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
1583 Do some other miscellaneous related cleanup.
1584 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
1585 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
1586 build exposed variables. Add a macro to generate a configuration from them.
1587 * Source/cmakeconfig.h.cmake: Removed.
1589 2015-04-24 Philippe Normand <pnormand@igalia.com>
1591 [JHBuild] Move to upstream OpenWebRTC
1592 https://bugs.webkit.org/show_bug.cgi?id=144145
1594 Reviewed by Carlos Garcia Campos.
1596 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
1599 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
1601 [ES6] Implement ES6 template literals
1602 https://bugs.webkit.org/show_bug.cgi?id=142691
1604 Reviewed by Darin Adler.
1606 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
1608 * Source/cmake/WebKitFeatures.cmake:
1609 * Source/cmakeconfig.h.cmake:
1611 2015-04-25 Martin Robinson <mrobinson@igalia.com>
1613 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
1614 https://bugs.webkit.org/show_bug.cgi?id=144182
1616 Reviewed by Simon Fraser.
1618 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1619 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1620 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1621 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1622 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1624 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1626 [GTK] Add more public options
1627 https://bugs.webkit.org/show_bug.cgi?id=144116
1629 Reviewed by Martin Robinson.
1631 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
1633 * Source/cmake/OptionsGTK.cmake:
1635 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1637 [CMake] Some internal variables are not marked as advanced
1638 https://bugs.webkit.org/show_bug.cgi?id=143595
1640 Reviewed by Martin Robinson.
1642 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
1643 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
1645 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1647 [GTK] Mark as advanced the build options we don't want to expose
1648 https://bugs.webkit.org/show_bug.cgi?id=143558
1650 Reviewed by Martin Robinson.
1652 Mark various options as private instead of public.
1654 * Source/cmake/OptionsGTK.cmake:
1656 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1658 [CMake] Should be possible for an option to depend on multiple options
1659 https://bugs.webkit.org/show_bug.cgi?id=143839
1661 Reviewed by Martin Robinson.
1663 Use a list instead of a single variable to track the dependencies of each option. Iterate
1664 over the list as many times as necessary to ensure all options are properly disabled.
1666 * Source/cmake/WebKitFeatures.cmake:
1668 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1670 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
1671 https://bugs.webkit.org/show_bug.cgi?id=144103
1673 Reviewed by Martin Robinson.
1675 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
1677 * Source/cmake/WebKitFeatures.cmake:
1679 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1681 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
1682 https://bugs.webkit.org/show_bug.cgi?id=144102
1684 Reviewed by Martin Robinson.
1686 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
1687 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
1688 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
1690 * Source/cmake/OptionsGTK.cmake:
1692 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1694 [CMake] Clean up JSC JIT options
1695 https://bugs.webkit.org/show_bug.cgi?id=143998
1697 Reviewed by Filip Pizlo.
1699 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
1700 define for ENABLE_FTL_NATIVE_CALL_INLINING.
1701 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
1702 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
1703 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
1704 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
1706 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1708 [CMake] Use lowercase for local variables in macros
1709 https://bugs.webkit.org/show_bug.cgi?id=144059
1711 Reviewed by Martin Robinson.
1713 Convert some variable names to lowercase.
1715 * Source/cmake/WebKitFeatures.cmake:
1717 2015-04-22 Commit Queue <commit-queue@webkit.org>
1719 Unreviewed, rolling out r183116.
1720 https://bugs.webkit.org/show_bug.cgi?id=144060
1722 Inadvertently deleted a file... (Requested by mcatanzaro on
1727 "[CMake] Use lowercase for local variables in macros"
1728 https://bugs.webkit.org/show_bug.cgi?id=144059
1729 http://trac.webkit.org/changeset/183116
1731 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1733 [CMake] Use lowercase for local variables in macros
1734 https://bugs.webkit.org/show_bug.cgi?id=144059
1736 Reviewed by Martin Robinson.
1738 Convert some variable names to lowercase.
1740 * Source/cmake/WebKitFeatures.cmake:
1742 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1744 [CMake] Features list should print dots every other row
1745 https://bugs.webkit.org/show_bug.cgi?id=143832
1747 Reviewed by Martin Robinson.
1749 Discount private options when determining whether to print dots on a given row of the
1750 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
1751 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
1752 wasn't noticed because it only affects the first line, and use of the variable name as a
1753 string in a conditional.)
1755 * Source/cmake/WebKitFeatures.cmake:
1757 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1759 [CMake] Require specifying visibility of WebKit options
1760 https://bugs.webkit.org/show_bug.cgi?id=143831
1762 Reviewed by Alex Christensen.
1764 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
1765 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
1766 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
1767 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
1768 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
1769 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
1770 cross-platform options as PRIVATE.
1772 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1774 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
1775 https://bugs.webkit.org/show_bug.cgi?id=143935
1777 Reviewed by Darin Adler.
1779 Some variables aren't defined in these files or unused variables aren't removed. This
1780 patch cleans up it as well as fix wrong alphabet order.
1782 * Source/cmake/WebKitFeatures.cmake:
1783 * Source/cmakeconfig.h.cmake:
1785 2015-04-19 Simon Fraser <simon.fraser@apple.com>
1787 Restore the WebKit.xcworkspace to the way it was before r182899,
1788 which inadvertently added the Source directory and a couple of source
1791 * WebKit.xcworkspace/contents.xcworkspacedata:
1793 2015-04-16 Basile Clement <basile_clement@apple.com>
1795 Extract the allocation profile from JSFunction into a rare object
1796 https://bugs.webkit.org/show_bug.cgi?id=143807
1798 Reviewed by Filip Pizlo.
1800 * WebKit.xcworkspace/contents.xcworkspacedata:
1802 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
1804 [EFL] Bump LLVM to version 3.6.0 on X86_64
1805 https://bugs.webkit.org/show_bug.cgi?id=143604
1807 Reviewed by Gyuyoung Kim.
1809 * Source/cmake/FindLLVM.cmake: Added version handling.
1810 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
1812 2015-04-15 Timothy Horton <timothy_horton@apple.com>
1814 Custom CSS cursors do not use -webkit-image-set on retina displays
1815 https://bugs.webkit.org/show_bug.cgi?id=120783
1817 Reviewed by Beth Dakin.
1818 Patch by Evan Wallace <evan.exe@gmail.com>.
1820 Add a manual test for custom CSS cursors on retina displays.
1822 * ManualTests/retina-cursors.html: Added.
1824 2015-04-15 Alex Christensen <achristensen@webkit.org>
1826 Progress towards CMake on Mac.
1827 https://bugs.webkit.org/show_bug.cgi?id=143785
1829 Reviewed by Csaba Osztrogonác.
1832 * Source/cmake/OptionsMac.cmake:
1833 * Source/cmake/WebKitFS.cmake:
1835 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
1837 Cannot click "Next" button on Google two-factor auth setup page
1839 <https://bugs.webkit.org/show_bug.cgi?id=143624>
1840 <rdar://problem/19175714>
1842 Reviewed by Darin Adler.
1844 * ManualTests/button-that-focuses-itself-on-click.html: Added.
1846 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
1848 [cmake] REGRESSION(182663): It broke feature dependency handling
1849 https://bugs.webkit.org/show_bug.cgi?id=143665
1851 Reviewed by Csaba Osztrogonác.
1853 Don't try to check the value of options before defining the options.
1855 * Source/cmake/WebKitFeatures.cmake:
1857 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
1859 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
1860 https://bugs.webkit.org/show_bug.cgi?id=143664
1862 Reviewed by Gyuyoung Kim.
1864 * Source/cmake/OptionsEfl.cmake:
1865 * Source/cmake/OptionsGTK.cmake:
1866 * Source/cmake/WebKitFeatures.cmake:
1867 * Source/cmakeconfig.h.cmake:
1869 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1871 [EFL] Enable Media Source
1872 https://bugs.webkit.org/show_bug.cgi?id=143635
1874 Reviewed by Csaba Osztrogonác.
1876 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
1878 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1880 [CMake] Miscellaneous issues in WebKitFeatures.cmake
1881 https://bugs.webkit.org/show_bug.cgi?id=143636
1883 Reviewed by Martin Robinson.
1885 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
1886 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
1888 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
1889 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
1891 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
1893 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
1895 Fix ENABLE_TOUCH_SLIDER so that it can be used
1899 * Source/cmake/WebKitFeatures.cmake:
1901 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1903 [CMake] Print sorted feature list at the very end of the configure process
1904 https://bugs.webkit.org/show_bug.cgi?id=143596
1906 Reviewed by Martin Robinson.
1908 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
1909 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
1910 and sort the options before printing. Reorder some code so that features still get
1911 propagated to the bindings generators.
1913 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1915 [CMake] Options should be marked as advanced by default
1916 https://bugs.webkit.org/show_bug.cgi?id=143572
1918 Reviewed by Gyuyoung Kim.
1920 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
1921 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
1922 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
1923 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
1924 option without making it public.
1926 * Source/cmake/WebKitFeatures.cmake:
1928 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1930 [CMake] Remove unnecessary ENABLE_WEBCORE switch
1931 https://bugs.webkit.org/show_bug.cgi?id=143584
1933 Reviewed by Csaba Osztrogonác.
1935 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
1939 * Source/CMakeLists.txt:
1940 * Source/cmake/OptionsGTK.cmake:
1941 * Source/cmake/WebKitFS.cmake:
1943 2015-04-08 Filip Pizlo <fpizlo@apple.com>
1945 Unreviewed, revert accidental commit.
1949 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
1951 Add CMake build system for WinCairo port.
1952 https://bugs.webkit.org/show_bug.cgi?id=115944
1954 Reviewed by Chris Dumez.
1956 * Source/cmake/OptionsWindows.cmake:
1957 * Source/cmake/WebKitMacros.cmake:
1958 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1960 2015-04-06 Alberto Garcia <berto@igalia.com>
1962 [GTK] Fix HPPA build
1963 https://bugs.webkit.org/show_bug.cgi?id=143453
1965 Reviewed by Darin Adler.
1967 Add HPPA to the list of supported CPUs.
1971 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
1973 Unreviewed, kick the GTK bots to fix an incremental build issue.
1975 * Source/cmake/OptionsGTK.cmake:
1977 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
1979 Fix the EFL and GTK build after r182243
1980 https://bugs.webkit.org/show_bug.cgi?id=143361
1982 Reviewed by Csaba Osztrogonác.
1984 * Source/PlatformEfl.cmake: Add a custom command that copies
1985 the InspectorBackendCommands.js file into the proper directory
1986 under DerivedSources/WebInspectorUI/.
1988 2015-04-01 Alex Christensen <achristensen@webkit.org>
1990 Progress towards CMake on Windows and Mac.
1991 https://bugs.webkit.org/show_bug.cgi?id=143293
1993 Reviewed by Filip Pizlo.
1996 Set DERIVED_SOURCES_WTF_DIR for Windows.
1997 * Source/CMakeLists.txt:
1998 Don't compile bmalloc on Windows.
1999 * Source/cmake/OptionsCommon.cmake:
2000 Use the absolute path of the C preprocessor.
2001 * Source/cmake/OptionsWinCairo.cmake:
2002 Added needed definitions.
2003 * Source/cmake/OptionsWindows.cmake:
2004 Set some default values and removed support for old Visual Studio versions before /MP.
2005 * Source/cmake/WebKitFS.cmake:
2006 Make WTF DerivedSources directory.
2007 * Source/cmake/WebKitMacros.cmake:
2008 Added ADD_PRECOMPILED_HEADER macro based on
2009 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2011 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
2013 Use colored diagnostics when building with cmake + ninja + clang
2014 https://bugs.webkit.org/show_bug.cgi?id=143297
2016 Reviewed by Žan Doberšek.
2018 Because that ninja sets subprocess stdout/stderr to a pipe, clang
2019 disables colored output.
2020 This patch forces clang to use colored diagnostics when we are using
2023 * Source/cmake/OptionsCommon.cmake:
2025 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2027 [CMake] Update old CMakeList.txt in gtest
2028 https://bugs.webkit.org/show_bug.cgi?id=143192
2030 Reviewed by Darin Adler.
2032 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
2033 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
2034 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
2036 * Source/CMakeLists.txt:
2037 * Source/cmake/gtest/CMakeLists.txt: Removed.
2039 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2041 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
2042 https://bugs.webkit.org/show_bug.cgi?id=143138
2044 Reviewed by Csaba Osztrogonác.
2046 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
2047 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
2049 * Source/cmake/OptionsWindows.cmake:
2050 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
2051 * Source/cmake/WebKitMacros.cmake:
2053 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2055 [GStreamer] share GL context in pipeline, part 2
2056 https://bugs.webkit.org/show_bug.cgi?id=143049
2058 Reviewed by Carlos Garcia Campos.
2060 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
2061 OpenGL/ES2 is found and GLX/EGL is found too.
2063 2015-03-26 Alex Christensen <achristensen@webkit.org>
2065 Progress towards CMake on Mac.
2066 https://bugs.webkit.org/show_bug.cgi?id=143112
2068 Reviewed by Chris Dumez.
2070 * Source/cmake/OptionsMac.cmake:
2072 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
2074 [EFL] Add OpenWebRTC in jhbuild
2075 https://bugs.webkit.org/show_bug.cgi?id=142778
2077 Reviewed by Gyuyoung Kim.
2079 Original patch by Philippe Normand <pnormand@igalia.com>
2081 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
2082 mediastream build is enabled.
2084 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
2086 [GTK] Add a configure option to build without Redirected XComposite Window
2087 https://bugs.webkit.org/show_bug.cgi?id=142865
2089 Reviewed by Žan Doberšek.
2091 The Redirected XComposite Window was added to support some
2092 features like GtkOverlay, but in cases where we don't need such
2093 features, it's more efficient to use the XID of the WebKitWebView
2094 window as the native surface handle for the accelerated
2095 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
2096 that is enabled by default for X11 target when OpenGL is enabled.
2098 * Source/cmake/OptionsGTK.cmake:
2100 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
2102 [GTK] Search for the Wayland dependency when enabling Wayland target
2103 https://bugs.webkit.org/show_bug.cgi?id=142876
2105 Reviewed by Carlos Garcia Campos.
2107 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
2108 requirement of either the GTK+ or GDK pkg-config files, so we have to
2109 search for it ourselves when WebKitGTK+ has been configured to support
2110 the Wayland windowing target.
2112 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2114 Unreviewed, kick the GTK bots to regenerate makefile.
2115 https://bugs.webkit.org/show_bug.cgi?id=137394
2117 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
2118 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
2120 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2122 Unreviewed, kick the GTK bots to regenerate makefile.
2123 https://bugs.webkit.org/show_bug.cgi?id=137394
2125 * Source/cmake/OptionsEfl.cmake:
2127 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
2129 [GTK] Fix inspector userinterface related incremental build issue
2130 https://bugs.webkit.org/show_bug.cgi?id=142849
2132 Reviewed by Carlos Garcia Campos.
2134 * Source/cmake/OptionsGTK.cmake: Revert r181733.
2136 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
2138 Unreviewed, kick the GTK bots to regenerate makefile.
2140 * Source/cmake/OptionsGTK.cmake:
2142 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
2144 [EFL] Expose JavaScript binding interface through ewk_extension
2145 https://bugs.webkit.org/show_bug.cgi?id=142033
2147 Reviewed by Gyuyoung Kim.
2149 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
2151 2015-03-17 Philippe Normand <pnormand@igalia.com>
2153 [GTK] basic OpenWebRTC build support
2154 https://bugs.webkit.org/show_bug.cgi?id=142393
2156 Reviewed by Carlos Garcia Campos.
2158 * Source/cmake/FindOpenWebRTC.cmake: Added.
2159 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
2160 mediastream build is enabled.
2162 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2164 [CMake][EFL] Build test tools only for developer mode
2165 https://bugs.webkit.org/show_bug.cgi?id=142761
2167 Reviewed by Csaba Osztrogonác.
2169 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
2171 * Source/cmake/OptionsEfl.cmake:
2172 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
2173 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
2174 * Source/cmakeconfig.h.cmake:
2176 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
2178 Enable ES6 classes by default
2179 https://bugs.webkit.org/show_bug.cgi?id=142774
2181 Reviewed by Gavin Barraclough.
2183 * Source/cmake/WebKitFeatures.cmake:
2185 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2187 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
2188 https://bugs.webkit.org/show_bug.cgi?id=142722
2190 Reviewed by Csaba Osztrogonác.
2192 Categorize to define cmake variables, to find necessary packages,
2193 use upper case for "glib_conponents" cmake variable name, re-arrange
2194 wrong alphabet sorting, and so on.
2196 * CMakeLists.txt: Remove WinCE port.
2197 * Source/cmake/OptionsEfl.cmake:
2199 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2201 [GStreamer] share GL context in pipeline
2202 https://bugs.webkit.org/show_bug.cgi?id=142693
2204 Reviewed by Philippe Normand.
2206 Add search of gstreamer-gl library in the GStreamer installation. If
2207 it is found, WTF_USE_GSTREAMER_GL macro is defined.
2209 * Source/cmake/FindGStreamer.cmake:
2210 * Source/cmake/OptionsGTK.cmake:
2212 2015-03-13 Alex Christensen <achristensen@webkit.org>
2214 Progress towards CMake on Mac.
2215 https://bugs.webkit.org/show_bug.cgi?id=142680
2217 Reviewed by Gyuyoung Kim.
2220 * Source/PlatformMac.cmake: Added stub.
2221 * Source/cmake/OptionsMac.cmake:
2222 Change defines to get CMake working.
2224 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2226 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
2227 https://bugs.webkit.org/show_bug.cgi?id=126688
2229 Reviewed by Gustavo Noronha Silva.
2231 Add ENABLE_MINIBROWSER option, enabled by default for development
2232 builds and disabled for production builds unless explicilty enabled.
2234 * Source/cmake/OptionsGTK.cmake:
2236 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2238 [GTK] Do not look for child processes in the UI process binary path
2239 https://bugs.webkit.org/show_bug.cgi?id=135752
2241 Reviewed by Gustavo Noronha Silva.
2243 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
2244 build for development builds.
2246 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
2248 [GTK] Add a configure option to build with OpenGL ES 2
2249 https://bugs.webkit.org/show_bug.cgi?id=142498
2251 Reviewed by Martin Robinson.
2253 Add ENABLE_GLES2 option. It's disabled by default, but if passed
2254 GLES2 is required and OpenGL is not even searched. Otherwise we
2255 search for OpenGL as usual, using it only if present.
2257 * Source/cmake/OptionsGTK.cmake:
2259 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
2261 [cmake] Handle unused parameter warnings as build errors except in WebKit2
2262 https://bugs.webkit.org/show_bug.cgi?id=142338
2264 Reviewed by Gyuyoung Kim.
2266 * Source/cmake/WebKitHelpers.cmake:
2268 2015-03-03 Daniel Bates <dabates@apple.com>
2270 Convert ManualTests/svg-tooltip.svg to a DRT test
2271 https://bugs.webkit.org/show_bug.cgi?id=140480
2273 Reviewed by Alex Christensen.
2275 * ManualTests/svg-tooltip.svg: Removed.
2277 2015-03-02 Debarshi Ray <debarshir@gnome.org>
2279 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
2280 https://bugs.webkit.org/show_bug.cgi?id=142165
2282 Reviewed by Carlos Garcia Campos.
2284 * Source/cmake/gtksymbols.filter:
2286 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
2288 [EFL] Remove unnecessary comment after r179110
2289 https://bugs.webkit.org/show_bug.cgi?id=142042
2291 Reviewed by Gyuyoung Kim.
2293 * Source/cmake/OptionsEfl.cmake:
2295 2015-02-23 Tomas Popela <tpopela@redhat.com>
2297 [GTK] Fails to compile with cmake 3.2.x
2298 https://bugs.webkit.org/show_bug.cgi?id=141796
2300 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
2301 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
2302 added and the build will fail.
2304 Reviewed by Martin Robinson.
2306 * Source/cmake/OptionsGTK.cmake:
2308 2015-02-20 Alexey Proskuryakov <ap@apple.com>
2310 Remove svn:keywords property.
2312 As far as I can tell, the property had no effect on any of these files, but also,
2313 when it has effect it's likely harmful.
2315 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
2316 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
2317 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
2318 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
2319 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
2320 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
2321 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
2322 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
2323 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
2324 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
2325 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
2326 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
2327 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
2328 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
2330 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2332 [CMAKE] Remove CMakeLists.txt in WK1 port
2333 https://bugs.webkit.org/show_bug.cgi?id=141617
2335 Reviewed by Anders Carlsson.
2337 Nobody uses CMake in WK1 port. Remove it.
2341 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
2343 Unreviewed, remove empty directories.
2345 * ManualTests/qt: Removed.
2347 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
2349 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
2350 https://bugs.webkit.org/show_bug.cgi?id=141481
2352 Reviewed by Csaba Osztrogonác.
2354 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
2356 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2358 [EFL][GTK] Use bmalloc instead of tcmalloc
2359 https://bugs.webkit.org/show_bug.cgi?id=140162
2361 Reviewed by Carlos Garcia Campos.
2363 Add bmalloc directory to build list.
2365 * CMakeLists.txt: Define BMALLOC_DIR directory.
2366 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
2368 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
2370 [GTK] Add default color chooser implementation using GtkColorChooserDialog
2371 https://bugs.webkit.org/show_bug.cgi?id=141392
2373 Reviewed by Gustavo Noronha Silva.
2375 Enable INPUT_TYPE_COLOR by default for GTK+ port.
2377 * Source/cmake/OptionsGTK.cmake:
2379 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
2381 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
2382 https://bugs.webkit.org/show_bug.cgi?id=141328
2384 Reviewed by Darin Adler.
2386 Added as manual test because it involves a huge grid allocation
2387 which is very slow on Debug bots, the only ones capable to trigger
2390 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
2392 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
2394 [Streams API] Implement a barebone ReadableStream interface
2395 https://bugs.webkit.org/show_bug.cgi?id=141045
2397 Reviewed by Benjamin Poulain.
2399 * Source/cmake/WebKitFeatures.cmake:
2400 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
2402 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2404 Revert accidental change in r179490.
2408 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2410 Unreviewed, revert accidental change to Makefile.shared in r179478
2414 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
2416 [CMake] Minimum python version should be 2.7.
2417 https://bugs.webkit.org/show_bug.cgi?id=140997
2419 Reviewed by Csaba Osztrogonác.
2423 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
2425 Apply feTurbulence spec change to fix zero length vector generation
2426 https://bugs.webkit.org/show_bug.cgi?id=140812
2428 Reviewed by Darin Adler.
2430 Recently a bug with the turbulence algorithm was corrected in the
2431 Filter Effects specification.
2432 For some seed values this bug allowed zero length vectors to be generated.
2433 This resulted in large solid color squares being present in the generated image.
2434 The feTurbulence algorithm was updated to reject zero length vectors. This patch
2435 applies that change in WebCore.
2437 Test: svg/filters/feTurbulence_bad_seeds.html
2439 * platform/graphics/filters/FETurbulence.cpp:
2440 (WebCore::FETurbulence::initPaint):
2441 Added rejection sampling during vector generation to avoid zero length vectors.
2443 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2445 [cmake] Remove compiler version calculate cruft
2446 https://bugs.webkit.org/show_bug.cgi?id=140885
2448 Reviewed by Darin Adler.
2450 * Source/cmake/WebKitHelpers.cmake:
2452 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2454 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
2455 https://bugs.webkit.org/show_bug.cgi?id=140886
2457 Reviewed by Žan Doberšek.
2459 * Source/cmake/WebKitHelpers.cmake:
2461 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
2463 [GTK] gtkdoc does not appear in DevHelp
2464 https://bugs.webkit.org/show_bug.cgi?id=139369
2466 Reviewed by Philippe Normand.
2468 Expect the gtkdoc to be generated in folders named with the API version.
2470 * Source/PlatformGTK.cmake:
2472 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
2474 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
2475 https://bugs.webkit.org/show_bug.cgi?id=140609
2477 Reviewed by Csaba Osztrogonác.
2479 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
2480 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
2481 compilation flags. Those were added after the jsCStack branch merge, but
2482 can now be removed since the -ftree-dce issues were fixed in GCC, and
2483 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
2485 * Source/cmake/OptionsEfl.cmake:
2486 * Source/cmake/OptionsGTK.cmake:
2488 2015-01-26 Commit Queue <commit-queue@webkit.org>
2490 Unreviewed, rolling out r179107.
2491 https://bugs.webkit.org/show_bug.cgi?id=140880
2493 The GCC in the bots doesn't support the AsyncTask
2494 implementation (Requested by KaL on #webkit).
2498 "[GTK] Enable IndexedDB"
2499 https://bugs.webkit.org/show_bug.cgi?id=98932
2500 http://trac.webkit.org/changeset/179107
2502 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
2504 [GTK] Enable IndexedDB
2505 https://bugs.webkit.org/show_bug.cgi?id=98932
2507 Reviewed by Žan Doberšek.
2509 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
2510 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
2512 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
2514 [GTK] Add initial database process support
2515 https://bugs.webkit.org/show_bug.cgi?id=139491
2517 Reviewed by Sergio Villar Senin.
2519 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
2521 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
2523 Add a build flag for ES6 class syntax
2524 https://bugs.webkit.org/show_bug.cgi?id=140760
2526 Reviewed by Michael Saboff.
2528 * Source/cmake/WebKitFeatures.cmake:
2529 * Source/cmakeconfig.h.cmake:
2531 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2533 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
2534 https://bugs.webkit.org/show_bug.cgi?id=140049
2536 Reviewed by Gyuyoung Kim.
2538 * Source/cmake/OptionsCommon.cmake:
2540 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2542 Remove ENABLE(INSPECTOR) ifdef guards
2543 https://bugs.webkit.org/show_bug.cgi?id=140668
2545 Reviewed by Darin Adler.
2547 * Source/PlatformEfl.cmake:
2548 * Source/cmake/OptionsEfl.cmake:
2549 * Source/cmake/OptionsGTK.cmake:
2550 * Source/cmake/OptionsMac.cmake:
2551 * Source/cmake/WebKitFeatures.cmake:
2552 * Source/cmakeconfig.h.cmake:
2554 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
2556 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
2558 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2560 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2562 [CMAKE] Fix cmake warning
2563 https://bugs.webkit.org/show_bug.cgi?id=140497
2565 Reviewed by Gustavo Noronha Silva.
2567 r173155 already tried to fix cmake warning though, the warning is still exist.
2568 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
2569 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
2570 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
2571 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
2572 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
2576 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
2578 [GTK] Generate the make dist manifest from a CMake template file
2579 https://bugs.webkit.org/show_bug.cgi?id=139387
2581 Reviewed by Martin Robinson.
2583 Generate manifest.txt from manifest.txt.in. Only expose the dist and
2584 distcheck targets for developer builds, as they won't work when
2585 building from a tarball because the manifest is not distributed.
2587 * Source/PlatformGTK.cmake:
2589 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
2591 Remove ENABLE(SQL_DATABASE) guards
2592 https://bugs.webkit.org/show_bug.cgi?id=140434
2594 Reviewed by Darin Adler.
2596 * Source/cmake/OptionsMac.cmake:
2597 * Source/cmake/WebKitFeatures.cmake:
2598 * Source/cmakeconfig.h.cmake:
2600 2015-01-11 Sam Weinig <sam@webkit.org>
2602 Remove support for SharedWorkers
2603 https://bugs.webkit.org/show_bug.cgi?id=140344
2605 Reviewed by Anders Carlsson.
2607 * Source/cmake/OptionsEfl.cmake:
2608 * Source/cmake/OptionsGTK.cmake:
2609 * Source/cmake/OptionsMac.cmake:
2610 * Source/cmake/WebKitFeatures.cmake:
2611 * Source/cmakeconfig.h.cmake:
2613 2015-01-10 Dan Bernstein <mitz@apple.com>
2615 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
2616 https://bugs.webkit.org/show_bug.cgi?id=140339
2618 Reviewed by Mark Rowe.
2620 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
2621 prevents unnecessary rebuilding due to PATH differences.
2623 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
2625 [GTK][ThreadedCompositor] Add support for threaded compositor.
2626 https://bugs.webkit.org/show_bug.cgi?id=118265
2628 Reviewed by Martin Robinson.
2630 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
2631 autotools build systems. The feature is disabled by default.
2632 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
2633 from the feature flags.
2635 * Source/cmake/OptionsEfl.cmake:
2636 * Source/cmake/OptionsGTK.cmake:
2637 * Source/cmake/WebKitFeatures.cmake:
2638 * Source/cmakeconfig.h.cmake:
2640 2014-12-23 Alexey Proskuryakov <ap@apple.com>
2642 Simplify building with ASan
2643 https://bugs.webkit.org/show_bug.cgi?id=139916
2645 Reviewed by Mark Rowe.
2647 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
2649 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
2651 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
2653 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2655 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
2657 Null dereference performing a "TapAndAHalf" gesture in Google search field
2659 <https://bugs.webkit.org/show_bug.cgi?id=139506>
2660 <rdar://problem/19028828>
2662 Reviewed by Darin Adler.
2664 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
2666 2014-12-10 Dean Jackson <dino@apple.com>
2668 Blur filter performance test doesn't provide results
2669 https://bugs.webkit.org/show_bug.cgi?id=139462
2671 Reviewed by Sam Weinig.
2673 This can't currently work under our performance test
2674 infrastructure. Move it to a manual test to avoid
2675 putting FAILures into the results.
2677 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
2679 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2681 [GTK][WK2] Add HTML5 Notifications support
2682 https://bugs.webkit.org/show_bug.cgi?id=61140
2684 Reviewed by Carlos Garcia Campos.
2686 * Source/cmake/FindLibNotify.cmake: Added.
2687 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
2688 libnotify and use it for a default implementation when found.
2690 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
2692 REGRESSION(r155906): Page content disappears on Tuaw article after loading
2693 https://bugs.webkit.org/show_bug.cgi?id=138100
2695 Reviewed by Simon Fraser.
2697 DRT causes an extra paint which makes it impossible to test this with
2700 * ManualTests/float-layer-not-painting.html: Added.
2702 2014-12-07 Alberto Garcia <berto@igalia.com>
2704 [GTK] WebKit has a new required dependency on GnuTLS
2705 https://bugs.webkit.org/show_bug.cgi?id=136158
2707 Reviewed by Martin Robinson.
2709 Detect if GnuTLS is installed and enable or disable subtle crypto
2710 support accordingly.
2712 * Source/cmake/OptionsGTK.cmake:
2714 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
2716 [GTK] Missing API detected in GObject DOM bindings after r176630
2717 https://bugs.webkit.org/show_bug.cgi?id=139201
2719 Reviewed by Gustavo Noronha Silva.
2721 Change GENERATE_BINDINGS macro to receive a list of optional
2722 additional dependencies, so that we can add more dependecies
2723 without having to change the macro.
2725 * Source/cmake/WebKitMacros.cmake:
2727 2014-12-05 Simon Fraser <simon.fraser@apple.com>
2729 Programmatic scrolling and content changes are not always synchronized
2730 https://bugs.webkit.org/show_bug.cgi?id=139245
2731 rdar://problem/18833612
2733 Reviewed by Anders Carlsson.
2735 Manual test that tries to sync layout with programmatic scrolling.
2737 * ManualTests/programmatic-scroll-flicker.html: Added.
2739 2014-12-04 Alberto Garcia <berto@igalia.com>
2741 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
2742 https://bugs.webkit.org/show_bug.cgi?id=136576
2744 Reviewed by Carlos Garcia Campos.
2746 CMake should complain if Accelerated 2D Canvas is explicitly
2747 enabled but cairo-gl is not found.
2749 * Source/cmake/OptionsGTK.cmake:
2751 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2753 [EFL] Add subtle crypto to the build system
2754 https://bugs.webkit.org/show_bug.cgi?id=138612
2756 Reviewed by Csaba Osztrogonác.
2758 * Source/cmake/OptionsEfl.cmake:
2760 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2762 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
2763 https://bugs.webkit.org/show_bug.cgi?id=139085
2765 Reviewed by Andreas Kling.
2767 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
2768 * Source/cmake/WebKitFeatures.cmake: ditto.
2769 * Source/cmakeconfig.h.cmake: ditto.
2771 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
2773 [EFL] Drop support for the EFL 1.7
2774 https://bugs.webkit.org/show_bug.cgi?id=139114
2776 Reviewed by Gyuyoung Kim.
2778 * Source/cmake/EFLHelpers.cmake: Removed.
2779 * Source/cmake/FindEcore.cmake: Removed.
2780 * Source/cmake/FindEdje.cmake: Removed.
2781 * Source/cmake/FindEet.cmake: Removed.
2782 * Source/cmake/FindEeze.cmake: Removed.
2783 * Source/cmake/FindEfreet.cmake: Removed.
2784 * Source/cmake/FindEina.cmake: Removed.
2785 * Source/cmake/FindElementary.cmake: Removed.
2786 * Source/cmake/FindEvas.cmake: Removed.
2787 * Source/cmake/OptionsEfl.cmake:
2789 2014-11-28 Philippe Normand <pnormand@igalia.com>
2791 [CMake] Build failure against GStreamer git master
2792 https://bugs.webkit.org/show_bug.cgi?id=138872
2794 Reviewed by Csaba Osztrogon.
2796 * Source/cmake/FindGStreamer.cmake: Simplified the
2797 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
2798 headers lookup, there's no need to do this manually. Also
2799 explicitely check the version specified in GStreamer_FIND_VERSION.
2801 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
2803 [EFL] Remove E_Dbus dependency
2804 https://bugs.webkit.org/show_bug.cgi?id=136355
2806 Reviewed by Gyuyoung Kim.
2808 * Source/cmake/FindE_DBus.cmake: Removed.
2809 * Source/cmake/OptionsEfl.cmake:
2811 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
2813 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2815 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2817 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
2819 [CMake] Use ld.gold if it is available to speedup builds
2820 https://bugs.webkit.org/show_bug.cgi?id=137953
2822 Reviewed by Carlos Garcia Campos.
2824 * Source/cmake/OptionsCommon.cmake:
2826 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
2828 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
2829 https://bugs.webkit.org/show_bug.cgi?id=138840
2831 Reviewed by Csaba Osztrogonác.
2833 * Source/cmake/OptionsCommon.cmake:
2835 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
2837 Remove Source/Platform cruft
2838 https://bugs.webkit.org/show_bug.cgi?id=138658
2840 Reviewed by Anders Carlsson.
2843 * Source/Platform: Removed.
2845 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
2847 Enable Cortex-A53-specific code paths by default if core is detected.
2848 https://bugs.webkit.org/show_bug.cgi?id=138499
2850 Reviewed by Csaba Osztrogonác.
2852 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
2853 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
2856 Since on ARM64/Linux the part number that cpuinfo reports depends on
2857 the core the query is run on, the check is bound to and executed on the
2858 available cores one by one.
2860 * Source/cmake/OptionsCommon.cmake:
2862 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2864 [EFL] Remove unnecessary version check from OptionsEfl.cmake
2865 https://bugs.webkit.org/show_bug.cgi?id=138498
2867 Reviewed by Csaba Osztrogonác.
2869 * Source/cmake/OptionsEfl.cmake:
2871 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2873 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
2874 https://bugs.webkit.org/show_bug.cgi?id=138465
2876 Reviewed by Gyuyoung Kim.
2878 * Source/cmake/OptionsEfl.cmake:
2880 2014-11-03 Dean Jackson <dino@apple.com>
2882 Add ENABLE_FILTERS_LEVEL_2 feature guard.
2883 https://bugs.webkit.org/show_bug.cgi?id=138362
2885 Reviewed by Tim Horton.
2887 Add a new feature define for Level 2 of CSS Filters.
2888 http://dev.w3.org/fxtf/filters-2/
2890 * Source/cmake/OptionsEfl.cmake:
2891 * Source/cmake/OptionsGTK.cmake:
2892 * Source/cmake/OptionsMac.cmake:
2893 * Source/cmake/WebKitFeatures.cmake:
2894 * Source/cmakeconfig.h.cmake:
2896 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
2898 Workaround for Cortex-A53 erratum 835769
2899 https://bugs.webkit.org/show_bug.cgi?id=138315
2901 Reviewed by Filip Pizlo.
2903 This patch introduces CMake variable and preprocessor macro
2904 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
2905 code paths, if set true.
2907 * Source/cmake/OptionsCommon.cmake:
2908 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
2910 * Source/cmakeconfig.h.cmake:
2911 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
2913 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
2915 [GTK] Fix the build of FTL JIT
2916 https://bugs.webkit.org/show_bug.cgi?id=138298
2918 Reviewed by Carlos Garcia Campos.
2920 * Source/cmake/OptionsGTK.cmake:
2921 Remove the need for the LIBCXXABI package.
2923 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
2925 REGRESSION(CMake): Make it possible to build without introspection
2926 https://bugs.webkit.org/show_bug.cgi?id=138006
2928 Reviewed by Philippe Normand.
2930 Add ENABLE_INTROSPECTION option.
2932 * Source/PlatformGTK.cmake: Dot not add gir global target if
2933 introspection is disabled.
2934 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
2935 introspection is disabled.
2937 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
2939 [GTK] Support script message handlers WebKitUserContentManager
2940 https://bugs.webkit.org/show_bug.cgi?id=133730
2942 Reviewed by Carlos Garcia Campos.
2944 Support user script message handlers in WebKitUserContentManager.
2945 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
2946 an option is added to the CMake build files. The option is disabled
2947 globally by default, and the WebKitGTK port enables it. On the API
2948 level, two new methods to register and unregister names are provided
2949 in the "window.webkit" namespace, and on message reception the
2950 "WebKitUserContentManager::script-message-received" signal is
2951 emitted, using the registered names as signal detail.
2953 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
2954 ENABLE_USER_MESSAGE_HANDLERS feature by default.
2955 * Source/cmake/WebKitFeatures.cmake: Add feature description for
2956 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
2958 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
2960 [GTK] Bump libsoup's minimum version to 2.42.0.
2961 https://bugs.webkit.org/show_bug.cgi?id=138086
2963 Reviewed by Martin Robinson.
2965 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
2966 soup-version.h header was added to soup.h in 2.41.4, which then becomes
2967 the minimum version required to build the port these days.
2969 In addition, since the autotools build system required 2.42.0 before
2970 being retired, require the same version here. Version 2.42.0 was also
2972 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
2974 * Source/cmake/OptionsGTK.cmake:
2976 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2978 [EFL] Remove unnecessary defines from OptionsEfl.cmake
2979 https://bugs.webkit.org/show_bug.cgi?id=138132
2981 Reviewed by Csaba Osztrogonác.
2983 * Source/cmake/OptionsEfl.cmake:
2985 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
2987 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2989 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2991 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
2993 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
2994 https://bugs.webkit.org/show_bug.cgi?id=137946
2996 Reviewed by Gyuyoung Kim.
2998 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
3000 * Source/cmake/OptionsEfl.cmake:
3002 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3004 Fix FTL Native Inlining for EFL
3005 https://bugs.webkit.org/show_bug.cgi?id=137774
3007 Reviewed by Michael Saboff.
3009 Updated CMake for FTL Native Inlining.
3012 * Source/cmake/FindClang.cmake: Added.
3013 * Source/cmake/OptionsEfl.cmake:
3014 * Source/cmakeconfig.h.cmake:
3016 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
3018 Web Inspector: Generate all Inspector domains together in JavaScriptCore
3019 https://bugs.webkit.org/show_bug.cgi?id=137748
3021 Reviewed by Brian Burg.
3023 * Source/PlatformEfl.cmake:
3025 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
3027 [GTK] Add initial gestures support
3028 https://bugs.webkit.org/show_bug.cgi?id=137812
3030 Reviewed by Sergio Villar Senin.
3032 Check if the GTK+ version supports gestures or not.
3034 * Source/cmake/FindGTK3.cmake:
3035 * Source/cmake/OptionsGTK.cmake:
3037 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
3039 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
3040 https://bugs.webkit.org/show_bug.cgi?id=137781
3042 Reviewed by Martin Robinson.
3044 We used to enable smooth scrolling unconditionally in autotools
3045 (via WebKitFeatures.m4), but since the switch to CMake it's
3046 unconditionally disabled, so changing the setting doesn't have any
3049 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
3051 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
3053 Removing CUSTOM_PROTOCOLS guard
3054 https://bugs.webkit.org/show_bug.cgi?id=137741
3056 Reviewed by Benjamin Poulain.
3058 * Source/cmake/OptionsEfl.cmake:
3060 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
3062 [EFL] Enable WebP support.
3063 https://bugs.webkit.org/show_bug.cgi?id=136156
3065 Reviewed by Gyuyoung Kim.
3067 Add WebP package finding rule.
3069 * Source/cmake/OptionsEfl.cmake:
3071 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
3073 [EFL] Enable custom URI schemes with CustomProtocols
3074 https://bugs.webkit.org/show_bug.cgi?id=128177
3076 Reviewed by Gyuyoung Kim.
3078 Fixing ewk_context_url_scheme_register() ewebkit2 API
3079 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
3081 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
3083 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
3085 Bump version to 2.7.0
3086 https://bugs.webkit.org/show_bug.cgi?id=137301
3088 Rubber-stamped by Carlos Garcia Campos.
3090 * Source/cmake/OptionsGTK.cmake: Bump version numbers
3092 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3094 [EFL] Rename TEST_THEME_DIR macro
3095 https://bugs.webkit.org/show_bug.cgi?id=137244
3097 Reviewed by Csaba Osztrogonác.
3099 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
3101 2014-09-27 Dan Bernstein <mitz@apple.com>
3103 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
3104 https://bugs.webkit.org/show_bug.cgi?id=137053
3106 Reviewed by Mark Rowe.
3108 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3109 In the build pre-action, pass the --wksi and --llvm options to
3110 copy-webkitlibraries-to-product-directory.
3111 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
3113 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
3115 [GTK] Enable CSS_IMAGE_SET in production builds
3116 https://bugs.webkit.org/show_bug.cgi?id=137142
3118 Reviewed by Alejandro G. Castro.
3120 This is required by the inspector to show some of the icons that
3121 has a HiDPI variant.
3123 * Source/cmake/OptionsGTK.cmake:
3125 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
3127 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
3128 https://bugs.webkit.org/show_bug.cgi?id=136377
3130 Reviewed by Philippe Normand.
3132 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
3133 for CMake versions less than 3.
3135 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
3137 Remove WinCE port from trunk
3138 https://bugs.webkit.org/show_bug.cgi?id=136951
3140 Reviewed by Alex Christensen.
3142 * Source/cmake/OptionsWinCE.cmake: Removed.
3143 * Source/cmake/WebKitPackaging.cmake:
3145 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
3147 [EFL][GTK] Remove WebKit1 related codes
3148 https://bugs.webkit.org/show_bug.cgi?id=136853
3150 Reviewed by Csaba Osztrogonác.
3152 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
3155 * Source/PlatformGTK.cmake:
3157 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3160 https://bugs.webkit.org/show_bug.cgi?id=136820
3162 Reviewed by Csaba Osztrogonác.
3164 * Source/cmake/FindICU.cmake:
3166 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
3168 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
3169 https://bugs.webkit.org/show_bug.cgi?id=136814
3171 Reviewed by Philippe Normand.
3173 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
3174 We bundle the wayland-egl dependency with wayland-client and wayland-server
3175 and store the resulting variables with the WAYLAND_ prefix. Because of this
3176 this line wasn't exporting anything useful.
3178 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
3180 URTBF after r173574.
3182 * Source/cmake/WebKitMacros.cmake:
3184 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
3186 [JavaScriptCore] Fix FTL on platform EFL.
3187 https://bugs.webkit.org/show_bug.cgi?id=133571
3189 Reviewed by Filip Pizlo.
3193 * Source/cmake/FindLIBCXXABI.cmake: Removed.
3194 * Source/cmake/OptionsEfl.cmake:
3196 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3199 https://bugs.webkit.org/show_bug.cgi?id=136571
3201 Reviewed by Darin Adler.
3203 * Source/cmake/OptionsEfl.cmake:
3204 * Source/cmake/OptionsGTK.cmake:
3205 * Source/cmake/OptionsMac.cmake:
3206 * Source/cmake/WebKitFeatures.cmake:
3207 * Source/cmakeconfig.h.cmake:
3209 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3211 Remove CSS_FILTERS flag
3212 https://bugs.webkit.org/show_bug.cgi?id=136529
3214 Reviewed by Dirk Schulze.
3216 * Source/cmake/OptionsEfl.cmake:
3217 * Source/cmake/OptionsGTK.cmake:
3218 * Source/cmake/OptionsMac.cmake:
3219 * Source/cmake/WebKitFeatures.cmake:
3220 * Source/cmakeconfig.h.cmake:
3222 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3224 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
3225 https://bugs.webkit.org/show_bug.cgi?id=136194
3227 Reviewed by Csaba Osztrogonác.
3229 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
3233 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3235 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
3236 https://bugs.webkit.org/show_bug.cgi?id=135560
3238 Reviewed by Gyuyoung Kim.
3240 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
3242 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
3244 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
3245 https://bugs.webkit.org/show_bug.cgi?id=136343
3247 Reviewed by David Kilzer.
3249 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
3251 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3252 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3254 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
3256 [EFL] Share fast/speechsynthesis/ with other ports
3257 https://bugs.webkit.org/show_bug.cgi?id=136224
3259 Reviewed by Chris Fleizach.
3261 Enable WebSpeech for EFL.
3263 * Source/cmake/OptionsEfl.cmake:
3265 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
3267 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
3268 https://bugs.webkit.org/show_bug.cgi?id=136127
3270 Reviewed by Gyuyoung Kim.
3272 Add build support for espeak.
3274 * Source/cmake/FindEspeak.cmake: Added.
3275 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
3277 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
3279 [EFL] Build break using clang
3280 https://bugs.webkit.org/show_bug.cgi?id=136245
3282 Reviewed by Gyuyoung Kim.
3284 * Source/cmake/OptionsEfl.cmake:
3285 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
3286 Some warnings are from system libraries.
3288 2014-08-25 Alberto Garcia <berto@igalia.com>
3290 [GTK] Unify webkitgtk and webkit2gtk directories
3291 https://bugs.webkit.org/show_bug.cgi?id=136209
3293 Reviewed by Carlos Garcia Campos.
3295 Use webkit2gtk-X.X both for the process binaries and the injected
3298 * Source/cmake/OptionsGTK.cmake:
3300 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3302 [EFL] Move Efl specific code from Source/CMakeLists.txt
3303 https://bugs.webkit.org/show_bug.cgi?id=136206
3305 Reviewed by Gyuyoung Kim.
3307 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
3308 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
3310 * Source/CMakeLists.txt:
3311 * Source/cmake/OptionsEfl.cmake:
3313 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3315 [EFL] Introduce DEVELOPER_MODE
3316 https://bugs.webkit.org/show_bug.cgi?id=135884
3318 Reviewed by Gyuyoung Kim.
3320 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
3321 instead of SHARED_CORE.
3322 SHARED_CORE can reduce link time and memory consumption but it is slightly different
3323 from release binary.
3325 * Source/cmake/OptionsEfl.cmake:
3326 * Source/cmake/WebKitHelpers.cmake:
3327 Moved fvisibility=hidden to OptionsEfl.cmake
3329 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
3331 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
3332 https://bugs.webkit.org/show_bug.cgi?id=136110
3334 Reviewed by Gyuyoung Kim.
3336 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
3338 * Source/cmake/OptionsEfl.cmake:
3340 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3342 [EFL] Apply eflsymbols.filter to WebKit2
3343 https://bugs.webkit.org/show_bug.cgi?id=136148
3345 Reviewed by Csaba Osztrogonác.
3347 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
3348 in the eflsymbols.filter.
3350 * Source/cmake/OptionsEfl.cmake:
3351 * Source/cmake/eflsymbols.filter:
3353 2014-08-21 Zalan Bujtas <zalan@apple.com>
3355 Enable SATURATED_LAYOUT_ARITHMETIC.
3356 https://bugs.webkit.org/show_bug.cgi?id=136106
3358 Reviewed by Simon Fraser.
3360 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
3361 (No measurable performance regression on Mac.)
3363 * Source/cmake/OptionsMac.cmake:
3364 * Source/cmake/WebKitFeatures.cmake:
3365 * Source/cmakeconfig.h.cmake:
3367 2014-08-19 Zalan Bujtas <zalan@apple.com>
3369 Remove ENABLE(SUBPIXEL_LAYOUT).
3370 https://bugs.webkit.org/show_bug.cgi?id=136077
3372 Reviewed by Simon Fraser.
3374 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
3376 * Source/cmake/OptionsEfl.cmake:
3377 * Source/cmake/OptionsGTK.cmake:
3378 * Source/cmake/OptionsMac.cmake:
3379 * Source/cmake/WebKitFeatures.cmake:
3380 * Source/cmakeconfig.h.cmake:
3382 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
3384 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
3385 https://bugs.webkit.org/show_bug.cgi?id=135980
3387 Reviewed by Martin Robinson.
3389 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
3390 overrides any other disabled optimization that was prepended to these
3391 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
3392 lists first in the final list of compilation flags.
3394 To avoid -On re-enabling optimizations that we'd like to keep disabled,
3395 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
3397 * Source/cmake/OptionsCommon.cmake:
3398 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
3399 * Source/cmake/OptionsGTK.cmake:
3401 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3403 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
3405 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3407 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
3409 [GTK] Disable memory sampler on non-Linux system
3410 https://bugs.webkit.org/show_bug.cgi?id=134483
3412 Reviewed by Philippe Normand.
3414 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
3415 Linux because it uses many Linux-specific features, so we should disable
3416 memory sampler on other systems by default.
3418 * Source/cmake/OptionsGTK.cmake:
3420 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3422 [GTK] HTML API documentation should also be installed versioned
3423 https://bugs.webkit.org/show_bug.cgi?id=135970
3425 Reviewed by Philippe Normand.
3427 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
3430 2014-08-14 Tomas Popela <tpopela@redhat.com>
3432 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
3433 https://bugs.webkit.org/show_bug.cgi?id=135937
3435 Reviewed by Carlos Garcia Campos.
3439 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3441 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
3442 https://bugs.webkit.org/show_bug.cgi?id=135934
3444 Reviewed by Gustavo Noronha Silva.
3446 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
3447 The gir files should installed in $datadir/gir-1.0/ together with all other
3448 gir files. We don't need to install introspection files in a versioned
3449 directory because their filenames already contain the binary version. But before
3450 r171598, the files were only installed to the right directory if the
3451 gobject-instrospection pkg-config file was in the same prefix than the one we
3452 wanted to install, because the gir and typelibs directories were extracted from
3453 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
3454 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
3455 like we do in the autotools build.
3457 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
3458 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3459 * Source/cmake/OptionsGTK.cmake: Define
3460 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3462 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3464 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
3465 https://bugs.webkit.org/show_bug.cgi?id=135836
3467 Reviewed by Philippe Normand.
3469 * Source/PlatformGTK.cmake: Add install command to also install
3470 the GObject DOM bindings API docs.
3472 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
3474 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
3475 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
3476 re-set CMAKE_C_FLAGS with the new string. The two flags should really
3477 be appended to CMAKE_C_FLAGS and the same variable re-set with the
3480 * Source/cmake/OptionsCommon.cmake:
3482 2014-08-13 Alex Christensen <achristensen@webkit.org>
3484 Progress towards CMake on Mac.
3485 https://bugs.webkit.org/show_bug.cgi?id=135819
3487 Reviewed by Laszlo Gombos.
3489 * Source/cmake/OptionsMac.cmake:
3490 Disable some more features temporarily to get CMake working.
3491 * Source/cmake/WebKitMacros.cmake:
3492 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
3494 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3496 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
3497 https://bugs.webkit.org/show_bug.cgi?id=135798
3499 Reviewed by Philippe Normand.
3501 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
3503 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3504 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3505 https://bugs.webkit.org/show_bug.cgi?id=133317
3507 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3509 Reviewed by Philippe Normand.
3511 No new tests since no new functionality has been added.
3513 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3515 2014-08-11 Commit Queue <commit-queue@webkit.org>
3517 Unreviewed, rolling out r172393.
3518 https://bugs.webkit.org/show_bug.cgi?id=135796
3520 discussion needed about GnuTLS version bump on the bots
3521 (Requested by philn on #webkit).
3525 https://bugs.webkit.org/show_bug.cgi?id=133317
3526 http://trac.webkit.org/changeset/172393
3528 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3529 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3530 https://bugs.webkit.org/show_bug.cgi?id=133317
3532 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3534 Reviewed by Philippe Normand.
3536 No new tests since no new functionality has been added.
3538 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3540 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3542 [GTK] Adds stubs for all subtle crypto algorithm implemntations
3543 https://bugs.webkit.org/show_bug.cgi?id=133316
3545 Reviewed by Philippe Normand.
3547 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
3548 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
3549 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
3551 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
3553 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
3555 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3557 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3559 [GTK] REGRESSION(r166239): The ld version script is not being used
3560 https://bugs.webkit.org/show_bug.cgi?id=135694
3562 Reviewed by Martin Robinson.
3564 Move the symbols filter file from Tools/gtk to Source/cmake and rename
3565 it as gtksymbols.filter. Also updated it, since some of the symbols
3566 exported were renamed.
3568 * Source/cmake/OptionsGTK.cmake:
3569 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
3571 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3573 [GTK] Child processes should be installed in a versioned directory
3574 https://bugs.webkit.org/show_bug.cgi?id=135754
3576 Reviewed by Gustavo Noronha Silva.
3578 Define LIBEXEC_INSTALL_DIR as
3579 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
3580 so that the child processes are installed in $libexec/webkitgtk-4.0.
3581 This makes it possible to install 2.6 in parallel to older versions.
3583 * Source/cmake/OptionsGTK.cmake:
3585 2014-08-08 Alex Christensen <achristensen@webkit.org>
3587 Progress towards using CMake on Mac.
3588 https://bugs.webkit.org/show_bug.cgi?id=135662
3590 Reviewed by Laszlo Gombos.
3593 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
3594 * Source/cmake/WebKitFeatures.cmake:
3595 * Source/cmakeconfig.h.cmake:
3596 Added features that are needed by the Mac port.
3597 * Source/cmake/OptionsMac.cmake:
3598 Enable CSS_IMAGE_SET based on FeatureDefines.h.
3599 Disable the FTL with CMake for now.
3600 * Source/cmake/OptionsEFL.cmake:
3601 * Source/cmake/OptionsGTK.cmake:
3602 Enable subpixel layout to not conflict with FeatureDefines.h
3604 2014-08-08 Simon Fraser <simon.fraser@apple.com>
3606 Undo some erroneous changes to the Xcode scheme files from r172259.
3608 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3609 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3611 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
3613 [CMake] Drop the required version of CMake down to 2.8.8
3614 https://bugs.webkit.org/show_bug.cgi?id=135713
3616 Reviewed by Alex Christensen.
3618 * CMakeLists.txt: Require CMake 2.8.8.
3620 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
3622 Get rid of INPUT_SPEECH
3623 https://bugs.webkit.org/show_bug.cgi?id=135672
3625 Reviewed by Andreas Kling.
3627 * Source/cmake/OptionsMac.cmake:
3628 * Source/cmake/WebKitFeatures.cmake:
3629 * Source/cmakeconfig.h.cmake:
3631 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
3633 [GTK] Disable IndexedDB
3634 https://bugs.webkit.org/show_bug.cgi?id=135692
3636 Reviewed by Carlos Garcia Campos.
3638 * Source/cmake/OptionsGTK.cmake:
3640 2014-08-06 Dean Jackson <dino@apple.com>
3642 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
3643 https://bugs.webkit.org/show_bug.cgi?id=135675
3645 Reviewed by Sam Weinig.
3647 * Source/cmake/OptionsGTK.cmake:
3648 * Source/cmake/OptionsMac.cmake:
3649 * Source/cmake/WebKitFeatures.cmake:
3650 * Source/cmakeconfig.h.cmake:
3652 2014-08-06 David Farler <dfarler@apple.com>
3654 Unreviewed build fix: Make includes semicolon in assignment.
3656 * Makefile.shared: Remove a ;
3658 2014-08-06 David Farler <dfarler@apple.com>
3660 Set DSYMUTIL_NUM_THREADS to the number of logical cores
3661 https://bugs.webkit.org/show_bug.cgi?id=135655
3663 Reviewed by Mark Rowe.
3665 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
3667 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
3669 [GTK] Be able to disable gtk2 dependency
3670 https://bugs.webkit.org/show_bug.cgi?id=135505
3672 Reviewed by Gustavo Noronha Silva.
3674 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
3675 required when it's enabled. It's enabled by default.
3677 * Source/cmake/OptionsGTK.cmake:
3679 2014-08-05 Alex Christensen <achristensen@webkit.org>
3682 https://bugs.webkit.org/show_bug.cgi?id=135620
3684 Reviewed by Laszlo Gombos.
3686 * Source/cmake/OptionsMac.cmake:
3687 Use UDIS86 by default on Mac.
3689 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
3691 Add a flag for the CSS Selectors level 4 implementation
3692 https://bugs.webkit.org/show_bug.cgi?id=135535
3694 Reviewed by Andreas Kling.
3696 * Source/cmake/OptionsEfl.cmake:
3697 * Source/cmake/OptionsGTK.cmake:
3698 * Source/cmake/WebKitFeatures.cmake:
3699 * Source/cmakeconfig.h.cmake:
3701 2014-08-04 Alex Christensen <achristensen@webkit.org>
3703 Progress towards CMake on Mac.
3704 https://bugs.webkit.org/show_bug.cgi?id=135528
3706 Reviewed by Gyuyoung Kim.
3708 * Source/cmake/OptionsMac.cmake:
3709 Made options list based on FeatureDefines.xcconfig files.
3711 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3713 [GTK] Windowing target support should reflect the support in the GTK+ dependency
3714 https://bugs.webkit.org/show_bug.cgi?id=134736
3716 Reviewed by Martin Robinson.
3718 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
3719 support the X11 or Wayland windowing targets -- instead, if there's no support
3720 the specific target is disabled, and an error is thrown only if neither of the
3721 backends is enabled at the end..
3722 For now the X11 target remains enabled by default, and the Wayland target is
3723 kept disabled. Once it's possible to have both targets enabled at runtime in
3724 WebKit, the Wayland target will be enabled as well and we'll leave it to the
3725 GTK+ dependency to determine which targets can be enabled.
3727 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3729 [CMake] Add FindWayland.cmake
3730 https://bugs.webkit.org/show_bug.cgi?id=135540
3732 Reviewed by Martin Robinson.
3734 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
3735 dependency. For now bundles the wayland-client, wayland-server and
3736 wayland-egl pkg-config targets into one dependency, but these could
3737 be split in the future if necessary.
3739 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
3741 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
3742 https://bugs.webkit.org/show_bug.cgi?id=135553
3744 Reviewed by Gyuyoung Kim.
3746 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
3747 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
3749 * Source/cmake/OptionsEfl.cmake:
3751 2014-08-01 Bear Travis <betravis@adobe.com>
3753 [Feature Queries] Enable Feature Queries on EFL/GTK
3754 https://bugs.webkit.org/show_bug.cgi?id=134902
3756 Reviewed by Benjamin Poulain.
3758 Enable CSS Feature Queries by default on the EFL and GTK
3761 * Source/cmake/OptionsEfl.cmake:
3762 * Source/cmake/OptionsGTK.cmake:
3764 2014-08-01 Alex Christensen <achristensen@webkit.org>
3766 Progress towards cmake on Windows.
3767 https://bugs.webkit.org/show_bug.cgi?id=135484
3769 Reviewed by Martin Robinson.
3772 Added Mac to list of ports, even though it is not done yet.
3773 Changed minimum bison version to version installed on Macs.
3774 * Source/cmake/OptionsAppleWin.cmake:
3775 Added some definitions.
3776 * Source/cmake/OptionsEfl.cmake:
3777 * Source/cmake/OptionsGTK.cmake:
3778 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
3779 * Source/cmake/OptionsMac.cmake: Added blank for now.
3780 * Source/cmake/OptionsWinCairo.cmake:
3781 * Source/cmake/OptionsWindows.cmake:
3782 Added some definitions.
3783 Removed /WX (warnings treated as error while compiling).
3784 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
3786 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
3788 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
3789 https://bugs.webkit.org/show_bug.cgi?id=135501
3791 Reviewed by Gyuyoung Kim.
3793 Use PROJECT_VERSION_MICRO instead.
3795 * Source/cmake/OptionsEfl.cmake:
3796 * Source/cmake/OptionsGTK.cmake:
3797 * Source/cmake/WebKitHelpers.cmake:
3799 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
3801 [EFL] Bump ewebkit version to 1.11
3802 https://bugs.webkit.org/show_bug.cgi?id=135487
3804 Reviewed by Gyuyoung Kim.
3806 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
3808 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
3810 [EFL] Add support for building with Geoclue2.
3811 https://bugs.webkit.org/show_bug.cgi?id=135455
3813 Reviewed by Gyuyoung Kim.
3815 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
3818 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3820 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
3822 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3824 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3826 [GTK] Bump binary version for 2.6
3827 https://bugs.webkit.org/show_bug.cgi?id=133724
3829 Reviewed by Philippe Normand.
3831 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
3832 update library version numbers.
3834 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
3836 [CMake] Bump the minimum required version
3837 https://bugs.webkit.org/show_bug.cgi?id=135382
3839 Reviewed by Gyuyoung Kim.
3841 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
3842 we introduced usage of target_include_directories().
3844 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
3846 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
3847 https://bugs.webkit.org/show_bug.cgi?id=135376
3849 Reviewed by Gyuyoung Kim.
3851 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
3853 * Source/cmake/OptionsEfl.cmake: