1 2015-10-22 Philippe Normand <pnormand@igalia.com>
3 [GTK][Mac] ICU-related build fixes
4 https://bugs.webkit.org/show_bug.cgi?id=150032
6 Rubber-stamped by Darin Adler.
8 * Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
10 2015-10-20 Yoav Weiss <yoav@yoav.ws>
12 Rename the PICTURE_SIZES flag to CURRENTSRC
13 https://bugs.webkit.org/show_bug.cgi?id=150275
15 Reviewed by Dean Jackson.
17 * Source/cmake/OptionsEfl.cmake:
18 * Source/cmake/OptionsGTK.cmake:
19 * Source/cmake/OptionsMac.cmake:
20 * Source/cmake/OptionsWin.cmake:
21 * Source/cmake/WebKitFeatures.cmake:
23 2015-10-14 Tomas Popela <tpopela@redhat.com>
25 [GTK][EFL] Fix build with cmake 3.4
26 https://bugs.webkit.org/show_bug.cgi?id=150117
28 Explicitely include the CheckIncludeFiles module before using
29 the CHECK_INCLUDE_FILES command.
31 Reviewed by Žan Doberšek.
33 * Source/cmake/FindOpenGL.cmake:
34 * Source/cmake/FindWebP.cmake:
35 * Source/cmake/OptionsEfl.cmake:
37 2015-10-13 Dean Jackson <dino@apple.com>
39 Device motion and orientation should only be visible from the main frame's security origin
40 https://bugs.webkit.org/show_bug.cgi?id=150072
41 <rdar://problem/23082036>
43 Reviewed by Brent Fulgham.
45 Add a manual test for cross-origin device orientation events, while
46 we're waiting on the mock client to be supported everywhere.
48 * ManualTests/deviceorientation-child-frame.html: Added.
49 * ManualTests/deviceorientation-main-frame-only.html: Added.
51 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
53 [GTK] OSX linker doesn't understand --whole-archive
54 https://bugs.webkit.org/show_bug.cgi?id=144557
56 Reviewed by Martin Robinson.
58 * Source/cmake/OptionsGTK.cmake: Turn the macro
59 ADD_WHOLE_ARCHIVE_TO_LIBRARIES into a no-op on Darwin systems,
60 because XCode's linker doesn't have the --whole-archive option.
62 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
64 [GTK] Use --version-script only on Linux
65 https://bugs.webkit.org/show_bug.cgi?id=144555
67 Reviewed by Philippe Normand.
69 * Source/cmake/OptionsGTK.cmake: Don't add --version-script
70 option on Darwin (whose linker doesn't support it.)
72 2015-10-09 Gyuyoung Kim <gyuyoung.kim@webkit.org>
74 [CMake] Remove ENABLE_SUBPIXEL_LAYOUT macro
75 https://bugs.webkit.org/show_bug.cgi?id=149947
77 Reviewed by Csaba Osztrogonác.
79 ENABLE(SUBPIXEL_LAYOUT) was removed though, it is still alive in .cmake.
82 * Source/cmake/OptionsMac.cmake:
83 * Source/cmake/OptionsWin.cmake:
84 * Source/cmake/WebKitFeatures.cmake:
86 2015-10-06 Emanuele Aina <emanuele.aina@collabora.com>
88 Fix ENABLE_OPENGL=OFF builds
89 https://bugs.webkit.org/show_bug.cgi?id=146511
91 Reviewed by Darin Adler.
93 * Source/cmake/OptionsGTK.cmake: Make ENABLE_WAYLAND_TARGET depend on
94 ENABLE_OPENGL due to EGL usage.
96 2015-10-01 Wenson Hsieh <wenson_hsieh@apple.com>
98 Convert focused-input-should-assist-on-touch.html into an automated test
99 https://bugs.webkit.org/show_bug.cgi?id=149724
101 Reviewed by Simon Fraser.
103 Remove a manual test that can now be rewritten as an automated test.
105 * ManualTests/ios/focused-input-should-assist-on-touch.html: Removed.
107 2015-10-01 Brent Fulgham <bfulgham@apple.com>
109 [Win] Unreviewed CMake build fix.
111 * Source/cmake/OptionsWin.cmake: Clean up options setttings,
112 and make sure exception handling is turned off.
114 2015-09-30 Brent Fulgham <bfulgham@apple.com>
116 [Win] Unreviewed build fix after CMake conversion.
118 * Source/cmake/OptionsWin.cmake: Correct some Windows build flags.
120 2015-09-29 Michael Catanzaro <mcatanzaro@igalia.com>
122 [GTK][CMake] Warning about CMP0058
123 https://bugs.webkit.org/show_bug.cgi?id=149627
125 Reviewed by Martin Robinson.
127 Opt-in to the new behavior for CMP0058.
131 2015-09-28 Brent Fulgham <bfulgham@apple.com>
133 [Win] Unreviewed build fix for internal systems.
135 * Source/cmake/OptionsWin.cmake: Preferentially use the build target
136 location for include and link libraries, rather than the system locations.
138 2015-09-28 Alex Christensen <achristensen@webkit.org>
140 Build WK1 with CMake on Mac
141 https://bugs.webkit.org/show_bug.cgi?id=149604
143 Reviewed by Chris Dumez.
145 * Source/cmake/OptionsMac.cmake:
146 * Source/cmake/WebKitMacros.cmake:
147 ObjC bindings now have their own list of IDL files, but some of them still don't generate a .mm file.
149 2015-09-25 Alex Christensen <achristensen@webkit.org>
151 Clean up CMake build on Mac
152 https://bugs.webkit.org/show_bug.cgi?id=149573
154 Reviewed by Chris Dumez.
156 * Source/cmake/OptionsMac.cmake:
158 2015-09-25 Alex Christensen <achristensen@webkit.org>
160 [Win] Switch to CMake
161 https://bugs.webkit.org/show_bug.cgi?id=148111
163 Reviewed by Brent Fulgham.
165 * Source/cmake/WinTools.make: Added.
166 * Source/cmake/tools: Added.
167 * Source/cmake/tools/scripts: Copied from WebKitLibraries/win/tools/scripts.
168 * Source/cmake/tools/scripts/auto-version.pl: Copied from WebKitLibraries/win/tools/scripts/auto-version.pl.
170 2015-09-25 Alex Christensen <achristensen@webkit.org>
172 Prepare internal AppleWin build for CMake
173 https://bugs.webkit.org/show_bug.cgi?id=149570
175 Reviewed by Brent Fulgham.
177 * Source/PlatformWin.cmake:
178 Include internal CMake files if they exist.
180 2015-09-22 Gyuyoung Kim <gyuyoung.kim@webkit.org>
182 Add a file of pointer-lock to cmake ports
183 https://bugs.webkit.org/show_bug.cgi?id=149453
185 Reviewed by Csaba Osztrogonác.
187 * Source/cmake/OptionsEfl.cmake: Add a ENABLE_POINTER_LOCK.
189 2015-09-22 Carlos Alberto Lopez Perez <clopez@igalia.com>
191 [CMake] Allow to enable OpenMP support.
192 https://bugs.webkit.org/show_bug.cgi?id=149457
194 Reviewed by Csaba Osztrogonác.
196 * Source/cmake/OptionsCommon.cmake: Add the option USE_OPENMP that
197 will enable the support for OpenMP. Currently this is only used as
198 an alternative implementation to native threads for the parallelization
199 of the SVG filters. But name the option with a generic name (USE_OPENMP)
200 as it could be also used to enable future features that depend on OpenMP.
202 2015-09-22 Ryuan Choi <ryuan.choi@navercorp.com>
204 [EFL] Build break when DEVELOPER_MODE is OFF
205 https://bugs.webkit.org/show_bug.cgi?id=149448
207 Reviewed by Gyuyoung Kim.
209 Since r187191, DatabaseProcessMainUnix is missing in symbol filter.
211 * Source/cmake/eflsymbols.filter:
213 2015-09-21 Alex Christensen <achristensen@webkit.org>
215 Disable PICTURE_SIZES in Windows CMake build like r189745.
216 https://bugs.webkit.org/show_bug.cgi?id=149125
218 * Source/cmake/OptionsWin.cmake:
219 Do the same thing as r189745.
221 2015-09-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
223 Removing XHR_TIMEOUT guard
225 Remove XHR_TIMEOUT compilation guard
226 https://bugs.webkit.org/show_bug.cgi?id=149260
228 Reviewed by Benjamin Poulain.
230 * Source/cmake/OptionsEfl.cmake:
231 * Source/cmake/OptionsGTK.cmake:
232 * Source/cmake/OptionsMac.cmake:
233 * Source/cmake/OptionsWin.cmake:
234 * Source/cmake/WebKitFeatures.cmake:
236 2015-09-18 Alex Christensen <achristensen@webkit.org>
238 Fix tests on Windows after switching to CMake.
239 https://bugs.webkit.org/show_bug.cgi?id=149339
241 Reviewed by Brent Fulgham.
243 * Source/PlatformWin.cmake: Added to copy WebInspectorUI.
245 2015-09-17 Alex Christensen <achristensen@webkit.org>
247 Fix Windows EWS build after r189934.
249 * Source/cmake/OptionsWin.cmake:
250 Use WEBKIT_LIBRARIES environment variable if it exists.
251 We have the WebKitLibraries directory separate from the repository copy on the EWS bots.
253 2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
255 Add ShadowRoot interface and Element.prototype.attachShadow
256 https://bugs.webkit.org/show_bug.cgi?id=149187
258 Reviewed by Antti Koivisto.
260 * Source/cmake/OptionsGTK.cmake:
262 2015-09-15 Csaba Osztrogonác <ossy@webkit.org>
264 [cmake] Enable debug fission only if it is supported
265 https://bugs.webkit.org/show_bug.cgi?id=149161
267 Reviewed by Martin Robinson.
269 * Source/cmake/OptionsCommon.cmake:
271 2015-09-14 Alex Christensen <achristensen@webkit.org>
273 Progress towards CMake on Mac.
274 https://bugs.webkit.org/show_bug.cgi?id=149123
276 Reviewed by Chris Dumez.
278 * Source/cmake/OptionsMac.cmake:
279 * Source/cmake/WebKitFeatures.cmake:
280 Defined and enabled some more features needed on Mac.
281 * Source/cmake/WebKitMacros.cmake:
282 Objective C bindings need special changes when generating:
283 Some of the bindings do not generate a .mm file but the header is needed.
284 Some of the bindings do generate a .mm file that doesn't compile but the header is needed.
285 In order to handle these cases, it is necessary to change the GENERATE_BINDINGS macro just for ObjC.
287 2015-09-08 Daniel Bates <dabates@apple.com>
289 Convert manual test added in http://trac.webkit.org/changeset/70321 to an automated test
290 https://bugs.webkit.org/show_bug.cgi?id=74729
291 <rdar://problem/22550195>
293 Reviewed by Jon Honeycutt.
295 * ManualTests/compositing/resources/composited-subframe.html: Removed.
296 * ManualTests/compositing/show-composited-iframe-on-back-button.html: Removed.
298 2015-09-06 Andy Estes <aestes@apple.com>
300 WebKit.xcworkspace should be be able to build iOS platforms
301 https://bugs.webkit.org/show_bug.cgi?id=148881
303 Reviewed by Daniel Bates.
305 Since we don't want to create platform-specific schemes, all projects in the workspace's schemes need to build
306 for all supported platforms.
308 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Removed the DumpRenderTree target since its All
309 target was already included. Removed the WebKitTestRunner target and replaced it with its All target.
311 2015-09-04 Jon Honeycutt <jhoneycutt@apple.com>
313 [iOS] Need a test for bug #145539: Uploading an animated GIF from the
314 photo library uploads a JPEG
315 https://bugs.webkit.org/show_bug.cgi?id=148849
317 Reviewed by Daniel Bates.
319 * ManualTests/ios/image-file-uploads-as-original-type.html: Added.
320 On the Mac, file upload tests use EventSender::beginDragWithFiles. This
321 functionality doesn't exist on iOS, so we'll add a manual test.
322 This tests that the first few bytes of the selected file are "GIF".
324 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
326 Follow-up patch for r189343.
327 https://bugs.webkit.org/show_bug.cgi?id=148795
329 Rubber-stamped by Csaba Osztrogonác.
331 * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
332 to 1.9, since this seems to be enough to fix the build failure.
333 And 2.0 may cause problems for developers using some distributions like Ubuntu.
335 2015-09-04 Emanuele Aina <emanuele.aina@collabora.com>
337 [CMake] Trigger the memory-reduction tricks on armhf too
338 https://bugs.webkit.org/show_bug.cgi?id=146640
340 Reviewed by Csaba Osztrogonác.
342 * Source/cmake/OptionsCommon.cmake:
343 Activate --no-keep-memory even on armhf to reduce the amount of memory
344 needed during linking, to avoid out-of-memory failures as much as
347 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
349 REGRESSION(r189293): JavaScriptCore/offlineasm/x86.rb -- Build failure with ruby < 2.0
350 https://bugs.webkit.org/show_bug.cgi?id=148795
352 Rubber-stamped by Carlos Garcia Campos.
354 * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
356 2015-09-02 Alex Christensen <achristensen@webkit.org>
358 Make bison grammar compatible with bison 2.1
359 https://bugs.webkit.org/show_bug.cgi?id=148731
361 Reviewed by Tim Horton.
363 * Source/cmake/WebKitCommon.cmake:
366 2015-08-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
368 [CMake] Build with Debug Fission on by default on Debug builds.
369 https://bugs.webkit.org/show_bug.cgi?id=148639
371 Reviewed by Martin Robinson.
373 * Source/cmake/OptionsCommon.cmake:
375 2015-08-29 Alex Christensen <achristensen@webkit.org>
377 Unreviewed build fix after r179923.
379 * Source/CMakeLists.txt:
380 bmalloc isn't ported to Windows yet.
382 2015-08-27 Alex Christensen <achristensen@webkit.org>
384 Isolate Source directories in CMake build
385 https://bugs.webkit.org/show_bug.cgi?id=148389
387 Reviewed by Brent Fulgham.
390 * Source/cmake/WebKitCommon.cmake:
391 Move package finding to WebKitCommon.
393 2015-08-26 Per Arne Vollan <peavo@outlook.com>
395 [Win] Build does not generate debug info.
396 https://bugs.webkit.org/show_bug.cgi?id=148431
398 Reviewed by Alex Christensen.
400 Generate debug info for Windows builds.
402 * Source/cmake/OptionsWin.cmake:
404 2015-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
406 [GTK] Disable ACCELERATED_2D_CANVAS by default
407 https://bugs.webkit.org/show_bug.cgi?id=148473
409 Reviewed by Martin Robinson.
411 Currently ACCELERATED_2D_CANVAS is enabled by default on most systems (which have CairoGL)
412 but not on Debian (which does not). We've known this was problematic for a while, since it
413 means we have two different sets of distro-dependent bugs, but never decided whether that
414 outweighed the benefits of CarioGL or not. I'm making the call now: it's more important to
415 have the same bugs everywhere. We can turn this on again for other distros when we're ready
416 to turn it on for Debian.
418 Also, properly fail the build if ENABLE_ACCELERATED_2D_CANVAS is enabled but CairoGL is not
421 * Source/cmake/OptionsGTK.cmake:
423 2015-08-25 Commit Queue <commit-queue@webkit.org>
425 Unreviewed, rolling out r188919.
426 https://bugs.webkit.org/show_bug.cgi?id=148452
428 broke build (Requested by alexchristensen on #webkit).
432 "[Win] Build does not generate debug info."
433 https://bugs.webkit.org/show_bug.cgi?id=148431
434 http://trac.webkit.org/changeset/188919
436 2015-08-25 Michael Catanzaro <mcatanzaro@igalia.com>
438 [GTK] r186800 broke the build on Ubuntu 14.04
439 https://bugs.webkit.org/show_bug.cgi?id=147559
441 Reviewed by Martin Robinson.
443 * Source/cmake/FindGTK3.cmake: Always define GTK3_SUPPORTS_X11 and GTK3_SUPPORTS_WAYLAND.
444 * Source/cmake/OptionsGTK.cmake: Autodetect support for X11 and Wayland backends.
446 2015-08-25 Per Arne Vollan <peavo@outlook.com>
448 [Win] Build does not generate debug info.
449 https://bugs.webkit.org/show_bug.cgi?id=148431
451 Reviewed by Brent Fulgham.
453 Generate debug info for Windows builds.
455 * Source/cmake/OptionsWin.cmake:
457 2015-08-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
459 [GTK] Auto-detection of cairo-gl fails
460 https://bugs.webkit.org/show_bug.cgi?id=148189
462 Reviewed by Žan Doberšek.
464 * Source/cmake/FindCairoGL.cmake: only check for components if the main package has
465 been found. Otherwise, if either GLX or EGL are available, cairo-gl will also be
466 deemed available, which might not be the case.
467 * Source/cmake/OptionsGTK.cmake: fix the usage of the CAIROGL_FOUND variable.
469 2015-08-19 Alex Christensen <achristensen@webkit.org>
471 CMake Windows build should not include files directly from other Source directories
472 https://bugs.webkit.org/show_bug.cgi?id=148198
474 Reviewed by Brent Fulgham.
476 * Source/cmake/WebKitMacros.cmake:
478 2015-08-19 Alex Christensen <achristensen@webkit.org>
480 Build TestWTF on Mac with CMake.
481 https://bugs.webkit.org/show_bug.cgi?id=147972
483 Reviewed by Tim Horton.
485 * Source/cmake/OptionsMac.cmake:
486 Enable API tests in Mac's CMake build.
488 2015-08-18 Alex Christensen <achristensen@webkit.org>
490 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
491 https://bugs.webkit.org/show_bug.cgi?id=148127
493 Reviewed by Martin Robinson.
496 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
498 2015-08-17 Alex Christensen <achristensen@webkit.org>
500 [Win CMake] Allow WebKitLibraries directory to be set from the command line
501 https://bugs.webkit.org/show_bug.cgi?id=148112
503 Reviewed by Brent Fulgham.
505 * Source/cmake/OptionsWin.cmake:
506 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
507 Instead, use the default location if nothing is passed in from the command line.
508 This way we can set it from the command line for the AppleInternal build.
509 Also, set the output directories to be consistent between the old and new build systems (and ninja).
511 2015-08-17 Alex Christensen <achristensen@webkit.org>
513 Build Debug Suffix on Windows with CMake
514 https://bugs.webkit.org/show_bug.cgi?id=148083
516 Reviewed by Brent Fulgham.
518 * Source/cmake/OptionsWin.cmake:
519 Use debug libraries in debug suffix builds.
521 2015-08-17 Alex Christensen <achristensen@webkit.org>
523 Move some commands from ./CMakeLists.txt to Source/cmake
524 https://bugs.webkit.org/show_bug.cgi?id=148003
526 Reviewed by Brent Fulgham.
529 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
530 so we can change directory structure from command line parameters.
531 * Source/cmake/OptionsAppleWin.cmake:
532 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
533 * Source/cmake/OptionsWinCairo.cmake:
534 * Source/cmake/OptionsWindows.cmake: Removed.
535 * Source/cmake/WebKitCommon.cmake: Added.
536 * Source/cmake/WebKitFS.cmake:
538 2015-08-13 Commit Queue <commit-queue@webkit.org>
540 Unreviewed, rolling out r188428.
541 https://bugs.webkit.org/show_bug.cgi?id=148015
543 broke cmake build (Requested by alexchristensen on #webkit).
547 "Move some commands from ./CMakeLists.txt to Source/cmake"
548 https://bugs.webkit.org/show_bug.cgi?id=148003
549 http://trac.webkit.org/changeset/188428
551 2015-08-13 Alex Christensen <achristensen@webkit.org>
553 Move some commands from ./CMakeLists.txt to Source/cmake
554 https://bugs.webkit.org/show_bug.cgi?id=148003
556 Reviewed by Brent Fulgham.
559 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
560 so we can change directory structure from command line parameters.
561 * Source/cmake/WebKitCommon.cmake: Added.
562 * Source/cmake/WebKitFS.cmake:
564 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
566 A focused node should not be assisted when handling touch events synchronously
567 https://bugs.webkit.org/show_bug.cgi?id=147836
569 Reviewed by Enrica Casucci.
571 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
573 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
574 input can still be assisted due to a touch event.
575 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
576 event does not automatically cause us to assist the currently focused node.
578 2015-08-12 Alex Christensen <achristensen@webkit.org>
580 Fix Debug CMake builds on Windows
581 https://bugs.webkit.org/show_bug.cgi?id=147940
583 Reviewed by Chris Dumez.
585 * Source/cmake/OptionsWindows.cmake:
586 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
588 2015-08-10 Alex Christensen <achristensen@webkit.org>
590 Build TestWebKitAPI with CMake on Windows
591 https://bugs.webkit.org/show_bug.cgi?id=147851
593 Reviewed by Chris Dumez.
595 * Source/cmake/OptionsWindows.cmake:
596 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
598 2015-08-06 Alex Christensen <achristensen@webkit.org>
600 [Win] CMake build fix after r188098.
602 * Source/cmake/OptionsWinCairo.cmake:
603 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
605 2015-08-04 Alex Christensen <achristensen@webkit.org>
607 Fix quirks with CMake and VS2015
608 https://bugs.webkit.org/show_bug.cgi?id=147663
610 Reviewed by Brent Fulgham.
612 * Source/cmake/OptionsWindows.cmake:
613 Hide some warnings. Using the same variable names in nested scopes is ok for now.
614 Disable INTL for now.
616 2015-08-04 Alex Christensen <achristensen@webkit.org>
618 Enable WebGL on Windows CMake build.
619 https://bugs.webkit.org/show_bug.cgi?id=143311
621 Reviewed by Csaba Osztrogonác.
623 * Source/cmake/OptionsWindows.cmake:
624 Enable WebGL by default in CMake builds now that it works.
626 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
628 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
629 https://bugs.webkit.org/show_bug.cgi?id=147625
631 Reviewed by Martin Robinson.
633 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
634 components unless they were actually found, not to accidentally
635 enable Accelerated 2D canvas, which would cause the build to fail.
637 * Source/cmake/FindCairoGL.cmake: Set this variables only when
638 pkg_check_modules() had actually found the relevant component.
640 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
642 [CMake] Add an option to build AllInOne files
643 https://bugs.webkit.org/show_bug.cgi?id=102647
645 Reviewed by Alex Christensen.
647 * Source/cmake/OptionsEfl.cmake: Disabled by default.
648 * Source/cmake/OptionsGTK.cmake: Disabled by default.
649 * Source/cmake/OptionsWindows.cmake: Enabled by default.
650 * Source/cmake/WebKitFeatures.cmake:
651 * Source/cmake/WebKitMacros.cmake:
653 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
655 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
657 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
659 2015-07-31 Alex Christensen <achristensen@webkit.org>
661 Prepare for debug CMake builds on Windows.
662 https://bugs.webkit.org/show_bug.cgi?id=147484
664 Reviewed by Tim Horton.
666 * Source/cmake/OptionsWindows.cmake:
667 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
669 2015-07-30 Joonghun Park <jh718.park@samsung.com>
671 [EFL] Enable IndexedDB based on DatabaseProcess
672 https://bugs.webkit.org/show_bug.cgi?id=147221
674 Reviewed by Csaba Osztrogonác.
676 * Source/cmake/OptionsEfl.cmake:
678 2015-07-30 Alex Christensen <achristensen@webkit.org>
680 Build AppleWin port with CMake
681 https://bugs.webkit.org/show_bug.cgi?id=147385
683 Reviewed by Martin Robinson.
685 * Source/cmake/OptionsWindows.cmake:
686 Use the static multithreaded runtime. Based on
687 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
689 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
691 Implement basic types for ECMAScript Internationalization API
692 https://bugs.webkit.org/show_bug.cgi?id=146926
694 Reviewed by Benjamin Poulain.
696 Enable flag now that the basic objects are in place.
698 * Source/cmake/WebKitFeatures.cmake: enable INTL
700 2015-07-29 Basile Clement <basile_clement@apple.com>
702 Remove native call inlining
703 https://bugs.webkit.org/show_bug.cgi?id=147417
705 Rubber-stamped by Filip Pizlo.
707 * Source/cmake/OptionsEfl.cmake:
708 * Source/cmake/WebKitFeatures.cmake:
710 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
712 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
713 https://bugs.webkit.org/show_bug.cgi?id=147350
715 Reviewed by Sam Weinig.
717 * Source/cmake/WebKitFeatures.cmake:
719 2015-07-27 Alex Christensen <achristensen@webkit.org>
721 Use Ninja on Windows.
722 https://bugs.webkit.org/show_bug.cgi?id=147228
724 Reviewed by Martin Robinson.
726 * Source/cmake/OptionsWindows.cmake:
727 Only use /MP when using generated Visual Studio solution files to build.
728 It makes compiling parallel in MSVC, but Ninja doesn't like it.
730 2015-07-27 Alex Christensen <achristensen@webkit.org>
732 Progress towards building AppleWin with CMake
733 https://bugs.webkit.org/show_bug.cgi?id=147325
735 Reviewed by Martin Robinson.
737 * Source/cmake/OptionsWindows.cmake:
738 Link with 64-bit libraries if building 64-bit binaries.
739 Don't run regular expressions on empty strings when using Ninja.
740 Removed DebugSuffix Visual Studio environment variables.
742 2015-07-23 Alex Christensen <achristensen@webkit.org>
744 Remove compile and runtime flags for promises.
745 https://bugs.webkit.org/show_bug.cgi?id=147244
747 Reviewed by Yusuke Suzuki.
749 * Source/cmake/OptionsMac.cmake:
750 * Source/cmake/OptionsWindows.cmake:
751 * Source/cmake/WebKitFeatures.cmake:
753 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
755 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
756 https://bugs.webkit.org/show_bug.cgi?id=147212
758 Reviewed by Filip Pizlo.
760 * Source/cmake/WebKitFeatures.cmake:
762 2015-07-22 Alex Christensen <achristensen@webkit.org>
764 Fix quirks in CMake build on Mac and Windows
765 https://bugs.webkit.org/show_bug.cgi?id=147174
767 Reviewed by Gyuyoung Kim.
770 * Source/cmake/OptionsWindows.cmake:
771 Added options I removed in r187022. They are indeed needed.
772 * Source/cmake/WebKitFS.cmake:
773 Make the DerivedSources/WebKit directory.
775 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
777 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
779 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
781 2015-07-20 Alex Christensen <achristensen@webkit.org>
783 Resurrect CMake build on Windows.
784 https://bugs.webkit.org/show_bug.cgi?id=147083
786 Reviewed by Gyuyoung Kim.
788 * Source/cmake/OptionsCommon.cmake:
789 * Source/cmake/OptionsWindows.cmake:
790 Change features to get it to compile. Still not a complete feature set.
792 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
794 [GTK] Add seccomp filters support
795 https://bugs.webkit.org/show_bug.cgi?id=110014
797 Reviewed by Žan Doberšek.
799 Find needed compiler and linker flags for libseccomp.
801 * Source/cmake/OptionsGTK.cmake:
803 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
805 Bring back the GNU ar check to create thin archives on non-Linux systems
806 https://bugs.webkit.org/show_bug.cgi?id=146681
808 Reviewed by Martin Robinson.
810 We already use GNU ar thin archive feature to save time and disk space
811 on creating static archives, but it is only enabled on Linux. Without
812 this feature, the debug build of WebCore can be larger than 4 GiB,
813 which can cause error because GNU ar format uses 32-bit integer to
814 store offsets in the symbol table. This patch is similar to
815 https://bugs.webkit.org/show_bug.cgi?id=128596.
817 * Source/cmake/OptionsCommon.cmake:
819 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
821 [GTK] [Wayland] Build by default the X11 and Wayland targets.
822 https://bugs.webkit.org/show_bug.cgi?id=146057
824 Reviewed by Carlos Garcia Campos.
826 * Source/cmake/OptionsGTK.cmake:
828 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
830 [GTK] ar warning when linking static libraries
831 https://bugs.webkit.org/show_bug.cgi?id=144988
833 Reviewed by Carlos Garcia Campos.
835 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
836 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
837 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
838 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
839 should either stop using 'u' or else add 'U' as well in order to disable deterministic
840 archives. Using 'U' should result in a somewhat faster build (at least when using the
841 Makefile generator), but it's unlikely that the difference is significant, so let's simply
842 remove 'u' until someone determines otherwise. This seems like a better option than adding
843 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
844 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
845 behavior change on distributions that do not use --enable-deterministic-archives, notably
848 * Source/cmake/OptionsCommon.cmake:
850 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
852 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
853 https://bugs.webkit.org/show_bug.cgi?id=146590
855 Reviewed by Martin Robinson.
857 * Source/PlatformGTK.cmake: override the cached variables to
858 forcefully disable gtk-doc and gobject-introspection when
860 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
861 documentation syntax when cross-building.
864 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
866 [EFL] test_ewk2_application_cache_manager has been failed since r185527
867 https://bugs.webkit.org/show_bug.cgi?id=146016
869 Reviewed by Gyuyoung Kim.
871 In order to handle properly WebApplicationCacheManagerProxy implementation which use
872 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
873 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
875 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
877 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
879 Implement ECMAScript Internationalization API
880 https://bugs.webkit.org/show_bug.cgi?id=90906
882 Reviewed by Benjamin Poulain.
884 Begin implementing the Intl apis behind ENABLE_INTL flag.
885 Create the base Intl namespace object.
887 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
889 2015-06-30 Philippe Normand <pnormand@igalia.com>
891 [CMake] Error when gst-plugins-base is missing is too confusing
892 https://bugs.webkit.org/show_bug.cgi?id=145682
894 Reviewed by Carlos Garcia Campos.
896 * Source/cmake/OptionsGTK.cmake: Error out if the required
897 GStreamer libraries are not found on the host.
899 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
901 CairoGL should be checked unconditionally
902 https://bugs.webkit.org/show_bug.cgi?id=146390
904 Reviewed by Darin Adler.
906 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
907 it is run unconditionally; this is necessary because its result
908 is used later on, outside of any conditions.
910 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
912 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
913 https://bugs.webkit.org/show_bug.cgi?id=146318
915 Reviewed by Sergio Villar Senin.
917 Enable PUBLIC_SUFFIX_LIST for GTK+.
919 * Source/cmake/OptionsGTK.cmake:
921 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
923 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
925 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
927 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
929 [EFL] Hyphenation is not supported
930 https://bugs.webkit.org/show_bug.cgi?id=89830
932 Reviewed by Gyuyoung Kim.
934 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
936 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
938 [CMake] Add support for building with various sanitizer tools
939 https://bugs.webkit.org/show_bug.cgi?id=131941
941 Reviewed by Martin Robinson.
943 * Source/PlatformGTK.cmake: Don't generate any documentation
944 when compiling with sanitizers enabled.
945 * Source/cmake/OptionsCommon.cmake: Allow linking with
946 undefined symbols when compiling with sanitizers enabled.
948 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
950 libwebkit2gtk fails to link without opengl
951 https://bugs.webkit.org/show_bug.cgi?id=138332
953 Reviewed by Carlos Garcia Campos.
955 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
956 enabled regardless of whether OpenGL is, because certain symbols
957 such as WebCore::GraphicsLayer::create() need to be built.
959 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
961 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
962 https://bugs.webkit.org/show_bug.cgi?id=146181
964 Reviewed by Martin Robinson.
966 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
968 * Source/cmake/OptionsGTK.cmake:
970 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
972 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
973 https://bugs.webkit.org/show_bug.cgi?id=146171
975 Reviewed by Gyuyoung Kim.
977 * Source/cmake/OptionsEfl.cmake:
978 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
980 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
982 [CMake] FindGTK3.cmake should not modify the values of build options
983 https://bugs.webkit.org/show_bug.cgi?id=144613
985 Reviewed by Martin Robinson.
987 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
988 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
989 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
990 GTK3_SUPPORTS_GESTURES for consistency.
991 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
992 available. It's not possible to automatically select a backend correctly anymore, since all
993 options are set at the same time.
995 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
997 Remove unnecessary svn:executable flags
998 https://bugs.webkit.org/show_bug.cgi?id=146107
1000 Reviewed by Alexey Proskuryakov.
1002 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
1003 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
1004 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
1005 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
1006 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
1008 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
1010 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
1011 https://bugs.webkit.org/show_bug.cgi?id=146108
1013 Reviewed by Gyuyoung Kim.
1015 * Source/cmake/OptionsEfl.cmake:
1017 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
1019 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
1020 https://bugs.webkit.org/show_bug.cgi?id=146035
1022 Reviewed by Gyuyoung Kim.
1024 * Source/cmake/OptionsEfl.cmake:
1026 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
1028 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1029 https://bugs.webkit.org/show_bug.cgi?id=145701
1031 Reviewed by Darin Adler.
1033 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1035 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
1037 [iOS] Crash long pressing on <input type=file>
1038 https://bugs.webkit.org/show_bug.cgi?id=146009
1039 <rdar://problem/21234453>
1041 Reviewed by Ryosuke Niwa.
1043 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
1045 2015-06-16 Brent Fulgham <bfulgham@apple.com>
1047 Rollout accidental Xcode project change.
1049 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1051 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1053 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
1054 https://bugs.webkit.org/show_bug.cgi?id=145909
1056 Reviewed by Csaba Osztrogonác.
1058 Bump EWebKit version based on efl library version used by the EWebKit.
1060 * Source/cmake/OptionsEfl.cmake:
1062 2015-06-11 Commit Queue <commit-queue@webkit.org>
1064 Unreviewed, rolling out r185453.
1065 https://bugs.webkit.org/show_bug.cgi?id=145881
1067 it broke the 32-bit build (Requested by clopez on #webkit).
1071 "[GTK] [Wayland] Should be possible to build with support for
1072 both X11 and Wayland."
1073 https://bugs.webkit.org/show_bug.cgi?id=145701
1074 http://trac.webkit.org/changeset/185453
1076 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1078 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1079 https://bugs.webkit.org/show_bug.cgi?id=145701
1081 Reviewed by Žan Doberšek.
1083 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1085 2015-06-03 Daniel Bates <dabates@apple.com>
1087 Caps lock indicator should not be shown in read-only or disabled field
1088 https://bugs.webkit.org/show_bug.cgi?id=145612
1089 <rdar://problem/21227454>
1091 Reviewed by Darin Adler.
1093 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
1094 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
1095 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
1097 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
1099 [cmake] Suppress parentheses-equality warnings
1100 https://bugs.webkit.org/show_bug.cgi?id=145126
1102 Reviewed by Darin Adler.
1104 * Source/cmake/WebKitHelpers.cmake:
1106 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1108 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
1109 https://bugs.webkit.org/show_bug.cgi?id=145408
1111 Reviewed by Carlos Garcia Campos.
1113 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
1114 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
1115 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
1117 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
1118 libraries. Detect also GLX libraries.
1119 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
1120 libraries. Use find_path() to get the include path.
1121 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
1123 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
1124 depending on the libraries found on the system.
1125 Move the detection of GLX (and the include of CMakePushCheckState)
1126 to FindOpenGL.cmake.
1127 Ensure that we only define USE_GLX when we build with OpenGL
1128 (but not with GLESv2).
1130 2015-05-27 Dean Jackson <dino@apple.com>
1132 img.currentSrc problem in strict mode with old picturefill
1133 https://bugs.webkit.org/show_bug.cgi?id=144095
1134 <rdar://problem/21087013>
1136 Reviewed by Simon Fraser.
1138 Add a PICTURE_SIZES flag.
1140 * Source/cmake/OptionsEfl.cmake:
1141 * Source/cmake/OptionsGTK.cmake:
1142 * Source/cmake/OptionsMac.cmake:
1143 * Source/cmake/OptionsWindows.cmake:
1144 * Source/cmake/WebKitFeatures.cmake:
1146 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
1148 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
1150 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1152 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1154 Unreviewed. Export DatabaseProcessMainUnix symbol.
1156 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
1157 is exported in production builds.
1159 * Source/cmake/gtksymbols.filter:
1161 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1163 [GTK] Enable IndexedDB
1164 https://bugs.webkit.org/show_bug.cgi?id=98932
1166 Reviewed by Žan Doberšek.
1168 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1169 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1171 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
1173 [GTK] Bump GCC requirements to 4.9.0
1174 https://bugs.webkit.org/show_bug.cgi?id=145211
1176 Reviewed by Žan Doberšek.
1178 It's required to build with IndexedDB support when using GCC,
1179 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
1181 * Source/cmake/OptionsGTK.cmake:
1183 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
1185 [CMake] Ignore warnings in system headers
1186 https://bugs.webkit.org/show_bug.cgi?id=144747
1188 Reviewed by Darin Adler.
1190 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
1191 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
1192 use the SYSTEM argument to the command (added in 2.8.12).
1196 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
1198 [CMake] Error out when ruby is too old
1199 https://bugs.webkit.org/show_bug.cgi?id=145014
1201 Reviewed by Martin Robinson.
1203 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
1208 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
1210 [GTK] Enable plugin-related CMake options and variables for the X11 target only
1211 https://bugs.webkit.org/show_bug.cgi?id=144995
1213 Reviewed by Carlos Garcia Campos.
1215 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
1216 the X11 windowing target at the moment, so the following options
1217 and variables should be enabled or disabled accordingly:
1218 - ENABLE_PLUGIN_PROCESS_GTK2
1219 - ENABLE_NETSCAPE_PLUGIN_API
1220 - ENABLE_PLUGIN_PROCESS
1222 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
1224 Linker fails without -DDEVELOPER_MODE=ON
1225 https://bugs.webkit.org/show_bug.cgi?id=144117
1227 Reviewed by Gyuyoung Kim.
1229 * Source/cmake/OptionsEfl.cmake:
1230 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
1231 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
1233 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1235 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
1236 https://bugs.webkit.org/show_bug.cgi?id=144846
1238 Reviewed by Martin Robinson.
1240 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
1241 CAIRO_GL_* throughout, because find_package will define
1243 * Source/cmake/OptionsGTK.cmake: Ditto.
1245 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1247 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
1248 https://bugs.webkit.org/show_bug.cgi?id=144845
1250 Reviewed by Martin Robinson.
1252 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
1253 if their corresponding WTF options are ON. The code in npapi.h
1254 relies on these being undefined if they are to be switched off.
1256 2015-05-09 Yoav Weiss <yoav@yoav.ws>
1258 Remove the PICTURE_SIZES build flag
1259 https://bugs.webkit.org/show_bug.cgi?id=144679
1261 Reviewed by Benjamin Poulain.
1263 Removed the PICTURE_SIZES build time flag.
1265 * Source/cmake/OptionsEfl.cmake:
1266 * Source/cmake/OptionsGTK.cmake:
1267 * Source/cmake/OptionsMac.cmake:
1268 * Source/cmake/OptionsWindows.cmake:
1269 * Source/cmake/WebKitFeatures.cmake:
1271 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
1273 [GTK] [CMake] Check for required X libraries
1274 https://bugs.webkit.org/show_bug.cgi?id=144823
1276 Reviewed by Martin Robinson.
1278 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
1280 * Source/cmake/OptionsGTK.cmake:
1282 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
1284 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1285 https://bugs.webkit.org/show_bug.cgi?id=144746
1287 Reviewed by Carlos Garcia Campos.
1289 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1290 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
1291 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
1293 * Source/cmake/OptionsGTK.cmake:
1295 2015-05-08 Daniel Bates <dabates@apple.com>
1297 [iOS] WebSQL operations are not performed after device is locked
1298 https://bugs.webkit.org/show_bug.cgi?id=137503
1299 <rdar://problem/20844952>
1301 Rubber-stamped by Alexey Proskuryakov.
1303 Add a manual test to help verify that we do not regress this issue.
1305 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
1307 2015-05-08 Commit Queue <commit-queue@webkit.org>
1309 Unreviewed, rolling out r183945.
1310 https://bugs.webkit.org/show_bug.cgi?id=144789
1312 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
1316 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
1317 https://bugs.webkit.org/show_bug.cgi?id=144746
1318 http://trac.webkit.org/changeset/183945
1320 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
1322 Cleanup after r183940
1323 https://bugs.webkit.org/show_bug.cgi?id=144768
1327 Looks like the empty directories were not deleted.
1329 * Source/PAL: Removed.
1330 * Source/PAL/Configurations: Removed.
1331 * Source/PAL/PAL.xcodeproj: Removed.
1332 * Source/PAL/graphics: Removed.
1334 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
1336 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1337 https://bugs.webkit.org/show_bug.cgi?id=144746
1339 Reviewed by Martin Robinson.
1341 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1342 what it is defined to, so defining it to 0 effectively turned it on always.
1344 * Source/cmake/OptionsGTK.cmake:
1346 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1348 Revert "Introducing the Platform Abstraction Layer (PAL)"
1349 https://bugs.webkit.org/show_bug.cgi?id=144751
1353 PAL should be a new target inside WebCore, rather than a top-level folder.
1355 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1357 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
1359 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
1361 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1363 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1365 Introducing the Platform Abstraction Layer (PAL)
1366 https://bugs.webkit.org/show_bug.cgi?id=143358
1368 Reviewed by Simon Fraser.
1370 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1372 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
1374 [cmake] Disable GNU Gold linker on Cortex A53
1375 https://bugs.webkit.org/show_bug.cgi?id=144382
1377 Reviewed by Carlos Garcia Campos.
1379 * Source/cmake/OptionsCommon.cmake:
1381 2015-05-01 Martin Robinson <mrobinson@igalia.com>
1383 USE(...) macro should expect unprefixed variables
1384 https://bugs.webkit.org/show_bug.cgi?id=144454
1386 Reviewed by Daniel Bates.
1388 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
1389 * Source/cmake/OptionsEfl.cmake: Ditto.
1390 * Source/cmake/OptionsGTK.cmake: Ditto.
1391 * Source/cmake/OptionsMac.cmake: Ditto.
1392 * Source/cmake/OptionsWinCairo.cmake: Ditto.
1393 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
1396 2015-04-30 Martin Robinson <mrobinson@igalia.com>
1398 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
1399 https://bugs.webkit.org/show_bug.cgi?id=144394
1401 Reviewed by Carlos Garcia Campos.
1403 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
1404 is that it fixes the redirected XComposite window for GTK+, which was accidentally
1405 disabled in previous reworking of the CMake configuration.
1407 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
1408 version of USE variables.
1409 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
1410 is exposed to the build.
1412 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
1414 Unreviewed. Bump GTK+ version numbers.
1416 * Source/cmake/OptionsGTK.cmake:
1418 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1420 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
1421 https://bugs.webkit.org/show_bug.cgi?id=144435
1423 Reviewed by Gyuyoung Kim.
1425 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
1426 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
1428 * Source/cmake/OptionsEfl.cmake:
1430 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
1432 REGRESSION(183583): [Mac] make without SDKROOT has issues
1433 https://bugs.webkit.org/show_bug.cgi?id=144431
1435 Reviewed by Dan Bernstein.
1438 Assume an empty SDKROOT means an macosx variant, so only
1439 enable settings if the SDKROOT is not empty and does not
1442 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1444 Fix the GTK+ build after r183584
1446 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
1448 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1450 [GTK] Add support for automatic hyphenation
1451 https://bugs.webkit.org/show_bug.cgi?id=44478
1453 Reviewed by Carlos Garcia Campos.
1455 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
1456 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
1457 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
1459 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
1461 Failure when building WebKit for appletvsimulator.
1462 https://bugs.webkit.org/show_bug.cgi?id=144356
1464 Reviewed by Alexey Proskuryakov.
1466 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
1467 make TVOS and WatchOS behave correctly.
1471 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1473 [CMake] [GTK] Organize and clean up unused CMake variables
1474 https://bugs.webkit.org/show_bug.cgi?id=144364
1476 Reviewed by Gyuyoung Kim.
1478 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
1479 specific to certain projects into their PlatformGTK.cmake files.
1481 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1483 [EFL] Build failure to find gio-unix
1484 https://bugs.webkit.org/show_bug.cgi?id=144083
1486 Reviewed by Gyuyoung Kim.
1488 Original patch by Doug Newgard <scimma22@outlook.com>
1490 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
1492 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
1494 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
1495 https://bugs.webkit.org/show_bug.cgi?id=143001
1497 Reviewed by Gyuyoung Kim.
1499 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
1500 * Source/cmake/OptionsGTK.cmake: Ditto.
1502 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1504 Unreviewed, fix typo in previous commit
1506 libsecretr -> libsecret in the error message.
1508 * Source/cmake/OptionsGTK.cmake:
1510 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1512 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
1513 https://bugs.webkit.org/show_bug.cgi?id=143546
1515 Reviewed by Martin Robinson.
1517 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
1518 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
1519 default. Fail the build with an informative error message if an optional dependency required
1520 for an enabled feature is not present. Perform find_package commands only when necessary.
1521 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
1524 * Source/cmake/OptionsGTK.cmake:
1526 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1528 [GTK] Make all options actually options
1529 https://bugs.webkit.org/show_bug.cgi?id=144106
1531 Reviewed by Martin Robinson.
1533 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
1534 ENABLE_WAYLAND_TARGET.
1536 * Source/cmake/OptionsGTK.cmake:
1538 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1540 Unreviewed, fix GTK build after r183452
1542 * Source/cmake/OptionsGTK.cmake:
1544 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1546 [GTK] Add one single option to control all OpenGL-related options
1547 https://bugs.webkit.org/show_bug.cgi?id=144105
1549 Reviewed by Martin Robinson.
1551 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
1552 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
1553 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
1554 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
1555 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
1556 presence of CairoGL.
1558 * Source/cmake/OptionsGTK.cmake:
1560 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1562 [GTK] ENABLE_SMOOTH_SCROLLING should be private
1563 https://bugs.webkit.org/show_bug.cgi?id=144306
1565 Reviewed by Martin Robinson.
1567 Make ENABLE_SMOOTH_SCROLLING private instead of public.
1569 * Source/cmake/OptionsGTK.cmake:
1571 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1573 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
1574 https://bugs.webkit.org/show_bug.cgi?id=144193
1576 Reviewed by Darin Adler.
1578 * Source/cmake/OptionsEfl.cmake:
1579 * Source/cmake/OptionsGTK.cmake:
1580 * Source/cmake/OptionsWinCairo.cmake:
1581 * Source/cmake/WebKitFeatures.cmake:
1583 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1585 [CMake] Should be possible for an option to conflict with other options
1586 https://bugs.webkit.org/show_bug.cgi?id=143956
1588 Reviewed by Martin Robinson.
1590 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
1592 * Source/cmake/WebKitFeatures.cmake:
1594 2015-04-22 Martin Robinson <mrobinson@igalia.com>
1596 [CMake] Autogenerate cmakeconfig.h.cmake
1597 https://bugs.webkit.org/show_bug.cgi?id=143997
1599 Reviewed by Csaba Osztrogonác.
1601 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
1602 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
1603 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
1604 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
1605 Do some other miscellaneous related cleanup.
1606 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
1607 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
1608 build exposed variables. Add a macro to generate a configuration from them.
1609 * Source/cmakeconfig.h.cmake: Removed.
1611 2015-04-24 Philippe Normand <pnormand@igalia.com>
1613 [JHBuild] Move to upstream OpenWebRTC
1614 https://bugs.webkit.org/show_bug.cgi?id=144145
1616 Reviewed by Carlos Garcia Campos.
1618 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
1621 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
1623 [ES6] Implement ES6 template literals
1624 https://bugs.webkit.org/show_bug.cgi?id=142691
1626 Reviewed by Darin Adler.
1628 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
1630 * Source/cmake/WebKitFeatures.cmake:
1631 * Source/cmakeconfig.h.cmake:
1633 2015-04-25 Martin Robinson <mrobinson@igalia.com>
1635 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
1636 https://bugs.webkit.org/show_bug.cgi?id=144182
1638 Reviewed by Simon Fraser.
1640 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1641 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1642 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1643 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1644 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1646 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1648 [GTK] Add more public options
1649 https://bugs.webkit.org/show_bug.cgi?id=144116
1651 Reviewed by Martin Robinson.
1653 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
1655 * Source/cmake/OptionsGTK.cmake:
1657 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1659 [CMake] Some internal variables are not marked as advanced
1660 https://bugs.webkit.org/show_bug.cgi?id=143595
1662 Reviewed by Martin Robinson.
1664 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
1665 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
1667 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1669 [GTK] Mark as advanced the build options we don't want to expose
1670 https://bugs.webkit.org/show_bug.cgi?id=143558
1672 Reviewed by Martin Robinson.
1674 Mark various options as private instead of public.
1676 * Source/cmake/OptionsGTK.cmake:
1678 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1680 [CMake] Should be possible for an option to depend on multiple options
1681 https://bugs.webkit.org/show_bug.cgi?id=143839
1683 Reviewed by Martin Robinson.
1685 Use a list instead of a single variable to track the dependencies of each option. Iterate
1686 over the list as many times as necessary to ensure all options are properly disabled.
1688 * Source/cmake/WebKitFeatures.cmake:
1690 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1692 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
1693 https://bugs.webkit.org/show_bug.cgi?id=144103
1695 Reviewed by Martin Robinson.
1697 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
1699 * Source/cmake/WebKitFeatures.cmake:
1701 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1703 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
1704 https://bugs.webkit.org/show_bug.cgi?id=144102
1706 Reviewed by Martin Robinson.
1708 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
1709 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
1710 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
1712 * Source/cmake/OptionsGTK.cmake:
1714 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1716 [CMake] Clean up JSC JIT options
1717 https://bugs.webkit.org/show_bug.cgi?id=143998
1719 Reviewed by Filip Pizlo.
1721 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
1722 define for ENABLE_FTL_NATIVE_CALL_INLINING.
1723 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
1724 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
1725 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
1726 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
1728 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1730 [CMake] Use lowercase for local variables in macros
1731 https://bugs.webkit.org/show_bug.cgi?id=144059
1733 Reviewed by Martin Robinson.
1735 Convert some variable names to lowercase.
1737 * Source/cmake/WebKitFeatures.cmake:
1739 2015-04-22 Commit Queue <commit-queue@webkit.org>
1741 Unreviewed, rolling out r183116.
1742 https://bugs.webkit.org/show_bug.cgi?id=144060
1744 Inadvertently deleted a file... (Requested by mcatanzaro on
1749 "[CMake] Use lowercase for local variables in macros"
1750 https://bugs.webkit.org/show_bug.cgi?id=144059
1751 http://trac.webkit.org/changeset/183116
1753 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1755 [CMake] Use lowercase for local variables in macros
1756 https://bugs.webkit.org/show_bug.cgi?id=144059
1758 Reviewed by Martin Robinson.
1760 Convert some variable names to lowercase.
1762 * Source/cmake/WebKitFeatures.cmake:
1764 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1766 [CMake] Features list should print dots every other row
1767 https://bugs.webkit.org/show_bug.cgi?id=143832
1769 Reviewed by Martin Robinson.
1771 Discount private options when determining whether to print dots on a given row of the
1772 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
1773 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
1774 wasn't noticed because it only affects the first line, and use of the variable name as a
1775 string in a conditional.)
1777 * Source/cmake/WebKitFeatures.cmake:
1779 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1781 [CMake] Require specifying visibility of WebKit options
1782 https://bugs.webkit.org/show_bug.cgi?id=143831
1784 Reviewed by Alex Christensen.
1786 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
1787 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
1788 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
1789 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
1790 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
1791 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
1792 cross-platform options as PRIVATE.
1794 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1796 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
1797 https://bugs.webkit.org/show_bug.cgi?id=143935
1799 Reviewed by Darin Adler.
1801 Some variables aren't defined in these files or unused variables aren't removed. This
1802 patch cleans up it as well as fix wrong alphabet order.
1804 * Source/cmake/WebKitFeatures.cmake:
1805 * Source/cmakeconfig.h.cmake:
1807 2015-04-19 Simon Fraser <simon.fraser@apple.com>
1809 Restore the WebKit.xcworkspace to the way it was before r182899,
1810 which inadvertently added the Source directory and a couple of source
1813 * WebKit.xcworkspace/contents.xcworkspacedata:
1815 2015-04-16 Basile Clement <basile_clement@apple.com>
1817 Extract the allocation profile from JSFunction into a rare object
1818 https://bugs.webkit.org/show_bug.cgi?id=143807
1820 Reviewed by Filip Pizlo.
1822 * WebKit.xcworkspace/contents.xcworkspacedata:
1824 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
1826 [EFL] Bump LLVM to version 3.6.0 on X86_64
1827 https://bugs.webkit.org/show_bug.cgi?id=143604
1829 Reviewed by Gyuyoung Kim.
1831 * Source/cmake/FindLLVM.cmake: Added version handling.
1832 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
1834 2015-04-15 Timothy Horton <timothy_horton@apple.com>
1836 Custom CSS cursors do not use -webkit-image-set on retina displays
1837 https://bugs.webkit.org/show_bug.cgi?id=120783
1839 Reviewed by Beth Dakin.
1840 Patch by Evan Wallace <evan.exe@gmail.com>.
1842 Add a manual test for custom CSS cursors on retina displays.
1844 * ManualTests/retina-cursors.html: Added.
1846 2015-04-15 Alex Christensen <achristensen@webkit.org>
1848 Progress towards CMake on Mac.
1849 https://bugs.webkit.org/show_bug.cgi?id=143785
1851 Reviewed by Csaba Osztrogonác.
1854 * Source/cmake/OptionsMac.cmake:
1855 * Source/cmake/WebKitFS.cmake:
1857 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
1859 Cannot click "Next" button on Google two-factor auth setup page
1861 <https://bugs.webkit.org/show_bug.cgi?id=143624>
1862 <rdar://problem/19175714>
1864 Reviewed by Darin Adler.
1866 * ManualTests/button-that-focuses-itself-on-click.html: Added.
1868 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
1870 [cmake] REGRESSION(182663): It broke feature dependency handling
1871 https://bugs.webkit.org/show_bug.cgi?id=143665
1873 Reviewed by Csaba Osztrogonác.
1875 Don't try to check the value of options before defining the options.
1877 * Source/cmake/WebKitFeatures.cmake:
1879 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
1881 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
1882 https://bugs.webkit.org/show_bug.cgi?id=143664
1884 Reviewed by Gyuyoung Kim.
1886 * Source/cmake/OptionsEfl.cmake:
1887 * Source/cmake/OptionsGTK.cmake:
1888 * Source/cmake/WebKitFeatures.cmake:
1889 * Source/cmakeconfig.h.cmake:
1891 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1893 [EFL] Enable Media Source
1894 https://bugs.webkit.org/show_bug.cgi?id=143635
1896 Reviewed by Csaba Osztrogonác.
1898 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
1900 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1902 [CMake] Miscellaneous issues in WebKitFeatures.cmake
1903 https://bugs.webkit.org/show_bug.cgi?id=143636
1905 Reviewed by Martin Robinson.
1907 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
1908 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
1910 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
1911 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
1913 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
1915 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
1917 Fix ENABLE_TOUCH_SLIDER so that it can be used
1921 * Source/cmake/WebKitFeatures.cmake:
1923 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1925 [CMake] Print sorted feature list at the very end of the configure process
1926 https://bugs.webkit.org/show_bug.cgi?id=143596
1928 Reviewed by Martin Robinson.
1930 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
1931 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
1932 and sort the options before printing. Reorder some code so that features still get
1933 propagated to the bindings generators.
1935 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1937 [CMake] Options should be marked as advanced by default
1938 https://bugs.webkit.org/show_bug.cgi?id=143572
1940 Reviewed by Gyuyoung Kim.
1942 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
1943 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
1944 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
1945 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
1946 option without making it public.
1948 * Source/cmake/WebKitFeatures.cmake:
1950 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1952 [CMake] Remove unnecessary ENABLE_WEBCORE switch
1953 https://bugs.webkit.org/show_bug.cgi?id=143584
1955 Reviewed by Csaba Osztrogonác.
1957 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
1961 * Source/CMakeLists.txt:
1962 * Source/cmake/OptionsGTK.cmake:
1963 * Source/cmake/WebKitFS.cmake:
1965 2015-04-08 Filip Pizlo <fpizlo@apple.com>
1967 Unreviewed, revert accidental commit.
1971 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
1973 Add CMake build system for WinCairo port.
1974 https://bugs.webkit.org/show_bug.cgi?id=115944
1976 Reviewed by Chris Dumez.
1978 * Source/cmake/OptionsWindows.cmake:
1979 * Source/cmake/WebKitMacros.cmake:
1980 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1982 2015-04-06 Alberto Garcia <berto@igalia.com>
1984 [GTK] Fix HPPA build
1985 https://bugs.webkit.org/show_bug.cgi?id=143453
1987 Reviewed by Darin Adler.
1989 Add HPPA to the list of supported CPUs.
1993 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
1995 Unreviewed, kick the GTK bots to fix an incremental build issue.
1997 * Source/cmake/OptionsGTK.cmake:
1999 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
2001 Fix the EFL and GTK build after r182243
2002 https://bugs.webkit.org/show_bug.cgi?id=143361
2004 Reviewed by Csaba Osztrogonác.
2006 * Source/PlatformEfl.cmake: Add a custom command that copies
2007 the InspectorBackendCommands.js file into the proper directory
2008 under DerivedSources/WebInspectorUI/.
2010 2015-04-01 Alex Christensen <achristensen@webkit.org>
2012 Progress towards CMake on Windows and Mac.
2013 https://bugs.webkit.org/show_bug.cgi?id=143293
2015 Reviewed by Filip Pizlo.
2018 Set DERIVED_SOURCES_WTF_DIR for Windows.
2019 * Source/CMakeLists.txt:
2020 Don't compile bmalloc on Windows.
2021 * Source/cmake/OptionsCommon.cmake:
2022 Use the absolute path of the C preprocessor.
2023 * Source/cmake/OptionsWinCairo.cmake:
2024 Added needed definitions.
2025 * Source/cmake/OptionsWindows.cmake:
2026 Set some default values and removed support for old Visual Studio versions before /MP.
2027 * Source/cmake/WebKitFS.cmake:
2028 Make WTF DerivedSources directory.
2029 * Source/cmake/WebKitMacros.cmake:
2030 Added ADD_PRECOMPILED_HEADER macro based on
2031 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2033 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
2035 Use colored diagnostics when building with cmake + ninja + clang
2036 https://bugs.webkit.org/show_bug.cgi?id=143297
2038 Reviewed by Žan Doberšek.
2040 Because that ninja sets subprocess stdout/stderr to a pipe, clang
2041 disables colored output.
2042 This patch forces clang to use colored diagnostics when we are using
2045 * Source/cmake/OptionsCommon.cmake:
2047 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2049 [CMake] Update old CMakeList.txt in gtest
2050 https://bugs.webkit.org/show_bug.cgi?id=143192
2052 Reviewed by Darin Adler.
2054 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
2055 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
2056 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
2058 * Source/CMakeLists.txt:
2059 * Source/cmake/gtest/CMakeLists.txt: Removed.
2061 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2063 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
2064 https://bugs.webkit.org/show_bug.cgi?id=143138
2066 Reviewed by Csaba Osztrogonác.
2068 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
2069 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
2071 * Source/cmake/OptionsWindows.cmake:
2072 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
2073 * Source/cmake/WebKitMacros.cmake:
2075 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2077 [GStreamer] share GL context in pipeline, part 2
2078 https://bugs.webkit.org/show_bug.cgi?id=143049
2080 Reviewed by Carlos Garcia Campos.
2082 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
2083 OpenGL/ES2 is found and GLX/EGL is found too.
2085 2015-03-26 Alex Christensen <achristensen@webkit.org>
2087 Progress towards CMake on Mac.
2088 https://bugs.webkit.org/show_bug.cgi?id=143112
2090 Reviewed by Chris Dumez.
2092 * Source/cmake/OptionsMac.cmake:
2094 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
2096 [EFL] Add OpenWebRTC in jhbuild
2097 https://bugs.webkit.org/show_bug.cgi?id=142778
2099 Reviewed by Gyuyoung Kim.
2101 Original patch by Philippe Normand <pnormand@igalia.com>
2103 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
2104 mediastream build is enabled.
2106 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
2108 [GTK] Add a configure option to build without Redirected XComposite Window
2109 https://bugs.webkit.org/show_bug.cgi?id=142865
2111 Reviewed by Žan Doberšek.
2113 The Redirected XComposite Window was added to support some
2114 features like GtkOverlay, but in cases where we don't need such
2115 features, it's more efficient to use the XID of the WebKitWebView
2116 window as the native surface handle for the accelerated
2117 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
2118 that is enabled by default for X11 target when OpenGL is enabled.
2120 * Source/cmake/OptionsGTK.cmake:
2122 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
2124 [GTK] Search for the Wayland dependency when enabling Wayland target
2125 https://bugs.webkit.org/show_bug.cgi?id=142876
2127 Reviewed by Carlos Garcia Campos.
2129 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
2130 requirement of either the GTK+ or GDK pkg-config files, so we have to
2131 search for it ourselves when WebKitGTK+ has been configured to support
2132 the Wayland windowing target.
2134 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2136 Unreviewed, kick the GTK bots to regenerate makefile.
2137 https://bugs.webkit.org/show_bug.cgi?id=137394
2139 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
2140 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
2142 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2144 Unreviewed, kick the GTK bots to regenerate makefile.
2145 https://bugs.webkit.org/show_bug.cgi?id=137394
2147 * Source/cmake/OptionsEfl.cmake:
2149 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
2151 [GTK] Fix inspector userinterface related incremental build issue
2152 https://bugs.webkit.org/show_bug.cgi?id=142849
2154 Reviewed by Carlos Garcia Campos.
2156 * Source/cmake/OptionsGTK.cmake: Revert r181733.
2158 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
2160 Unreviewed, kick the GTK bots to regenerate makefile.
2162 * Source/cmake/OptionsGTK.cmake:
2164 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
2166 [EFL] Expose JavaScript binding interface through ewk_extension
2167 https://bugs.webkit.org/show_bug.cgi?id=142033
2169 Reviewed by Gyuyoung Kim.
2171 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
2173 2015-03-17 Philippe Normand <pnormand@igalia.com>
2175 [GTK] basic OpenWebRTC build support
2176 https://bugs.webkit.org/show_bug.cgi?id=142393
2178 Reviewed by Carlos Garcia Campos.
2180 * Source/cmake/FindOpenWebRTC.cmake: Added.
2181 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
2182 mediastream build is enabled.
2184 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2186 [CMake][EFL] Build test tools only for developer mode
2187 https://bugs.webkit.org/show_bug.cgi?id=142761
2189 Reviewed by Csaba Osztrogonác.
2191 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
2193 * Source/cmake/OptionsEfl.cmake:
2194 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
2195 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
2196 * Source/cmakeconfig.h.cmake:
2198 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
2200 Enable ES6 classes by default
2201 https://bugs.webkit.org/show_bug.cgi?id=142774
2203 Reviewed by Gavin Barraclough.
2205 * Source/cmake/WebKitFeatures.cmake:
2207 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2209 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
2210 https://bugs.webkit.org/show_bug.cgi?id=142722
2212 Reviewed by Csaba Osztrogonác.
2214 Categorize to define cmake variables, to find necessary packages,
2215 use upper case for "glib_conponents" cmake variable name, re-arrange
2216 wrong alphabet sorting, and so on.
2218 * CMakeLists.txt: Remove WinCE port.
2219 * Source/cmake/OptionsEfl.cmake:
2221 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2223 [GStreamer] share GL context in pipeline
2224 https://bugs.webkit.org/show_bug.cgi?id=142693
2226 Reviewed by Philippe Normand.
2228 Add search of gstreamer-gl library in the GStreamer installation. If
2229 it is found, WTF_USE_GSTREAMER_GL macro is defined.
2231 * Source/cmake/FindGStreamer.cmake:
2232 * Source/cmake/OptionsGTK.cmake:
2234 2015-03-13 Alex Christensen <achristensen@webkit.org>
2236 Progress towards CMake on Mac.
2237 https://bugs.webkit.org/show_bug.cgi?id=142680
2239 Reviewed by Gyuyoung Kim.
2242 * Source/PlatformMac.cmake: Added stub.
2243 * Source/cmake/OptionsMac.cmake:
2244 Change defines to get CMake working.
2246 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2248 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
2249 https://bugs.webkit.org/show_bug.cgi?id=126688
2251 Reviewed by Gustavo Noronha Silva.
2253 Add ENABLE_MINIBROWSER option, enabled by default for development
2254 builds and disabled for production builds unless explicilty enabled.
2256 * Source/cmake/OptionsGTK.cmake:
2258 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2260 [GTK] Do not look for child processes in the UI process binary path
2261 https://bugs.webkit.org/show_bug.cgi?id=135752
2263 Reviewed by Gustavo Noronha Silva.
2265 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
2266 build for development builds.
2268 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
2270 [GTK] Add a configure option to build with OpenGL ES 2
2271 https://bugs.webkit.org/show_bug.cgi?id=142498
2273 Reviewed by Martin Robinson.
2275 Add ENABLE_GLES2 option. It's disabled by default, but if passed
2276 GLES2 is required and OpenGL is not even searched. Otherwise we
2277 search for OpenGL as usual, using it only if present.
2279 * Source/cmake/OptionsGTK.cmake:
2281 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
2283 [cmake] Handle unused parameter warnings as build errors except in WebKit2
2284 https://bugs.webkit.org/show_bug.cgi?id=142338
2286 Reviewed by Gyuyoung Kim.
2288 * Source/cmake/WebKitHelpers.cmake:
2290 2015-03-03 Daniel Bates <dabates@apple.com>
2292 Convert ManualTests/svg-tooltip.svg to a DRT test
2293 https://bugs.webkit.org/show_bug.cgi?id=140480
2295 Reviewed by Alex Christensen.
2297 * ManualTests/svg-tooltip.svg: Removed.
2299 2015-03-02 Debarshi Ray <debarshir@gnome.org>
2301 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
2302 https://bugs.webkit.org/show_bug.cgi?id=142165
2304 Reviewed by Carlos Garcia Campos.
2306 * Source/cmake/gtksymbols.filter:
2308 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
2310 [EFL] Remove unnecessary comment after r179110
2311 https://bugs.webkit.org/show_bug.cgi?id=142042
2313 Reviewed by Gyuyoung Kim.
2315 * Source/cmake/OptionsEfl.cmake:
2317 2015-02-23 Tomas Popela <tpopela@redhat.com>
2319 [GTK] Fails to compile with cmake 3.2.x
2320 https://bugs.webkit.org/show_bug.cgi?id=141796
2322 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
2323 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
2324 added and the build will fail.
2326 Reviewed by Martin Robinson.
2328 * Source/cmake/OptionsGTK.cmake:
2330 2015-02-20 Alexey Proskuryakov <ap@apple.com>
2332 Remove svn:keywords property.
2334 As far as I can tell, the property had no effect on any of these files, but also,
2335 when it has effect it's likely harmful.
2337 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
2338 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
2339 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
2340 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
2341 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
2342 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
2343 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
2344 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
2345 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
2346 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
2347 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
2348 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
2349 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
2350 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
2352 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2354 [CMAKE] Remove CMakeLists.txt in WK1 port
2355 https://bugs.webkit.org/show_bug.cgi?id=141617
2357 Reviewed by Anders Carlsson.
2359 Nobody uses CMake in WK1 port. Remove it.
2363 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
2365 Unreviewed, remove empty directories.
2367 * ManualTests/qt: Removed.
2369 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
2371 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
2372 https://bugs.webkit.org/show_bug.cgi?id=141481
2374 Reviewed by Csaba Osztrogonác.
2376 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
2378 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2380 [EFL][GTK] Use bmalloc instead of tcmalloc
2381 https://bugs.webkit.org/show_bug.cgi?id=140162
2383 Reviewed by Carlos Garcia Campos.
2385 Add bmalloc directory to build list.
2387 * CMakeLists.txt: Define BMALLOC_DIR directory.
2388 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
2390 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
2392 [GTK] Add default color chooser implementation using GtkColorChooserDialog
2393 https://bugs.webkit.org/show_bug.cgi?id=141392
2395 Reviewed by Gustavo Noronha Silva.
2397 Enable INPUT_TYPE_COLOR by default for GTK+ port.
2399 * Source/cmake/OptionsGTK.cmake:
2401 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
2403 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
2404 https://bugs.webkit.org/show_bug.cgi?id=141328
2406 Reviewed by Darin Adler.
2408 Added as manual test because it involves a huge grid allocation
2409 which is very slow on Debug bots, the only ones capable to trigger
2412 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
2414 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
2416 [Streams API] Implement a barebone ReadableStream interface
2417 https://bugs.webkit.org/show_bug.cgi?id=141045
2419 Reviewed by Benjamin Poulain.
2421 * Source/cmake/WebKitFeatures.cmake:
2422 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
2424 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2426 Revert accidental change in r179490.
2430 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2432 Unreviewed, revert accidental change to Makefile.shared in r179478
2436 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
2438 [CMake] Minimum python version should be 2.7.
2439 https://bugs.webkit.org/show_bug.cgi?id=140997
2441 Reviewed by Csaba Osztrogonác.
2445 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
2447 Apply feTurbulence spec change to fix zero length vector generation
2448 https://bugs.webkit.org/show_bug.cgi?id=140812
2450 Reviewed by Darin Adler.
2452 Recently a bug with the turbulence algorithm was corrected in the
2453 Filter Effects specification.
2454 For some seed values this bug allowed zero length vectors to be generated.
2455 This resulted in large solid color squares being present in the generated image.
2456 The feTurbulence algorithm was updated to reject zero length vectors. This patch
2457 applies that change in WebCore.
2459 Test: svg/filters/feTurbulence_bad_seeds.html
2461 * platform/graphics/filters/FETurbulence.cpp:
2462 (WebCore::FETurbulence::initPaint):
2463 Added rejection sampling during vector generation to avoid zero length vectors.
2465 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2467 [cmake] Remove compiler version calculate cruft
2468 https://bugs.webkit.org/show_bug.cgi?id=140885
2470 Reviewed by Darin Adler.
2472 * Source/cmake/WebKitHelpers.cmake:
2474 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2476 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
2477 https://bugs.webkit.org/show_bug.cgi?id=140886
2479 Reviewed by Žan Doberšek.
2481 * Source/cmake/WebKitHelpers.cmake:
2483 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
2485 [GTK] gtkdoc does not appear in DevHelp
2486 https://bugs.webkit.org/show_bug.cgi?id=139369
2488 Reviewed by Philippe Normand.
2490 Expect the gtkdoc to be generated in folders named with the API version.
2492 * Source/PlatformGTK.cmake:
2494 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
2496 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
2497 https://bugs.webkit.org/show_bug.cgi?id=140609
2499 Reviewed by Csaba Osztrogonác.
2501 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
2502 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
2503 compilation flags. Those were added after the jsCStack branch merge, but
2504 can now be removed since the -ftree-dce issues were fixed in GCC, and
2505 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
2507 * Source/cmake/OptionsEfl.cmake:
2508 * Source/cmake/OptionsGTK.cmake:
2510 2015-01-26 Commit Queue <commit-queue@webkit.org>
2512 Unreviewed, rolling out r179107.
2513 https://bugs.webkit.org/show_bug.cgi?id=140880
2515 The GCC in the bots doesn't support the AsyncTask
2516 implementation (Requested by KaL on #webkit).
2520 "[GTK] Enable IndexedDB"
2521 https://bugs.webkit.org/show_bug.cgi?id=98932
2522 http://trac.webkit.org/changeset/179107
2524 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
2526 [GTK] Enable IndexedDB
2527 https://bugs.webkit.org/show_bug.cgi?id=98932
2529 Reviewed by Žan Doberšek.
2531 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
2532 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
2534 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
2536 [GTK] Add initial database process support
2537 https://bugs.webkit.org/show_bug.cgi?id=139491
2539 Reviewed by Sergio Villar Senin.
2541 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
2543 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
2545 Add a build flag for ES6 class syntax
2546 https://bugs.webkit.org/show_bug.cgi?id=140760
2548 Reviewed by Michael Saboff.
2550 * Source/cmake/WebKitFeatures.cmake:
2551 * Source/cmakeconfig.h.cmake:
2553 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2555 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
2556 https://bugs.webkit.org/show_bug.cgi?id=140049
2558 Reviewed by Gyuyoung Kim.
2560 * Source/cmake/OptionsCommon.cmake:
2562 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2564 Remove ENABLE(INSPECTOR) ifdef guards
2565 https://bugs.webkit.org/show_bug.cgi?id=140668
2567 Reviewed by Darin Adler.
2569 * Source/PlatformEfl.cmake:
2570 * Source/cmake/OptionsEfl.cmake:
2571 * Source/cmake/OptionsGTK.cmake:
2572 * Source/cmake/OptionsMac.cmake:
2573 * Source/cmake/WebKitFeatures.cmake:
2574 * Source/cmakeconfig.h.cmake:
2576 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
2578 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
2580 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2582 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2584 [CMAKE] Fix cmake warning
2585 https://bugs.webkit.org/show_bug.cgi?id=140497
2587 Reviewed by Gustavo Noronha Silva.
2589 r173155 already tried to fix cmake warning though, the warning is still exist.
2590 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
2591 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
2592 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
2593 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
2594 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
2598 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
2600 [GTK] Generate the make dist manifest from a CMake template file
2601 https://bugs.webkit.org/show_bug.cgi?id=139387
2603 Reviewed by Martin Robinson.
2605 Generate manifest.txt from manifest.txt.in. Only expose the dist and
2606 distcheck targets for developer builds, as they won't work when
2607 building from a tarball because the manifest is not distributed.
2609 * Source/PlatformGTK.cmake:
2611 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
2613 Remove ENABLE(SQL_DATABASE) guards
2614 https://bugs.webkit.org/show_bug.cgi?id=140434
2616 Reviewed by Darin Adler.
2618 * Source/cmake/OptionsMac.cmake:
2619 * Source/cmake/WebKitFeatures.cmake:
2620 * Source/cmakeconfig.h.cmake:
2622 2015-01-11 Sam Weinig <sam@webkit.org>
2624 Remove support for SharedWorkers
2625 https://bugs.webkit.org/show_bug.cgi?id=140344
2627 Reviewed by Anders Carlsson.
2629 * Source/cmake/OptionsEfl.cmake:
2630 * Source/cmake/OptionsGTK.cmake:
2631 * Source/cmake/OptionsMac.cmake:
2632 * Source/cmake/WebKitFeatures.cmake:
2633 * Source/cmakeconfig.h.cmake:
2635 2015-01-10 Dan Bernstein <mitz@apple.com>
2637 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
2638 https://bugs.webkit.org/show_bug.cgi?id=140339
2640 Reviewed by Mark Rowe.
2642 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
2643 prevents unnecessary rebuilding due to PATH differences.
2645 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
2647 [GTK][ThreadedCompositor] Add support for threaded compositor.
2648 https://bugs.webkit.org/show_bug.cgi?id=118265
2650 Reviewed by Martin Robinson.
2652 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
2653 autotools build systems. The feature is disabled by default.
2654 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
2655 from the feature flags.
2657 * Source/cmake/OptionsEfl.cmake:
2658 * Source/cmake/OptionsGTK.cmake:
2659 * Source/cmake/WebKitFeatures.cmake:
2660 * Source/cmakeconfig.h.cmake:
2662 2014-12-23 Alexey Proskuryakov <ap@apple.com>
2664 Simplify building with ASan
2665 https://bugs.webkit.org/show_bug.cgi?id=139916
2667 Reviewed by Mark Rowe.
2669 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
2671 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
2673 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
2675 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2677 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
2679 Null dereference performing a "TapAndAHalf" gesture in Google search field
2681 <https://bugs.webkit.org/show_bug.cgi?id=139506>
2682 <rdar://problem/19028828>
2684 Reviewed by Darin Adler.
2686 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
2688 2014-12-10 Dean Jackson <dino@apple.com>
2690 Blur filter performance test doesn't provide results
2691 https://bugs.webkit.org/show_bug.cgi?id=139462
2693 Reviewed by Sam Weinig.
2695 This can't currently work under our performance test
2696 infrastructure. Move it to a manual test to avoid
2697 putting FAILures into the results.
2699 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
2701 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2703 [GTK][WK2] Add HTML5 Notifications support
2704 https://bugs.webkit.org/show_bug.cgi?id=61140
2706 Reviewed by Carlos Garcia Campos.
2708 * Source/cmake/FindLibNotify.cmake: Added.
2709 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
2710 libnotify and use it for a default implementation when found.
2712 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
2714 REGRESSION(r155906): Page content disappears on Tuaw article after loading
2715 https://bugs.webkit.org/show_bug.cgi?id=138100
2717 Reviewed by Simon Fraser.
2719 DRT causes an extra paint which makes it impossible to test this with
2722 * ManualTests/float-layer-not-painting.html: Added.
2724 2014-12-07 Alberto Garcia <berto@igalia.com>
2726 [GTK] WebKit has a new required dependency on GnuTLS
2727 https://bugs.webkit.org/show_bug.cgi?id=136158
2729 Reviewed by Martin Robinson.
2731 Detect if GnuTLS is installed and enable or disable subtle crypto
2732 support accordingly.
2734 * Source/cmake/OptionsGTK.cmake:
2736 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
2738 [GTK] Missing API detected in GObject DOM bindings after r176630
2739 https://bugs.webkit.org/show_bug.cgi?id=139201
2741 Reviewed by Gustavo Noronha Silva.
2743 Change GENERATE_BINDINGS macro to receive a list of optional
2744 additional dependencies, so that we can add more dependecies
2745 without having to change the macro.
2747 * Source/cmake/WebKitMacros.cmake:
2749 2014-12-05 Simon Fraser <simon.fraser@apple.com>
2751 Programmatic scrolling and content changes are not always synchronized
2752 https://bugs.webkit.org/show_bug.cgi?id=139245
2753 rdar://problem/18833612
2755 Reviewed by Anders Carlsson.
2757 Manual test that tries to sync layout with programmatic scrolling.
2759 * ManualTests/programmatic-scroll-flicker.html: Added.
2761 2014-12-04 Alberto Garcia <berto@igalia.com>
2763 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
2764 https://bugs.webkit.org/show_bug.cgi?id=136576
2766 Reviewed by Carlos Garcia Campos.
2768 CMake should complain if Accelerated 2D Canvas is explicitly
2769 enabled but cairo-gl is not found.
2771 * Source/cmake/OptionsGTK.cmake:
2773 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2775 [EFL] Add subtle crypto to the build system
2776 https://bugs.webkit.org/show_bug.cgi?id=138612
2778 Reviewed by Csaba Osztrogonác.
2780 * Source/cmake/OptionsEfl.cmake:
2782 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2784 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
2785 https://bugs.webkit.org/show_bug.cgi?id=139085
2787 Reviewed by Andreas Kling.
2789 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
2790 * Source/cmake/WebKitFeatures.cmake: ditto.
2791 * Source/cmakeconfig.h.cmake: ditto.
2793 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
2795 [EFL] Drop support for the EFL 1.7
2796 https://bugs.webkit.org/show_bug.cgi?id=139114
2798 Reviewed by Gyuyoung Kim.
2800 * Source/cmake/EFLHelpers.cmake: Removed.
2801 * Source/cmake/FindEcore.cmake: Removed.
2802 * Source/cmake/FindEdje.cmake: Removed.
2803 * Source/cmake/FindEet.cmake: Removed.
2804 * Source/cmake/FindEeze.cmake: Removed.
2805 * Source/cmake/FindEfreet.cmake: Removed.
2806 * Source/cmake/FindEina.cmake: Removed.
2807 * Source/cmake/FindElementary.cmake: Removed.
2808 * Source/cmake/FindEvas.cmake: Removed.
2809 * Source/cmake/OptionsEfl.cmake:
2811 2014-11-28 Philippe Normand <pnormand@igalia.com>
2813 [CMake] Build failure against GStreamer git master
2814 https://bugs.webkit.org/show_bug.cgi?id=138872
2816 Reviewed by Csaba Osztrogon.
2818 * Source/cmake/FindGStreamer.cmake: Simplified the
2819 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
2820 headers lookup, there's no need to do this manually. Also
2821 explicitely check the version specified in GStreamer_FIND_VERSION.
2823 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
2825 [EFL] Remove E_Dbus dependency
2826 https://bugs.webkit.org/show_bug.cgi?id=136355
2828 Reviewed by Gyuyoung Kim.
2830 * Source/cmake/FindE_DBus.cmake: Removed.
2831 * Source/cmake/OptionsEfl.cmake:
2833 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
2835 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2837 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2839 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
2841 [CMake] Use ld.gold if it is available to speedup builds
2842 https://bugs.webkit.org/show_bug.cgi?id=137953
2844 Reviewed by Carlos Garcia Campos.
2846 * Source/cmake/OptionsCommon.cmake:
2848 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
2850 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
2851 https://bugs.webkit.org/show_bug.cgi?id=138840
2853 Reviewed by Csaba Osztrogonác.
2855 * Source/cmake/OptionsCommon.cmake:
2857 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
2859 Remove Source/Platform cruft
2860 https://bugs.webkit.org/show_bug.cgi?id=138658
2862 Reviewed by Anders Carlsson.
2865 * Source/Platform: Removed.
2867 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
2869 Enable Cortex-A53-specific code paths by default if core is detected.
2870 https://bugs.webkit.org/show_bug.cgi?id=138499
2872 Reviewed by Csaba Osztrogonác.
2874 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
2875 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
2878 Since on ARM64/Linux the part number that cpuinfo reports depends on
2879 the core the query is run on, the check is bound to and executed on the
2880 available cores one by one.
2882 * Source/cmake/OptionsCommon.cmake:
2884 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2886 [EFL] Remove unnecessary version check from OptionsEfl.cmake
2887 https://bugs.webkit.org/show_bug.cgi?id=138498
2889 Reviewed by Csaba Osztrogonác.
2891 * Source/cmake/OptionsEfl.cmake:
2893 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2895 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
2896 https://bugs.webkit.org/show_bug.cgi?id=138465
2898 Reviewed by Gyuyoung Kim.
2900 * Source/cmake/OptionsEfl.cmake:
2902 2014-11-03 Dean Jackson <dino@apple.com>
2904 Add ENABLE_FILTERS_LEVEL_2 feature guard.
2905 https://bugs.webkit.org/show_bug.cgi?id=138362
2907 Reviewed by Tim Horton.
2909 Add a new feature define for Level 2 of CSS Filters.
2910 http://dev.w3.org/fxtf/filters-2/
2912 * Source/cmake/OptionsEfl.cmake:
2913 * Source/cmake/OptionsGTK.cmake:
2914 * Source/cmake/OptionsMac.cmake:
2915 * Source/cmake/WebKitFeatures.cmake:
2916 * Source/cmakeconfig.h.cmake:
2918 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
2920 Workaround for Cortex-A53 erratum 835769
2921 https://bugs.webkit.org/show_bug.cgi?id=138315
2923 Reviewed by Filip Pizlo.
2925 This patch introduces CMake variable and preprocessor macro
2926 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
2927 code paths, if set true.
2929 * Source/cmake/OptionsCommon.cmake:
2930 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
2932 * Source/cmakeconfig.h.cmake:
2933 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
2935 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
2937 [GTK] Fix the build of FTL JIT
2938 https://bugs.webkit.org/show_bug.cgi?id=138298
2940 Reviewed by Carlos Garcia Campos.
2942 * Source/cmake/OptionsGTK.cmake:
2943 Remove the need for the LIBCXXABI package.
2945 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
2947 REGRESSION(CMake): Make it possible to build without introspection
2948 https://bugs.webkit.org/show_bug.cgi?id=138006
2950 Reviewed by Philippe Normand.
2952 Add ENABLE_INTROSPECTION option.
2954 * Source/PlatformGTK.cmake: Dot not add gir global target if
2955 introspection is disabled.
2956 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
2957 introspection is disabled.
2959 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
2961 [GTK] Support script message handlers WebKitUserContentManager
2962 https://bugs.webkit.org/show_bug.cgi?id=133730
2964 Reviewed by Carlos Garcia Campos.
2966 Support user script message handlers in WebKitUserContentManager.
2967 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
2968 an option is added to the CMake build files. The option is disabled
2969 globally by default, and the WebKitGTK port enables it. On the API
2970 level, two new methods to register and unregister names are provided
2971 in the "window.webkit" namespace, and on message reception the
2972 "WebKitUserContentManager::script-message-received" signal is
2973 emitted, using the registered names as signal detail.
2975 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
2976 ENABLE_USER_MESSAGE_HANDLERS feature by default.
2977 * Source/cmake/WebKitFeatures.cmake: Add feature description for
2978 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
2980 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
2982 [GTK] Bump libsoup's minimum version to 2.42.0.
2983 https://bugs.webkit.org/show_bug.cgi?id=138086
2985 Reviewed by Martin Robinson.
2987 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
2988 soup-version.h header was added to soup.h in 2.41.4, which then becomes
2989 the minimum version required to build the port these days.
2991 In addition, since the autotools build system required 2.42.0 before
2992 being retired, require the same version here. Version 2.42.0 was also
2994 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
2996 * Source/cmake/OptionsGTK.cmake:
2998 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3000 [EFL] Remove unnecessary defines from OptionsEfl.cmake
3001 https://bugs.webkit.org/show_bug.cgi?id=138132
3003 Reviewed by Csaba Osztrogonác.
3005 * Source/cmake/OptionsEfl.cmake:
3007 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
3009 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
3011 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3013 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
3015 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
3016 https://bugs.webkit.org/show_bug.cgi?id=137946
3018 Reviewed by Gyuyoung Kim.
3020 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
3022 * Source/cmake/OptionsEfl.cmake:
3024 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3026 Fix FTL Native Inlining for EFL
3027 https://bugs.webkit.org/show_bug.cgi?id=137774
3029 Reviewed by Michael Saboff.
3031 Updated CMake for FTL Native Inlining.
3034 * Source/cmake/FindClang.cmake: Added.
3035 * Source/cmake/OptionsEfl.cmake:
3036 * Source/cmakeconfig.h.cmake:
3038 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
3040 Web Inspector: Generate all Inspector domains together in JavaScriptCore
3041 https://bugs.webkit.org/show_bug.cgi?id=137748
3043 Reviewed by Brian Burg.
3045 * Source/PlatformEfl.cmake:
3047 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
3049 [GTK] Add initial gestures support
3050 https://bugs.webkit.org/show_bug.cgi?id=137812
3052 Reviewed by Sergio Villar Senin.
3054 Check if the GTK+ version supports gestures or not.
3056 * Source/cmake/FindGTK3.cmake:
3057 * Source/cmake/OptionsGTK.cmake:
3059 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
3061 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
3062 https://bugs.webkit.org/show_bug.cgi?id=137781
3064 Reviewed by Martin Robinson.
3066 We used to enable smooth scrolling unconditionally in autotools
3067 (via WebKitFeatures.m4), but since the switch to CMake it's
3068 unconditionally disabled, so changing the setting doesn't have any
3071 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
3073 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
3075 Removing CUSTOM_PROTOCOLS guard
3076 https://bugs.webkit.org/show_bug.cgi?id=137741
3078 Reviewed by Benjamin Poulain.
3080 * Source/cmake/OptionsEfl.cmake:
3082 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
3084 [EFL] Enable WebP support.
3085 https://bugs.webkit.org/show_bug.cgi?id=136156
3087 Reviewed by Gyuyoung Kim.
3089 Add WebP package finding rule.
3091 * Source/cmake/OptionsEfl.cmake:
3093 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
3095 [EFL] Enable custom URI schemes with CustomProtocols
3096 https://bugs.webkit.org/show_bug.cgi?id=128177
3098 Reviewed by Gyuyoung Kim.
3100 Fixing ewk_context_url_scheme_register() ewebkit2 API
3101 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
3103 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
3105 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
3107 Bump version to 2.7.0
3108 https://bugs.webkit.org/show_bug.cgi?id=137301
3110 Rubber-stamped by Carlos Garcia Campos.
3112 * Source/cmake/OptionsGTK.cmake: Bump version numbers
3114 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3116 [EFL] Rename TEST_THEME_DIR macro
3117 https://bugs.webkit.org/show_bug.cgi?id=137244
3119 Reviewed by Csaba Osztrogonác.
3121 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
3123 2014-09-27 Dan Bernstein <mitz@apple.com>
3125 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
3126 https://bugs.webkit.org/show_bug.cgi?id=137053
3128 Reviewed by Mark Rowe.
3130 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3131 In the build pre-action, pass the --wksi and --llvm options to
3132 copy-webkitlibraries-to-product-directory.
3133 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
3135 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
3137 [GTK] Enable CSS_IMAGE_SET in production builds
3138 https://bugs.webkit.org/show_bug.cgi?id=137142
3140 Reviewed by Alejandro G. Castro.
3142 This is required by the inspector to show some of the icons that
3143 has a HiDPI variant.
3145 * Source/cmake/OptionsGTK.cmake:
3147 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
3149 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
3150 https://bugs.webkit.org/show_bug.cgi?id=136377
3152 Reviewed by Philippe Normand.
3154 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
3155 for CMake versions less than 3.
3157 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
3159 Remove WinCE port from trunk
3160 https://bugs.webkit.org/show_bug.cgi?id=136951
3162 Reviewed by Alex Christensen.
3164 * Source/cmake/OptionsWinCE.cmake: Removed.
3165 * Source/cmake/WebKitPackaging.cmake:
3167 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
3169 [EFL][GTK] Remove WebKit1 related codes
3170 https://bugs.webkit.org/show_bug.cgi?id=136853
3172 Reviewed by Csaba Osztrogonác.
3174 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
3177 * Source/PlatformGTK.cmake:
3179 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3182 https://bugs.webkit.org/show_bug.cgi?id=136820
3184 Reviewed by Csaba Osztrogonác.
3186 * Source/cmake/FindICU.cmake:
3188 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
3190 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
3191 https://bugs.webkit.org/show_bug.cgi?id=136814
3193 Reviewed by Philippe Normand.
3195 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
3196 We bundle the wayland-egl dependency with wayland-client and wayland-server
3197 and store the resulting variables with the WAYLAND_ prefix. Because of this
3198 this line wasn't exporting anything useful.
3200 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
3202 URTBF after r173574.
3204 * Source/cmake/WebKitMacros.cmake:
3206 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
3208 [JavaScriptCore] Fix FTL on platform EFL.
3209 https://bugs.webkit.org/show_bug.cgi?id=133571
3211 Reviewed by Filip Pizlo.
3215 * Source/cmake/FindLIBCXXABI.cmake: Removed.
3216 * Source/cmake/OptionsEfl.cmake:
3218 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3221 https://bugs.webkit.org/show_bug.cgi?id=136571
3223 Reviewed by Darin Adler.
3225 * Source/cmake/OptionsEfl.cmake:
3226 * Source/cmake/OptionsGTK.cmake:
3227 * Source/cmake/OptionsMac.cmake:
3228 * Source/cmake/WebKitFeatures.cmake:
3229 * Source/cmakeconfig.h.cmake:
3231 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3233 Remove CSS_FILTERS flag
3234 https://bugs.webkit.org/show_bug.cgi?id=136529
3236 Reviewed by Dirk Schulze.
3238 * Source/cmake/OptionsEfl.cmake:
3239 * Source/cmake/OptionsGTK.cmake:
3240 * Source/cmake/OptionsMac.cmake:
3241 * Source/cmake/WebKitFeatures.cmake:
3242 * Source/cmakeconfig.h.cmake:
3244 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3246 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
3247 https://bugs.webkit.org/show_bug.cgi?id=136194
3249 Reviewed by Csaba Osztrogonác.
3251 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
3255 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3257 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
3258 https://bugs.webkit.org/show_bug.cgi?id=135560
3260 Reviewed by Gyuyoung Kim.
3262 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
3264 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
3266 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
3267 https://bugs.webkit.org/show_bug.cgi?id=136343
3269 Reviewed by David Kilzer.
3271 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
3273 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3274 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3276 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
3278 [EFL] Share fast/speechsynthesis/ with other ports
3279 https://bugs.webkit.org/show_bug.cgi?id=136224
3281 Reviewed by Chris Fleizach.
3283 Enable WebSpeech for EFL.
3285 * Source/cmake/OptionsEfl.cmake:
3287 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
3289 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
3290 https://bugs.webkit.org/show_bug.cgi?id=136127
3292 Reviewed by Gyuyoung Kim.
3294 Add build support for espeak.
3296 * Source/cmake/FindEspeak.cmake: Added.
3297 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
3299 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
3301 [EFL] Build break using clang
3302 https://bugs.webkit.org/show_bug.cgi?id=136245
3304 Reviewed by Gyuyoung Kim.
3306 * Source/cmake/OptionsEfl.cmake:
3307 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
3308 Some warnings are from system libraries.
3310 2014-08-25 Alberto Garcia <berto@igalia.com>
3312 [GTK] Unify webkitgtk and webkit2gtk directories
3313 https://bugs.webkit.org/show_bug.cgi?id=136209
3315 Reviewed by Carlos Garcia Campos.
3317 Use webkit2gtk-X.X both for the process binaries and the injected
3320 * Source/cmake/OptionsGTK.cmake:
3322 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3324 [EFL] Move Efl specific code from Source/CMakeLists.txt
3325 https://bugs.webkit.org/show_bug.cgi?id=136206
3327 Reviewed by Gyuyoung Kim.
3329 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
3330 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
3332 * Source/CMakeLists.txt:
3333 * Source/cmake/OptionsEfl.cmake:
3335 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3337 [EFL] Introduce DEVELOPER_MODE
3338 https://bugs.webkit.org/show_bug.cgi?id=135884
3340 Reviewed by Gyuyoung Kim.
3342 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
3343 instead of SHARED_CORE.
3344 SHARED_CORE can reduce link time and memory consumption but it is slightly different
3345 from release binary.
3347 * Source/cmake/OptionsEfl.cmake:
3348 * Source/cmake/WebKitHelpers.cmake:
3349 Moved fvisibility=hidden to OptionsEfl.cmake
3351 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
3353 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
3354 https://bugs.webkit.org/show_bug.cgi?id=136110
3356 Reviewed by Gyuyoung Kim.
3358 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
3360 * Source/cmake/OptionsEfl.cmake:
3362 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3364 [EFL] Apply eflsymbols.filter to WebKit2
3365 https://bugs.webkit.org/show_bug.cgi?id=136148
3367 Reviewed by Csaba Osztrogonác.
3369 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
3370 in the eflsymbols.filter.
3372 * Source/cmake/OptionsEfl.cmake:
3373 * Source/cmake/eflsymbols.filter:
3375 2014-08-21 Zalan Bujtas <zalan@apple.com>
3377 Enable SATURATED_LAYOUT_ARITHMETIC.
3378 https://bugs.webkit.org/show_bug.cgi?id=136106
3380 Reviewed by Simon Fraser.
3382 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
3383 (No measurable performance regression on Mac.)
3385 * Source/cmake/OptionsMac.cmake:
3386 * Source/cmake/WebKitFeatures.cmake:
3387 * Source/cmakeconfig.h.cmake:
3389 2014-08-19 Zalan Bujtas <zalan@apple.com>
3391 Remove ENABLE(SUBPIXEL_LAYOUT).
3392 https://bugs.webkit.org/show_bug.cgi?id=136077
3394 Reviewed by Simon Fraser.
3396 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
3398 * Source/cmake/OptionsEfl.cmake:
3399 * Source/cmake/OptionsGTK.cmake:
3400 * Source/cmake/OptionsMac.cmake:
3401 * Source/cmake/WebKitFeatures.cmake:
3402 * Source/cmakeconfig.h.cmake:
3404 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
3406 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
3407 https://bugs.webkit.org/show_bug.cgi?id=135980
3409 Reviewed by Martin Robinson.
3411 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
3412 overrides any other disabled optimization that was prepended to these
3413 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
3414 lists first in the final list of compilation flags.
3416 To avoid -On re-enabling optimizations that we'd like to keep disabled,
3417 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
3419 * Source/cmake/OptionsCommon.cmake:
3420 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
3421 * Source/cmake/OptionsGTK.cmake:
3423 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3425 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
3427 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3429 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
3431 [GTK] Disable memory sampler on non-Linux system
3432 https://bugs.webkit.org/show_bug.cgi?id=134483
3434 Reviewed by Philippe Normand.
3436 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
3437 Linux because it uses many Linux-specific features, so we should disable
3438 memory sampler on other systems by default.
3440 * Source/cmake/OptionsGTK.cmake:
3442 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3444 [GTK] HTML API documentation should also be installed versioned
3445 https://bugs.webkit.org/show_bug.cgi?id=135970
3447 Reviewed by Philippe Normand.
3449 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
3452 2014-08-14 Tomas Popela <tpopela@redhat.com>
3454 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
3455 https://bugs.webkit.org/show_bug.cgi?id=135937
3457 Reviewed by Carlos Garcia Campos.
3461 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3463 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
3464 https://bugs.webkit.org/show_bug.cgi?id=135934
3466 Reviewed by Gustavo Noronha Silva.
3468 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
3469 The gir files should installed in $datadir/gir-1.0/ together with all other
3470 gir files. We don't need to install introspection files in a versioned
3471 directory because their filenames already contain the binary version. But before
3472 r171598, the files were only installed to the right directory if the
3473 gobject-instrospection pkg-config file was in the same prefix than the one we
3474 wanted to install, because the gir and typelibs directories were extracted from
3475 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
3476 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
3477 like we do in the autotools build.
3479 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
3480 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3481 * Source/cmake/OptionsGTK.cmake: Define
3482 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3484 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3486 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
3487 https://bugs.webkit.org/show_bug.cgi?id=135836
3489 Reviewed by Philippe Normand.
3491 * Source/PlatformGTK.cmake: Add install command to also install
3492 the GObject DOM bindings API docs.
3494 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
3496 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
3497 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
3498 re-set CMAKE_C_FLAGS with the new string. The two flags should really
3499 be appended to CMAKE_C_FLAGS and the same variable re-set with the
3502 * Source/cmake/OptionsCommon.cmake:
3504 2014-08-13 Alex Christensen <achristensen@webkit.org>
3506 Progress towards CMake on Mac.
3507 https://bugs.webkit.org/show_bug.cgi?id=135819
3509 Reviewed by Laszlo Gombos.
3511 * Source/cmake/OptionsMac.cmake:
3512 Disable some more features temporarily to get CMake working.
3513 * Source/cmake/WebKitMacros.cmake:
3514 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
3516 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3518 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
3519 https://bugs.webkit.org/show_bug.cgi?id=135798
3521 Reviewed by Philippe Normand.
3523 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
3525 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3526 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3527 https://bugs.webkit.org/show_bug.cgi?id=133317
3529 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3531 Reviewed by Philippe Normand.
3533 No new tests since no new functionality has been added.
3535 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3537 2014-08-11 Commit Queue <commit-queue@webkit.org>
3539 Unreviewed, rolling out r172393.
3540 https://bugs.webkit.org/show_bug.cgi?id=135796
3542 discussion needed about GnuTLS version bump on the bots
3543 (Requested by philn on #webkit).
3547 https://bugs.webkit.org/show_bug.cgi?id=133317
3548 http://trac.webkit.org/changeset/172393
3550 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3551 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3552 https://bugs.webkit.org/show_bug.cgi?id=133317
3554 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3556 Reviewed by Philippe Normand.
3558 No new tests since no new functionality has been added.
3560 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3562 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3564 [GTK] Adds stubs for all subtle crypto algorithm implemntations
3565 https://bugs.webkit.org/show_bug.cgi?id=133316
3567 Reviewed by Philippe Normand.
3569 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
3570 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
3571 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
3573 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
3575 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
3577 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3579 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3581 [GTK] REGRESSION(r166239): The ld version script is not being used
3582 https://bugs.webkit.org/show_bug.cgi?id=135694
3584 Reviewed by Martin Robinson.
3586 Move the symbols filter file from Tools/gtk to Source/cmake and rename
3587 it as gtksymbols.filter. Also updated it, since some of the symbols
3588 exported were renamed.
3590 * Source/cmake/OptionsGTK.cmake:
3591 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
3593 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3595 [GTK] Child processes should be installed in a versioned directory
3596 https://bugs.webkit.org/show_bug.cgi?id=135754
3598 Reviewed by Gustavo Noronha Silva.
3600 Define LIBEXEC_INSTALL_DIR as
3601 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
3602 so that the child processes are installed in $libexec/webkitgtk-4.0.
3603 This makes it possible to install 2.6 in parallel to older versions.
3605 * Source/cmake/OptionsGTK.cmake:
3607 2014-08-08 Alex Christensen <achristensen@webkit.org>
3609 Progress towards using CMake on Mac.
3610 https://bugs.webkit.org/show_bug.cgi?id=135662
3612 Reviewed by Laszlo Gombos.
3615 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
3616 * Source/cmake/WebKitFeatures.cmake:
3617 * Source/cmakeconfig.h.cmake:
3618 Added features that are needed by the Mac port.
3619 * Source/cmake/OptionsMac.cmake:
3620 Enable CSS_IMAGE_SET based on FeatureDefines.h.
3621 Disable the FTL with CMake for now.
3622 * Source/cmake/OptionsEFL.cmake:
3623 * Source/cmake/OptionsGTK.cmake:
3624 Enable subpixel layout to not conflict with FeatureDefines.h
3626 2014-08-08 Simon Fraser <simon.fraser@apple.com>
3628 Undo some erroneous changes to the Xcode scheme files from r172259.
3630 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3631 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3633 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
3635 [CMake] Drop the required version of CMake down to 2.8.8
3636 https://bugs.webkit.org/show_bug.cgi?id=135713
3638 Reviewed by Alex Christensen.
3640 * CMakeLists.txt: Require CMake 2.8.8.
3642 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
3644 Get rid of INPUT_SPEECH
3645 https://bugs.webkit.org/show_bug.cgi?id=135672
3647 Reviewed by Andreas Kling.
3649 * Source/cmake/OptionsMac.cmake:
3650 * Source/cmake/WebKitFeatures.cmake:
3651 * Source/cmakeconfig.h.cmake:
3653 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
3655 [GTK] Disable IndexedDB
3656 https://bugs.webkit.org/show_bug.cgi?id=135692
3658 Reviewed by Carlos Garcia Campos.
3660 * Source/cmake/OptionsGTK.cmake:
3662 2014-08-06 Dean Jackson <dino@apple.com>
3664 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
3665 https://bugs.webkit.org/show_bug.cgi?id=135675
3667 Reviewed by Sam Weinig.
3669 * Source/cmake/OptionsGTK.cmake:
3670 * Source/cmake/OptionsMac.cmake:
3671 * Source/cmake/WebKitFeatures.cmake:
3672 * Source/cmakeconfig.h.cmake:
3674 2014-08-06 David Farler <dfarler@apple.com>
3676 Unreviewed build fix: Make includes semicolon in assignment.
3678 * Makefile.shared: Remove a ;
3680 2014-08-06 David Farler <dfarler@apple.com>
3682 Set DSYMUTIL_NUM_THREADS to the number of logical cores
3683 https://bugs.webkit.org/show_bug.cgi?id=135655
3685 Reviewed by Mark Rowe.
3687 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
3689 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
3691 [GTK] Be able to disable gtk2 dependency
3692 https://bugs.webkit.org/show_bug.cgi?id=135505
3694 Reviewed by Gustavo Noronha Silva.
3696 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
3697 required when it's enabled. It's enabled by default.
3699 * Source/cmake/OptionsGTK.cmake:
3701 2014-08-05 Alex Christensen <achristensen@webkit.org>
3704 https://bugs.webkit.org/show_bug.cgi?id=135620
3706 Reviewed by Laszlo Gombos.
3708 * Source/cmake/OptionsMac.cmake:
3709 Use UDIS86 by default on Mac.
3711 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
3713 Add a flag for the CSS Selectors level 4 implementation
3714 https://bugs.webkit.org/show_bug.cgi?id=135535
3716 Reviewed by Andreas Kling.
3718 * Source/cmake/OptionsEfl.cmake:
3719 * Source/cmake/OptionsGTK.cmake:
3720 * Source/cmake/WebKitFeatures.cmake:
3721 * Source/cmakeconfig.h.cmake:
3723 2014-08-04 Alex Christensen <achristensen@webkit.org>
3725 Progress towards CMake on Mac.
3726 https://bugs.webkit.org/show_bug.cgi?id=135528
3728 Reviewed by Gyuyoung Kim.
3730 * Source/cmake/OptionsMac.cmake:
3731 Made options list based on FeatureDefines.xcconfig files.
3733 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3735 [GTK] Windowing target support should reflect the support in the GTK+ dependency
3736 https://bugs.webkit.org/show_bug.cgi?id=134736
3738 Reviewed by Martin Robinson.
3740 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
3741 support the X11 or Wayland windowing targets -- instead, if there's no support
3742 the specific target is disabled, and an error is thrown only if neither of the
3743 backends is enabled at the end..
3744 For now the X11 target remains enabled by default, and the Wayland target is
3745 kept disabled. Once it's possible to have both targets enabled at runtime in
3746 WebKit, the Wayland target will be enabled as well and we'll leave it to the
3747 GTK+ dependency to determine which targets can be enabled.
3749 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3751 [CMake] Add FindWayland.cmake
3752 https://bugs.webkit.org/show_bug.cgi?id=135540
3754 Reviewed by Martin Robinson.
3756 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
3757 dependency. For now bundles the wayland-client, wayland-server and
3758 wayland-egl pkg-config targets into one dependency, but these could
3759 be split in the future if necessary.
3761 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
3763 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
3764 https://bugs.webkit.org/show_bug.cgi?id=135553
3766 Reviewed by Gyuyoung Kim.
3768 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
3769 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
3771 * Source/cmake/OptionsEfl.cmake:
3773 2014-08-01 Bear Travis <betravis@adobe.com>
3775 [Feature Queries] Enable Feature Queries on EFL/GTK
3776 https://bugs.webkit.org/show_bug.cgi?id=134902
3778 Reviewed by Benjamin Poulain.
3780 Enable CSS Feature Queries by default on the EFL and GTK
3783 * Source/cmake/OptionsEfl.cmake:
3784 * Source/cmake/OptionsGTK.cmake:
3786 2014-08-01 Alex Christensen <achristensen@webkit.org>
3788 Progress towards cmake on Windows.
3789 https://bugs.webkit.org/show_bug.cgi?id=135484
3791 Reviewed by Martin Robinson.
3794 Added Mac to list of ports, even though it is not done yet.
3795 Changed minimum bison version to version installed on Macs.
3796 * Source/cmake/OptionsAppleWin.cmake:
3797 Added some definitions.
3798 * Source/cmake/OptionsEfl.cmake:
3799 * Source/cmake/OptionsGTK.cmake:
3800 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
3801 * Source/cmake/OptionsMac.cmake: Added blank for now.
3802 * Source/cmake/OptionsWinCairo.cmake:
3803 * Source/cmake/OptionsWindows.cmake:
3804 Added some definitions.
3805 Removed /WX (warnings treated as error while compiling).
3806 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
3808 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
3810 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
3811 https://bugs.webkit.org/show_bug.cgi?id=135501
3813 Reviewed by Gyuyoung Kim.
3815 Use PROJECT_VERSION_MICRO instead.
3817 * Source/cmake/OptionsEfl.cmake:
3818 * Source/cmake/OptionsGTK.cmake:
3819 * Source/cmake/WebKitHelpers.cmake:
3821 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
3823 [EFL] Bump ewebkit version to 1.11
3824 https://bugs.webkit.org/show_bug.cgi?id=135487
3826 Reviewed by Gyuyoung Kim.
3828 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
3830 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
3832 [EFL] Add support for building with Geoclue2.
3833 https://bugs.webkit.org/show_bug.cgi?id=135455
3835 Reviewed by Gyuyoung Kim.
3837 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
3840 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3842 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
3844 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3846 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3848 [GTK] Bump binary version for 2.6
3849 https://bugs.webkit.org/show_bug.cgi?id=133724
3851 Reviewed by Philippe Normand.
3853 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and