1 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
3 [CMake] Miscellaneous issues in WebKitFeatures.cmake
4 https://bugs.webkit.org/show_bug.cgi?id=143636
6 Reviewed by Martin Robinson.
8 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
9 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
11 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
12 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
14 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
16 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
18 Fix ENABLE_TOUCH_SLIDER so that it can be used
22 * Source/cmake/WebKitFeatures.cmake:
24 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
26 [CMake] Print sorted feature list at the very end of the configure process
27 https://bugs.webkit.org/show_bug.cgi?id=143596
29 Reviewed by Martin Robinson.
31 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
32 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
33 and sort the options before printing. Reorder some code so that features still get
34 propagated to the bindings generators.
36 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
38 [CMake] Options should be marked as advanced by default
39 https://bugs.webkit.org/show_bug.cgi?id=143572
41 Reviewed by Gyuyoung Kim.
43 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
44 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
45 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
46 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
47 option without making it public.
49 * Source/cmake/WebKitFeatures.cmake:
51 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
53 [CMake] Remove unnecessary ENABLE_WEBCORE switch
54 https://bugs.webkit.org/show_bug.cgi?id=143584
56 Reviewed by Csaba Osztrogonác.
58 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
62 * Source/CMakeLists.txt:
63 * Source/cmake/OptionsGTK.cmake:
64 * Source/cmake/WebKitFS.cmake:
66 2015-04-08 Filip Pizlo <fpizlo@apple.com>
68 Unreviewed, revert accidental commit.
72 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
74 Add CMake build system for WinCairo port.
75 https://bugs.webkit.org/show_bug.cgi?id=115944
77 Reviewed by Chris Dumez.
79 * Source/cmake/OptionsWindows.cmake:
80 * Source/cmake/WebKitMacros.cmake:
81 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
83 2015-04-06 Alberto Garcia <berto@igalia.com>
86 https://bugs.webkit.org/show_bug.cgi?id=143453
88 Reviewed by Darin Adler.
90 Add HPPA to the list of supported CPUs.
94 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
96 Unreviewed, kick the GTK bots to fix an incremental build issue.
98 * Source/cmake/OptionsGTK.cmake:
100 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
102 Fix the EFL and GTK build after r182243
103 https://bugs.webkit.org/show_bug.cgi?id=143361
105 Reviewed by Csaba Osztrogonác.
107 * Source/PlatformEfl.cmake: Add a custom command that copies
108 the InspectorBackendCommands.js file into the proper directory
109 under DerivedSources/WebInspectorUI/.
111 2015-04-01 Alex Christensen <achristensen@webkit.org>
113 Progress towards CMake on Windows and Mac.
114 https://bugs.webkit.org/show_bug.cgi?id=143293
116 Reviewed by Filip Pizlo.
119 Set DERIVED_SOURCES_WTF_DIR for Windows.
120 * Source/CMakeLists.txt:
121 Don't compile bmalloc on Windows.
122 * Source/cmake/OptionsCommon.cmake:
123 Use the absolute path of the C preprocessor.
124 * Source/cmake/OptionsWinCairo.cmake:
125 Added needed definitions.
126 * Source/cmake/OptionsWindows.cmake:
127 Set some default values and removed support for old Visual Studio versions before /MP.
128 * Source/cmake/WebKitFS.cmake:
129 Make WTF DerivedSources directory.
130 * Source/cmake/WebKitMacros.cmake:
131 Added ADD_PRECOMPILED_HEADER macro based on
132 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
134 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
136 Use colored diagnostics when building with cmake + ninja + clang
137 https://bugs.webkit.org/show_bug.cgi?id=143297
139 Reviewed by Žan Doberšek.
141 Because that ninja sets subprocess stdout/stderr to a pipe, clang
142 disables colored output.
143 This patch forces clang to use colored diagnostics when we are using
146 * Source/cmake/OptionsCommon.cmake:
148 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
150 [CMake] Update old CMakeList.txt in gtest
151 https://bugs.webkit.org/show_bug.cgi?id=143192
153 Reviewed by Darin Adler.
155 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
156 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
157 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
159 * Source/CMakeLists.txt:
160 * Source/cmake/gtest/CMakeLists.txt: Removed.
162 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
164 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
165 https://bugs.webkit.org/show_bug.cgi?id=143138
167 Reviewed by Csaba Osztrogonác.
169 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
170 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
172 * Source/cmake/OptionsWindows.cmake:
173 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
174 * Source/cmake/WebKitMacros.cmake:
176 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
178 [GStreamer] share GL context in pipeline, part 2
179 https://bugs.webkit.org/show_bug.cgi?id=143049
181 Reviewed by Carlos Garcia Campos.
183 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
184 OpenGL/ES2 is found and GLX/EGL is found too.
186 2015-03-26 Alex Christensen <achristensen@webkit.org>
188 Progress towards CMake on Mac.
189 https://bugs.webkit.org/show_bug.cgi?id=143112
191 Reviewed by Chris Dumez.
193 * Source/cmake/OptionsMac.cmake:
195 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
197 [EFL] Add OpenWebRTC in jhbuild
198 https://bugs.webkit.org/show_bug.cgi?id=142778
200 Reviewed by Gyuyoung Kim.
202 Original patch by Philippe Normand <pnormand@igalia.com>
204 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
205 mediastream build is enabled.
207 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
209 [GTK] Add a configure option to build without Redirected XComposite Window
210 https://bugs.webkit.org/show_bug.cgi?id=142865
212 Reviewed by Žan Doberšek.
214 The Redirected XComposite Window was added to support some
215 features like GtkOverlay, but in cases where we don't need such
216 features, it's more efficient to use the XID of the WebKitWebView
217 window as the native surface handle for the accelerated
218 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
219 that is enabled by default for X11 target when OpenGL is enabled.
221 * Source/cmake/OptionsGTK.cmake:
223 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
225 [GTK] Search for the Wayland dependency when enabling Wayland target
226 https://bugs.webkit.org/show_bug.cgi?id=142876
228 Reviewed by Carlos Garcia Campos.
230 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
231 requirement of either the GTK+ or GDK pkg-config files, so we have to
232 search for it ourselves when WebKitGTK+ has been configured to support
233 the Wayland windowing target.
235 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
237 Unreviewed, kick the GTK bots to regenerate makefile.
238 https://bugs.webkit.org/show_bug.cgi?id=137394
240 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
241 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
243 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
245 Unreviewed, kick the GTK bots to regenerate makefile.
246 https://bugs.webkit.org/show_bug.cgi?id=137394
248 * Source/cmake/OptionsEfl.cmake:
250 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
252 [GTK] Fix inspector userinterface related incremental build issue
253 https://bugs.webkit.org/show_bug.cgi?id=142849
255 Reviewed by Carlos Garcia Campos.
257 * Source/cmake/OptionsGTK.cmake: Revert r181733.
259 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
261 Unreviewed, kick the GTK bots to regenerate makefile.
263 * Source/cmake/OptionsGTK.cmake:
265 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
267 [EFL] Expose JavaScript binding interface through ewk_extension
268 https://bugs.webkit.org/show_bug.cgi?id=142033
270 Reviewed by Gyuyoung Kim.
272 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
274 2015-03-17 Philippe Normand <pnormand@igalia.com>
276 [GTK] basic OpenWebRTC build support
277 https://bugs.webkit.org/show_bug.cgi?id=142393
279 Reviewed by Carlos Garcia Campos.
281 * Source/cmake/FindOpenWebRTC.cmake: Added.
282 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
283 mediastream build is enabled.
285 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
287 [CMake][EFL] Build test tools only for developer mode
288 https://bugs.webkit.org/show_bug.cgi?id=142761
290 Reviewed by Csaba Osztrogonác.
292 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
294 * Source/cmake/OptionsEfl.cmake:
295 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
296 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
297 * Source/cmakeconfig.h.cmake:
299 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
301 Enable ES6 classes by default
302 https://bugs.webkit.org/show_bug.cgi?id=142774
304 Reviewed by Gavin Barraclough.
306 * Source/cmake/WebKitFeatures.cmake:
308 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
310 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
311 https://bugs.webkit.org/show_bug.cgi?id=142722
313 Reviewed by Csaba Osztrogonác.
315 Categorize to define cmake variables, to find necessary packages,
316 use upper case for "glib_conponents" cmake variable name, re-arrange
317 wrong alphabet sorting, and so on.
319 * CMakeLists.txt: Remove WinCE port.
320 * Source/cmake/OptionsEfl.cmake:
322 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
324 [GStreamer] share GL context in pipeline
325 https://bugs.webkit.org/show_bug.cgi?id=142693
327 Reviewed by Philippe Normand.
329 Add search of gstreamer-gl library in the GStreamer installation. If
330 it is found, WTF_USE_GSTREAMER_GL macro is defined.
332 * Source/cmake/FindGStreamer.cmake:
333 * Source/cmake/OptionsGTK.cmake:
335 2015-03-13 Alex Christensen <achristensen@webkit.org>
337 Progress towards CMake on Mac.
338 https://bugs.webkit.org/show_bug.cgi?id=142680
340 Reviewed by Gyuyoung Kim.
343 * Source/PlatformMac.cmake: Added stub.
344 * Source/cmake/OptionsMac.cmake:
345 Change defines to get CMake working.
347 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
349 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
350 https://bugs.webkit.org/show_bug.cgi?id=126688
352 Reviewed by Gustavo Noronha Silva.
354 Add ENABLE_MINIBROWSER option, enabled by default for development
355 builds and disabled for production builds unless explicilty enabled.
357 * Source/cmake/OptionsGTK.cmake:
359 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
361 [GTK] Do not look for child processes in the UI process binary path
362 https://bugs.webkit.org/show_bug.cgi?id=135752
364 Reviewed by Gustavo Noronha Silva.
366 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
367 build for development builds.
369 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
371 [GTK] Add a configure option to build with OpenGL ES 2
372 https://bugs.webkit.org/show_bug.cgi?id=142498
374 Reviewed by Martin Robinson.
376 Add ENABLE_GLES2 option. It's disabled by default, but if passed
377 GLES2 is required and OpenGL is not even searched. Otherwise we
378 search for OpenGL as usual, using it only if present.
380 * Source/cmake/OptionsGTK.cmake:
382 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
384 [cmake] Handle unused parameter warnings as build errors except in WebKit2
385 https://bugs.webkit.org/show_bug.cgi?id=142338
387 Reviewed by Gyuyoung Kim.
389 * Source/cmake/WebKitHelpers.cmake:
391 2015-03-03 Daniel Bates <dabates@apple.com>
393 Convert ManualTests/svg-tooltip.svg to a DRT test
394 https://bugs.webkit.org/show_bug.cgi?id=140480
396 Reviewed by Alex Christensen.
398 * ManualTests/svg-tooltip.svg: Removed.
400 2015-03-02 Debarshi Ray <debarshir@gnome.org>
402 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
403 https://bugs.webkit.org/show_bug.cgi?id=142165
405 Reviewed by Carlos Garcia Campos.
407 * Source/cmake/gtksymbols.filter:
409 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
411 [EFL] Remove unnecessary comment after r179110
412 https://bugs.webkit.org/show_bug.cgi?id=142042
414 Reviewed by Gyuyoung Kim.
416 * Source/cmake/OptionsEfl.cmake:
418 2015-02-23 Tomas Popela <tpopela@redhat.com>
420 [GTK] Fails to compile with cmake 3.2.x
421 https://bugs.webkit.org/show_bug.cgi?id=141796
423 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
424 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
425 added and the build will fail.
427 Reviewed by Martin Robinson.
429 * Source/cmake/OptionsGTK.cmake:
431 2015-02-20 Alexey Proskuryakov <ap@apple.com>
433 Remove svn:keywords property.
435 As far as I can tell, the property had no effect on any of these files, but also,
436 when it has effect it's likely harmful.
438 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
439 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
440 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
441 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
442 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
443 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
444 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
445 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
446 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
447 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
448 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
449 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
450 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
451 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
453 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
455 [CMAKE] Remove CMakeLists.txt in WK1 port
456 https://bugs.webkit.org/show_bug.cgi?id=141617
458 Reviewed by Anders Carlsson.
460 Nobody uses CMake in WK1 port. Remove it.
464 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
466 Unreviewed, remove empty directories.
468 * ManualTests/qt: Removed.
470 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
472 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
473 https://bugs.webkit.org/show_bug.cgi?id=141481
475 Reviewed by Csaba Osztrogonác.
477 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
479 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
481 [EFL][GTK] Use bmalloc instead of tcmalloc
482 https://bugs.webkit.org/show_bug.cgi?id=140162
484 Reviewed by Carlos Garcia Campos.
486 Add bmalloc directory to build list.
488 * CMakeLists.txt: Define BMALLOC_DIR directory.
489 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
491 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
493 [GTK] Add default color chooser implementation using GtkColorChooserDialog
494 https://bugs.webkit.org/show_bug.cgi?id=141392
496 Reviewed by Gustavo Noronha Silva.
498 Enable INPUT_TYPE_COLOR by default for GTK+ port.
500 * Source/cmake/OptionsGTK.cmake:
502 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
504 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
505 https://bugs.webkit.org/show_bug.cgi?id=141328
507 Reviewed by Darin Adler.
509 Added as manual test because it involves a huge grid allocation
510 which is very slow on Debug bots, the only ones capable to trigger
513 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
515 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
517 [Streams API] Implement a barebone ReadableStream interface
518 https://bugs.webkit.org/show_bug.cgi?id=141045
520 Reviewed by Benjamin Poulain.
522 * Source/cmake/WebKitFeatures.cmake:
523 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
525 2015-02-02 Filip Pizlo <fpizlo@apple.com>
527 Revert accidental change in r179490.
531 2015-02-02 Filip Pizlo <fpizlo@apple.com>
533 Unreviewed, revert accidental change to Makefile.shared in r179478
537 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
539 [CMake] Minimum python version should be 2.7.
540 https://bugs.webkit.org/show_bug.cgi?id=140997
542 Reviewed by Csaba Osztrogonác.
546 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
548 Apply feTurbulence spec change to fix zero length vector generation
549 https://bugs.webkit.org/show_bug.cgi?id=140812
551 Reviewed by Darin Adler.
553 Recently a bug with the turbulence algorithm was corrected in the
554 Filter Effects specification.
555 For some seed values this bug allowed zero length vectors to be generated.
556 This resulted in large solid color squares being present in the generated image.
557 The feTurbulence algorithm was updated to reject zero length vectors. This patch
558 applies that change in WebCore.
560 Test: svg/filters/feTurbulence_bad_seeds.html
562 * platform/graphics/filters/FETurbulence.cpp:
563 (WebCore::FETurbulence::initPaint):
564 Added rejection sampling during vector generation to avoid zero length vectors.
566 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
568 [cmake] Remove compiler version calculate cruft
569 https://bugs.webkit.org/show_bug.cgi?id=140885
571 Reviewed by Darin Adler.
573 * Source/cmake/WebKitHelpers.cmake:
575 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
577 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
578 https://bugs.webkit.org/show_bug.cgi?id=140886
580 Reviewed by Žan Doberšek.
582 * Source/cmake/WebKitHelpers.cmake:
584 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
586 [GTK] gtkdoc does not appear in DevHelp
587 https://bugs.webkit.org/show_bug.cgi?id=139369
589 Reviewed by Philippe Normand.
591 Expect the gtkdoc to be generated in folders named with the API version.
593 * Source/PlatformGTK.cmake:
595 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
597 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
598 https://bugs.webkit.org/show_bug.cgi?id=140609
600 Reviewed by Csaba Osztrogonác.
602 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
603 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
604 compilation flags. Those were added after the jsCStack branch merge, but
605 can now be removed since the -ftree-dce issues were fixed in GCC, and
606 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
608 * Source/cmake/OptionsEfl.cmake:
609 * Source/cmake/OptionsGTK.cmake:
611 2015-01-26 Commit Queue <commit-queue@webkit.org>
613 Unreviewed, rolling out r179107.
614 https://bugs.webkit.org/show_bug.cgi?id=140880
616 The GCC in the bots doesn't support the AsyncTask
617 implementation (Requested by KaL on #webkit).
621 "[GTK] Enable IndexedDB"
622 https://bugs.webkit.org/show_bug.cgi?id=98932
623 http://trac.webkit.org/changeset/179107
625 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
627 [GTK] Enable IndexedDB
628 https://bugs.webkit.org/show_bug.cgi?id=98932
630 Reviewed by Žan Doberšek.
632 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
633 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
635 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
637 [GTK] Add initial database process support
638 https://bugs.webkit.org/show_bug.cgi?id=139491
640 Reviewed by Sergio Villar Senin.
642 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
644 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
646 Add a build flag for ES6 class syntax
647 https://bugs.webkit.org/show_bug.cgi?id=140760
649 Reviewed by Michael Saboff.
651 * Source/cmake/WebKitFeatures.cmake:
652 * Source/cmakeconfig.h.cmake:
654 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
656 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
657 https://bugs.webkit.org/show_bug.cgi?id=140049
659 Reviewed by Gyuyoung Kim.
661 * Source/cmake/OptionsCommon.cmake:
663 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
665 Remove ENABLE(INSPECTOR) ifdef guards
666 https://bugs.webkit.org/show_bug.cgi?id=140668
668 Reviewed by Darin Adler.
670 * Source/PlatformEfl.cmake:
671 * Source/cmake/OptionsEfl.cmake:
672 * Source/cmake/OptionsGTK.cmake:
673 * Source/cmake/OptionsMac.cmake:
674 * Source/cmake/WebKitFeatures.cmake:
675 * Source/cmakeconfig.h.cmake:
677 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
679 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
681 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
683 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
685 [CMAKE] Fix cmake warning
686 https://bugs.webkit.org/show_bug.cgi?id=140497
688 Reviewed by Gustavo Noronha Silva.
690 r173155 already tried to fix cmake warning though, the warning is still exist.
691 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
692 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
693 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
694 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
695 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
699 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
701 [GTK] Generate the make dist manifest from a CMake template file
702 https://bugs.webkit.org/show_bug.cgi?id=139387
704 Reviewed by Martin Robinson.
706 Generate manifest.txt from manifest.txt.in. Only expose the dist and
707 distcheck targets for developer builds, as they won't work when
708 building from a tarball because the manifest is not distributed.
710 * Source/PlatformGTK.cmake:
712 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
714 Remove ENABLE(SQL_DATABASE) guards
715 https://bugs.webkit.org/show_bug.cgi?id=140434
717 Reviewed by Darin Adler.
719 * Source/cmake/OptionsMac.cmake:
720 * Source/cmake/WebKitFeatures.cmake:
721 * Source/cmakeconfig.h.cmake:
723 2015-01-11 Sam Weinig <sam@webkit.org>
725 Remove support for SharedWorkers
726 https://bugs.webkit.org/show_bug.cgi?id=140344
728 Reviewed by Anders Carlsson.
730 * Source/cmake/OptionsEfl.cmake:
731 * Source/cmake/OptionsGTK.cmake:
732 * Source/cmake/OptionsMac.cmake:
733 * Source/cmake/WebKitFeatures.cmake:
734 * Source/cmakeconfig.h.cmake:
736 2015-01-10 Dan Bernstein <mitz@apple.com>
738 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
739 https://bugs.webkit.org/show_bug.cgi?id=140339
741 Reviewed by Mark Rowe.
743 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
744 prevents unnecessary rebuilding due to PATH differences.
746 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
748 [GTK][ThreadedCompositor] Add support for threaded compositor.
749 https://bugs.webkit.org/show_bug.cgi?id=118265
751 Reviewed by Martin Robinson.
753 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
754 autotools build systems. The feature is disabled by default.
755 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
756 from the feature flags.
758 * Source/cmake/OptionsEfl.cmake:
759 * Source/cmake/OptionsGTK.cmake:
760 * Source/cmake/WebKitFeatures.cmake:
761 * Source/cmakeconfig.h.cmake:
763 2014-12-23 Alexey Proskuryakov <ap@apple.com>
765 Simplify building with ASan
766 https://bugs.webkit.org/show_bug.cgi?id=139916
768 Reviewed by Mark Rowe.
770 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
772 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
774 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
776 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
778 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
780 Null dereference performing a "TapAndAHalf" gesture in Google search field
782 <https://bugs.webkit.org/show_bug.cgi?id=139506>
783 <rdar://problem/19028828>
785 Reviewed by Darin Adler.
787 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
789 2014-12-10 Dean Jackson <dino@apple.com>
791 Blur filter performance test doesn't provide results
792 https://bugs.webkit.org/show_bug.cgi?id=139462
794 Reviewed by Sam Weinig.
796 This can't currently work under our performance test
797 infrastructure. Move it to a manual test to avoid
798 putting FAILures into the results.
800 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
802 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
804 [GTK][WK2] Add HTML5 Notifications support
805 https://bugs.webkit.org/show_bug.cgi?id=61140
807 Reviewed by Carlos Garcia Campos.
809 * Source/cmake/FindLibNotify.cmake: Added.
810 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
811 libnotify and use it for a default implementation when found.
813 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
815 REGRESSION(r155906): Page content disappears on Tuaw article after loading
816 https://bugs.webkit.org/show_bug.cgi?id=138100
818 Reviewed by Simon Fraser.
820 DRT causes an extra paint which makes it impossible to test this with
823 * ManualTests/float-layer-not-painting.html: Added.
825 2014-12-07 Alberto Garcia <berto@igalia.com>
827 [GTK] WebKit has a new required dependency on GnuTLS
828 https://bugs.webkit.org/show_bug.cgi?id=136158
830 Reviewed by Martin Robinson.
832 Detect if GnuTLS is installed and enable or disable subtle crypto
835 * Source/cmake/OptionsGTK.cmake:
837 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
839 [GTK] Missing API detected in GObject DOM bindings after r176630
840 https://bugs.webkit.org/show_bug.cgi?id=139201
842 Reviewed by Gustavo Noronha Silva.
844 Change GENERATE_BINDINGS macro to receive a list of optional
845 additional dependencies, so that we can add more dependecies
846 without having to change the macro.
848 * Source/cmake/WebKitMacros.cmake:
850 2014-12-05 Simon Fraser <simon.fraser@apple.com>
852 Programmatic scrolling and content changes are not always synchronized
853 https://bugs.webkit.org/show_bug.cgi?id=139245
854 rdar://problem/18833612
856 Reviewed by Anders Carlsson.
858 Manual test that tries to sync layout with programmatic scrolling.
860 * ManualTests/programmatic-scroll-flicker.html: Added.
862 2014-12-04 Alberto Garcia <berto@igalia.com>
864 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
865 https://bugs.webkit.org/show_bug.cgi?id=136576
867 Reviewed by Carlos Garcia Campos.
869 CMake should complain if Accelerated 2D Canvas is explicitly
870 enabled but cairo-gl is not found.
872 * Source/cmake/OptionsGTK.cmake:
874 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
876 [EFL] Add subtle crypto to the build system
877 https://bugs.webkit.org/show_bug.cgi?id=138612
879 Reviewed by Csaba Osztrogonác.
881 * Source/cmake/OptionsEfl.cmake:
883 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
885 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
886 https://bugs.webkit.org/show_bug.cgi?id=139085
888 Reviewed by Andreas Kling.
890 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
891 * Source/cmake/WebKitFeatures.cmake: ditto.
892 * Source/cmakeconfig.h.cmake: ditto.
894 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
896 [EFL] Drop support for the EFL 1.7
897 https://bugs.webkit.org/show_bug.cgi?id=139114
899 Reviewed by Gyuyoung Kim.
901 * Source/cmake/EFLHelpers.cmake: Removed.
902 * Source/cmake/FindEcore.cmake: Removed.
903 * Source/cmake/FindEdje.cmake: Removed.
904 * Source/cmake/FindEet.cmake: Removed.
905 * Source/cmake/FindEeze.cmake: Removed.
906 * Source/cmake/FindEfreet.cmake: Removed.
907 * Source/cmake/FindEina.cmake: Removed.
908 * Source/cmake/FindElementary.cmake: Removed.
909 * Source/cmake/FindEvas.cmake: Removed.
910 * Source/cmake/OptionsEfl.cmake:
912 2014-11-28 Philippe Normand <pnormand@igalia.com>
914 [CMake] Build failure against GStreamer git master
915 https://bugs.webkit.org/show_bug.cgi?id=138872
917 Reviewed by Csaba Osztrogon.
919 * Source/cmake/FindGStreamer.cmake: Simplified the
920 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
921 headers lookup, there's no need to do this manually. Also
922 explicitely check the version specified in GStreamer_FIND_VERSION.
924 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
926 [EFL] Remove E_Dbus dependency
927 https://bugs.webkit.org/show_bug.cgi?id=136355
929 Reviewed by Gyuyoung Kim.
931 * Source/cmake/FindE_DBus.cmake: Removed.
932 * Source/cmake/OptionsEfl.cmake:
934 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
936 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
938 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
940 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
942 [CMake] Use ld.gold if it is available to speedup builds
943 https://bugs.webkit.org/show_bug.cgi?id=137953
945 Reviewed by Carlos Garcia Campos.
947 * Source/cmake/OptionsCommon.cmake:
949 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
951 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
952 https://bugs.webkit.org/show_bug.cgi?id=138840
954 Reviewed by Csaba Osztrogonác.
956 * Source/cmake/OptionsCommon.cmake:
958 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
960 Remove Source/Platform cruft
961 https://bugs.webkit.org/show_bug.cgi?id=138658
963 Reviewed by Anders Carlsson.
966 * Source/Platform: Removed.
968 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
970 Enable Cortex-A53-specific code paths by default if core is detected.
971 https://bugs.webkit.org/show_bug.cgi?id=138499
973 Reviewed by Csaba Osztrogonác.
975 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
976 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
979 Since on ARM64/Linux the part number that cpuinfo reports depends on
980 the core the query is run on, the check is bound to and executed on the
981 available cores one by one.
983 * Source/cmake/OptionsCommon.cmake:
985 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
987 [EFL] Remove unnecessary version check from OptionsEfl.cmake
988 https://bugs.webkit.org/show_bug.cgi?id=138498
990 Reviewed by Csaba Osztrogonác.
992 * Source/cmake/OptionsEfl.cmake:
994 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
996 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
997 https://bugs.webkit.org/show_bug.cgi?id=138465
999 Reviewed by Gyuyoung Kim.
1001 * Source/cmake/OptionsEfl.cmake:
1003 2014-11-03 Dean Jackson <dino@apple.com>
1005 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1006 https://bugs.webkit.org/show_bug.cgi?id=138362
1008 Reviewed by Tim Horton.
1010 Add a new feature define for Level 2 of CSS Filters.
1011 http://dev.w3.org/fxtf/filters-2/
1013 * Source/cmake/OptionsEfl.cmake:
1014 * Source/cmake/OptionsGTK.cmake:
1015 * Source/cmake/OptionsMac.cmake:
1016 * Source/cmake/WebKitFeatures.cmake:
1017 * Source/cmakeconfig.h.cmake:
1019 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1021 Workaround for Cortex-A53 erratum 835769
1022 https://bugs.webkit.org/show_bug.cgi?id=138315
1024 Reviewed by Filip Pizlo.
1026 This patch introduces CMake variable and preprocessor macro
1027 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1028 code paths, if set true.
1030 * Source/cmake/OptionsCommon.cmake:
1031 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1033 * Source/cmakeconfig.h.cmake:
1034 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1036 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1038 [GTK] Fix the build of FTL JIT
1039 https://bugs.webkit.org/show_bug.cgi?id=138298
1041 Reviewed by Carlos Garcia Campos.
1043 * Source/cmake/OptionsGTK.cmake:
1044 Remove the need for the LIBCXXABI package.
1046 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1048 REGRESSION(CMake): Make it possible to build without introspection
1049 https://bugs.webkit.org/show_bug.cgi?id=138006
1051 Reviewed by Philippe Normand.
1053 Add ENABLE_INTROSPECTION option.
1055 * Source/PlatformGTK.cmake: Dot not add gir global target if
1056 introspection is disabled.
1057 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1058 introspection is disabled.
1060 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1062 [GTK] Support script message handlers WebKitUserContentManager
1063 https://bugs.webkit.org/show_bug.cgi?id=133730
1065 Reviewed by Carlos Garcia Campos.
1067 Support user script message handlers in WebKitUserContentManager.
1068 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1069 an option is added to the CMake build files. The option is disabled
1070 globally by default, and the WebKitGTK port enables it. On the API
1071 level, two new methods to register and unregister names are provided
1072 in the "window.webkit" namespace, and on message reception the
1073 "WebKitUserContentManager::script-message-received" signal is
1074 emitted, using the registered names as signal detail.
1076 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1077 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1078 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1079 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1081 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1083 [GTK] Bump libsoup's minimum version to 2.42.0.
1084 https://bugs.webkit.org/show_bug.cgi?id=138086
1086 Reviewed by Martin Robinson.
1088 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1089 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1090 the minimum version required to build the port these days.
1092 In addition, since the autotools build system required 2.42.0 before
1093 being retired, require the same version here. Version 2.42.0 was also
1095 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1097 * Source/cmake/OptionsGTK.cmake:
1099 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1101 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1102 https://bugs.webkit.org/show_bug.cgi?id=138132
1104 Reviewed by Csaba Osztrogonác.
1106 * Source/cmake/OptionsEfl.cmake:
1108 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1110 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1112 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1114 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1116 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1117 https://bugs.webkit.org/show_bug.cgi?id=137946
1119 Reviewed by Gyuyoung Kim.
1121 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1123 * Source/cmake/OptionsEfl.cmake:
1125 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1127 Fix FTL Native Inlining for EFL
1128 https://bugs.webkit.org/show_bug.cgi?id=137774
1130 Reviewed by Michael Saboff.
1132 Updated CMake for FTL Native Inlining.
1135 * Source/cmake/FindClang.cmake: Added.
1136 * Source/cmake/OptionsEfl.cmake:
1137 * Source/cmakeconfig.h.cmake:
1139 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1141 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1142 https://bugs.webkit.org/show_bug.cgi?id=137748
1144 Reviewed by Brian Burg.
1146 * Source/PlatformEfl.cmake:
1148 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1150 [GTK] Add initial gestures support
1151 https://bugs.webkit.org/show_bug.cgi?id=137812
1153 Reviewed by Sergio Villar Senin.
1155 Check if the GTK+ version supports gestures or not.
1157 * Source/cmake/FindGTK3.cmake:
1158 * Source/cmake/OptionsGTK.cmake:
1160 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1162 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1163 https://bugs.webkit.org/show_bug.cgi?id=137781
1165 Reviewed by Martin Robinson.
1167 We used to enable smooth scrolling unconditionally in autotools
1168 (via WebKitFeatures.m4), but since the switch to CMake it's
1169 unconditionally disabled, so changing the setting doesn't have any
1172 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1174 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1176 Removing CUSTOM_PROTOCOLS guard
1177 https://bugs.webkit.org/show_bug.cgi?id=137741
1179 Reviewed by Benjamin Poulain.
1181 * Source/cmake/OptionsEfl.cmake:
1183 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1185 [EFL] Enable WebP support.
1186 https://bugs.webkit.org/show_bug.cgi?id=136156
1188 Reviewed by Gyuyoung Kim.
1190 Add WebP package finding rule.
1192 * Source/cmake/OptionsEfl.cmake:
1194 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1196 [EFL] Enable custom URI schemes with CustomProtocols
1197 https://bugs.webkit.org/show_bug.cgi?id=128177
1199 Reviewed by Gyuyoung Kim.
1201 Fixing ewk_context_url_scheme_register() ewebkit2 API
1202 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1204 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1206 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1208 Bump version to 2.7.0
1209 https://bugs.webkit.org/show_bug.cgi?id=137301
1211 Rubber-stamped by Carlos Garcia Campos.
1213 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1215 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1217 [EFL] Rename TEST_THEME_DIR macro
1218 https://bugs.webkit.org/show_bug.cgi?id=137244
1220 Reviewed by Csaba Osztrogonác.
1222 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1224 2014-09-27 Dan Bernstein <mitz@apple.com>
1226 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1227 https://bugs.webkit.org/show_bug.cgi?id=137053
1229 Reviewed by Mark Rowe.
1231 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1232 In the build pre-action, pass the --wksi and --llvm options to
1233 copy-webkitlibraries-to-product-directory.
1234 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1236 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1238 [GTK] Enable CSS_IMAGE_SET in production builds
1239 https://bugs.webkit.org/show_bug.cgi?id=137142
1241 Reviewed by Alejandro G. Castro.
1243 This is required by the inspector to show some of the icons that
1244 has a HiDPI variant.
1246 * Source/cmake/OptionsGTK.cmake:
1248 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1250 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1251 https://bugs.webkit.org/show_bug.cgi?id=136377
1253 Reviewed by Philippe Normand.
1255 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1256 for CMake versions less than 3.
1258 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1260 Remove WinCE port from trunk
1261 https://bugs.webkit.org/show_bug.cgi?id=136951
1263 Reviewed by Alex Christensen.
1265 * Source/cmake/OptionsWinCE.cmake: Removed.
1266 * Source/cmake/WebKitPackaging.cmake:
1268 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1270 [EFL][GTK] Remove WebKit1 related codes
1271 https://bugs.webkit.org/show_bug.cgi?id=136853
1273 Reviewed by Csaba Osztrogonác.
1275 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1278 * Source/PlatformGTK.cmake:
1280 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1283 https://bugs.webkit.org/show_bug.cgi?id=136820
1285 Reviewed by Csaba Osztrogonác.
1287 * Source/cmake/FindICU.cmake:
1289 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1291 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1292 https://bugs.webkit.org/show_bug.cgi?id=136814
1294 Reviewed by Philippe Normand.
1296 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1297 We bundle the wayland-egl dependency with wayland-client and wayland-server
1298 and store the resulting variables with the WAYLAND_ prefix. Because of this
1299 this line wasn't exporting anything useful.
1301 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1303 URTBF after r173574.
1305 * Source/cmake/WebKitMacros.cmake:
1307 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1309 [JavaScriptCore] Fix FTL on platform EFL.
1310 https://bugs.webkit.org/show_bug.cgi?id=133571
1312 Reviewed by Filip Pizlo.
1316 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1317 * Source/cmake/OptionsEfl.cmake:
1319 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1322 https://bugs.webkit.org/show_bug.cgi?id=136571
1324 Reviewed by Darin Adler.
1326 * Source/cmake/OptionsEfl.cmake:
1327 * Source/cmake/OptionsGTK.cmake:
1328 * Source/cmake/OptionsMac.cmake:
1329 * Source/cmake/WebKitFeatures.cmake:
1330 * Source/cmakeconfig.h.cmake:
1332 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1334 Remove CSS_FILTERS flag
1335 https://bugs.webkit.org/show_bug.cgi?id=136529
1337 Reviewed by Dirk Schulze.
1339 * Source/cmake/OptionsEfl.cmake:
1340 * Source/cmake/OptionsGTK.cmake:
1341 * Source/cmake/OptionsMac.cmake:
1342 * Source/cmake/WebKitFeatures.cmake:
1343 * Source/cmakeconfig.h.cmake:
1345 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1347 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1348 https://bugs.webkit.org/show_bug.cgi?id=136194
1350 Reviewed by Csaba Osztrogonác.
1352 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1356 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1358 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1359 https://bugs.webkit.org/show_bug.cgi?id=135560
1361 Reviewed by Gyuyoung Kim.
1363 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1365 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1367 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1368 https://bugs.webkit.org/show_bug.cgi?id=136343
1370 Reviewed by David Kilzer.
1372 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1374 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1375 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1377 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1379 [EFL] Share fast/speechsynthesis/ with other ports
1380 https://bugs.webkit.org/show_bug.cgi?id=136224
1382 Reviewed by Chris Fleizach.
1384 Enable WebSpeech for EFL.
1386 * Source/cmake/OptionsEfl.cmake:
1388 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1390 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1391 https://bugs.webkit.org/show_bug.cgi?id=136127
1393 Reviewed by Gyuyoung Kim.
1395 Add build support for espeak.
1397 * Source/cmake/FindEspeak.cmake: Added.
1398 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1400 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1402 [EFL] Build break using clang
1403 https://bugs.webkit.org/show_bug.cgi?id=136245
1405 Reviewed by Gyuyoung Kim.
1407 * Source/cmake/OptionsEfl.cmake:
1408 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1409 Some warnings are from system libraries.
1411 2014-08-25 Alberto Garcia <berto@igalia.com>
1413 [GTK] Unify webkitgtk and webkit2gtk directories
1414 https://bugs.webkit.org/show_bug.cgi?id=136209
1416 Reviewed by Carlos Garcia Campos.
1418 Use webkit2gtk-X.X both for the process binaries and the injected
1421 * Source/cmake/OptionsGTK.cmake:
1423 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1425 [EFL] Move Efl specific code from Source/CMakeLists.txt
1426 https://bugs.webkit.org/show_bug.cgi?id=136206
1428 Reviewed by Gyuyoung Kim.
1430 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1431 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1433 * Source/CMakeLists.txt:
1434 * Source/cmake/OptionsEfl.cmake:
1436 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1438 [EFL] Introduce DEVELOPER_MODE
1439 https://bugs.webkit.org/show_bug.cgi?id=135884
1441 Reviewed by Gyuyoung Kim.
1443 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1444 instead of SHARED_CORE.
1445 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1446 from release binary.
1448 * Source/cmake/OptionsEfl.cmake:
1449 * Source/cmake/WebKitHelpers.cmake:
1450 Moved fvisibility=hidden to OptionsEfl.cmake
1452 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1454 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1455 https://bugs.webkit.org/show_bug.cgi?id=136110
1457 Reviewed by Gyuyoung Kim.
1459 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1461 * Source/cmake/OptionsEfl.cmake:
1463 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1465 [EFL] Apply eflsymbols.filter to WebKit2
1466 https://bugs.webkit.org/show_bug.cgi?id=136148
1468 Reviewed by Csaba Osztrogonác.
1470 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1471 in the eflsymbols.filter.
1473 * Source/cmake/OptionsEfl.cmake:
1474 * Source/cmake/eflsymbols.filter:
1476 2014-08-21 Zalan Bujtas <zalan@apple.com>
1478 Enable SATURATED_LAYOUT_ARITHMETIC.
1479 https://bugs.webkit.org/show_bug.cgi?id=136106
1481 Reviewed by Simon Fraser.
1483 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1484 (No measurable performance regression on Mac.)
1486 * Source/cmake/OptionsMac.cmake:
1487 * Source/cmake/WebKitFeatures.cmake:
1488 * Source/cmakeconfig.h.cmake:
1490 2014-08-19 Zalan Bujtas <zalan@apple.com>
1492 Remove ENABLE(SUBPIXEL_LAYOUT).
1493 https://bugs.webkit.org/show_bug.cgi?id=136077
1495 Reviewed by Simon Fraser.
1497 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
1499 * Source/cmake/OptionsEfl.cmake:
1500 * Source/cmake/OptionsGTK.cmake:
1501 * Source/cmake/OptionsMac.cmake:
1502 * Source/cmake/WebKitFeatures.cmake:
1503 * Source/cmakeconfig.h.cmake:
1505 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
1507 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1508 https://bugs.webkit.org/show_bug.cgi?id=135980
1510 Reviewed by Martin Robinson.
1512 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1513 overrides any other disabled optimization that was prepended to these
1514 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1515 lists first in the final list of compilation flags.
1517 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1518 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1520 * Source/cmake/OptionsCommon.cmake:
1521 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1522 * Source/cmake/OptionsGTK.cmake:
1524 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1526 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1528 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1530 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1532 [GTK] Disable memory sampler on non-Linux system
1533 https://bugs.webkit.org/show_bug.cgi?id=134483
1535 Reviewed by Philippe Normand.
1537 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1538 Linux because it uses many Linux-specific features, so we should disable
1539 memory sampler on other systems by default.
1541 * Source/cmake/OptionsGTK.cmake:
1543 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1545 [GTK] HTML API documentation should also be installed versioned
1546 https://bugs.webkit.org/show_bug.cgi?id=135970
1548 Reviewed by Philippe Normand.
1550 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1553 2014-08-14 Tomas Popela <tpopela@redhat.com>
1555 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1556 https://bugs.webkit.org/show_bug.cgi?id=135937
1558 Reviewed by Carlos Garcia Campos.
1562 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1564 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1565 https://bugs.webkit.org/show_bug.cgi?id=135934
1567 Reviewed by Gustavo Noronha Silva.
1569 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1570 The gir files should installed in $datadir/gir-1.0/ together with all other
1571 gir files. We don't need to install introspection files in a versioned
1572 directory because their filenames already contain the binary version. But before
1573 r171598, the files were only installed to the right directory if the
1574 gobject-instrospection pkg-config file was in the same prefix than the one we
1575 wanted to install, because the gir and typelibs directories were extracted from
1576 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1577 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1578 like we do in the autotools build.
1580 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1581 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1582 * Source/cmake/OptionsGTK.cmake: Define
1583 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1585 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1587 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1588 https://bugs.webkit.org/show_bug.cgi?id=135836
1590 Reviewed by Philippe Normand.
1592 * Source/PlatformGTK.cmake: Add install command to also install
1593 the GObject DOM bindings API docs.
1595 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1597 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1598 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1599 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1600 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1603 * Source/cmake/OptionsCommon.cmake:
1605 2014-08-13 Alex Christensen <achristensen@webkit.org>
1607 Progress towards CMake on Mac.
1608 https://bugs.webkit.org/show_bug.cgi?id=135819
1610 Reviewed by Laszlo Gombos.
1612 * Source/cmake/OptionsMac.cmake:
1613 Disable some more features temporarily to get CMake working.
1614 * Source/cmake/WebKitMacros.cmake:
1615 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1617 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1619 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1620 https://bugs.webkit.org/show_bug.cgi?id=135798
1622 Reviewed by Philippe Normand.
1624 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1626 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1627 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1628 https://bugs.webkit.org/show_bug.cgi?id=133317
1630 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1632 Reviewed by Philippe Normand.
1634 No new tests since no new functionality has been added.
1636 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1638 2014-08-11 Commit Queue <commit-queue@webkit.org>
1640 Unreviewed, rolling out r172393.
1641 https://bugs.webkit.org/show_bug.cgi?id=135796
1643 discussion needed about GnuTLS version bump on the bots
1644 (Requested by philn on #webkit).
1648 https://bugs.webkit.org/show_bug.cgi?id=133317
1649 http://trac.webkit.org/changeset/172393
1651 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1652 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1653 https://bugs.webkit.org/show_bug.cgi?id=133317
1655 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1657 Reviewed by Philippe Normand.
1659 No new tests since no new functionality has been added.
1661 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1663 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1665 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1666 https://bugs.webkit.org/show_bug.cgi?id=133316
1668 Reviewed by Philippe Normand.
1670 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1671 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1672 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1674 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1676 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1678 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1680 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1682 [GTK] REGRESSION(r166239): The ld version script is not being used
1683 https://bugs.webkit.org/show_bug.cgi?id=135694
1685 Reviewed by Martin Robinson.
1687 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1688 it as gtksymbols.filter. Also updated it, since some of the symbols
1689 exported were renamed.
1691 * Source/cmake/OptionsGTK.cmake:
1692 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1694 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1696 [GTK] Child processes should be installed in a versioned directory
1697 https://bugs.webkit.org/show_bug.cgi?id=135754
1699 Reviewed by Gustavo Noronha Silva.
1701 Define LIBEXEC_INSTALL_DIR as
1702 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1703 so that the child processes are installed in $libexec/webkitgtk-4.0.
1704 This makes it possible to install 2.6 in parallel to older versions.
1706 * Source/cmake/OptionsGTK.cmake:
1708 2014-08-08 Alex Christensen <achristensen@webkit.org>
1710 Progress towards using CMake on Mac.
1711 https://bugs.webkit.org/show_bug.cgi?id=135662
1713 Reviewed by Laszlo Gombos.
1716 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1717 * Source/cmake/WebKitFeatures.cmake:
1718 * Source/cmakeconfig.h.cmake:
1719 Added features that are needed by the Mac port.
1720 * Source/cmake/OptionsMac.cmake:
1721 Enable CSS_IMAGE_SET based on FeatureDefines.h.
1722 Disable the FTL with CMake for now.
1723 * Source/cmake/OptionsEFL.cmake:
1724 * Source/cmake/OptionsGTK.cmake:
1725 Enable subpixel layout to not conflict with FeatureDefines.h
1727 2014-08-08 Simon Fraser <simon.fraser@apple.com>
1729 Undo some erroneous changes to the Xcode scheme files from r172259.
1731 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1732 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1734 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
1736 [CMake] Drop the required version of CMake down to 2.8.8
1737 https://bugs.webkit.org/show_bug.cgi?id=135713
1739 Reviewed by Alex Christensen.
1741 * CMakeLists.txt: Require CMake 2.8.8.
1743 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
1745 Get rid of INPUT_SPEECH
1746 https://bugs.webkit.org/show_bug.cgi?id=135672
1748 Reviewed by Andreas Kling.
1750 * Source/cmake/OptionsMac.cmake:
1751 * Source/cmake/WebKitFeatures.cmake:
1752 * Source/cmakeconfig.h.cmake:
1754 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
1756 [GTK] Disable IndexedDB
1757 https://bugs.webkit.org/show_bug.cgi?id=135692
1759 Reviewed by Carlos Garcia Campos.
1761 * Source/cmake/OptionsGTK.cmake:
1763 2014-08-06 Dean Jackson <dino@apple.com>
1765 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
1766 https://bugs.webkit.org/show_bug.cgi?id=135675
1768 Reviewed by Sam Weinig.
1770 * Source/cmake/OptionsGTK.cmake:
1771 * Source/cmake/OptionsMac.cmake:
1772 * Source/cmake/WebKitFeatures.cmake:
1773 * Source/cmakeconfig.h.cmake:
1775 2014-08-06 David Farler <dfarler@apple.com>
1777 Unreviewed build fix: Make includes semicolon in assignment.
1779 * Makefile.shared: Remove a ;
1781 2014-08-06 David Farler <dfarler@apple.com>
1783 Set DSYMUTIL_NUM_THREADS to the number of logical cores
1784 https://bugs.webkit.org/show_bug.cgi?id=135655
1786 Reviewed by Mark Rowe.
1788 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
1790 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1792 [GTK] Be able to disable gtk2 dependency
1793 https://bugs.webkit.org/show_bug.cgi?id=135505
1795 Reviewed by Gustavo Noronha Silva.
1797 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
1798 required when it's enabled. It's enabled by default.
1800 * Source/cmake/OptionsGTK.cmake:
1802 2014-08-05 Alex Christensen <achristensen@webkit.org>
1805 https://bugs.webkit.org/show_bug.cgi?id=135620
1807 Reviewed by Laszlo Gombos.
1809 * Source/cmake/OptionsMac.cmake:
1810 Use UDIS86 by default on Mac.
1812 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
1814 Add a flag for the CSS Selectors level 4 implementation
1815 https://bugs.webkit.org/show_bug.cgi?id=135535
1817 Reviewed by Andreas Kling.
1819 * Source/cmake/OptionsEfl.cmake:
1820 * Source/cmake/OptionsGTK.cmake:
1821 * Source/cmake/WebKitFeatures.cmake:
1822 * Source/cmakeconfig.h.cmake:
1824 2014-08-04 Alex Christensen <achristensen@webkit.org>
1826 Progress towards CMake on Mac.
1827 https://bugs.webkit.org/show_bug.cgi?id=135528
1829 Reviewed by Gyuyoung Kim.
1831 * Source/cmake/OptionsMac.cmake:
1832 Made options list based on FeatureDefines.xcconfig files.
1834 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1836 [GTK] Windowing target support should reflect the support in the GTK+ dependency
1837 https://bugs.webkit.org/show_bug.cgi?id=134736
1839 Reviewed by Martin Robinson.
1841 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
1842 support the X11 or Wayland windowing targets -- instead, if there's no support
1843 the specific target is disabled, and an error is thrown only if neither of the
1844 backends is enabled at the end..
1845 For now the X11 target remains enabled by default, and the Wayland target is
1846 kept disabled. Once it's possible to have both targets enabled at runtime in
1847 WebKit, the Wayland target will be enabled as well and we'll leave it to the
1848 GTK+ dependency to determine which targets can be enabled.
1850 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1852 [CMake] Add FindWayland.cmake
1853 https://bugs.webkit.org/show_bug.cgi?id=135540
1855 Reviewed by Martin Robinson.
1857 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
1858 dependency. For now bundles the wayland-client, wayland-server and
1859 wayland-egl pkg-config targets into one dependency, but these could
1860 be split in the future if necessary.
1862 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
1864 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
1865 https://bugs.webkit.org/show_bug.cgi?id=135553
1867 Reviewed by Gyuyoung Kim.
1869 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
1870 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
1872 * Source/cmake/OptionsEfl.cmake:
1874 2014-08-01 Bear Travis <betravis@adobe.com>
1876 [Feature Queries] Enable Feature Queries on EFL/GTK
1877 https://bugs.webkit.org/show_bug.cgi?id=134902
1879 Reviewed by Benjamin Poulain.
1881 Enable CSS Feature Queries by default on the EFL and GTK
1884 * Source/cmake/OptionsEfl.cmake:
1885 * Source/cmake/OptionsGTK.cmake:
1887 2014-08-01 Alex Christensen <achristensen@webkit.org>
1889 Progress towards cmake on Windows.
1890 https://bugs.webkit.org/show_bug.cgi?id=135484
1892 Reviewed by Martin Robinson.
1895 Added Mac to list of ports, even though it is not done yet.
1896 Changed minimum bison version to version installed on Macs.
1897 * Source/cmake/OptionsAppleWin.cmake:
1898 Added some definitions.
1899 * Source/cmake/OptionsEfl.cmake:
1900 * Source/cmake/OptionsGTK.cmake:
1901 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
1902 * Source/cmake/OptionsMac.cmake: Added blank for now.
1903 * Source/cmake/OptionsWinCairo.cmake:
1904 * Source/cmake/OptionsWindows.cmake:
1905 Added some definitions.
1906 Removed /WX (warnings treated as error while compiling).
1907 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
1909 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
1911 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
1912 https://bugs.webkit.org/show_bug.cgi?id=135501
1914 Reviewed by Gyuyoung Kim.
1916 Use PROJECT_VERSION_MICRO instead.
1918 * Source/cmake/OptionsEfl.cmake:
1919 * Source/cmake/OptionsGTK.cmake:
1920 * Source/cmake/WebKitHelpers.cmake:
1922 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
1924 [EFL] Bump ewebkit version to 1.11
1925 https://bugs.webkit.org/show_bug.cgi?id=135487
1927 Reviewed by Gyuyoung Kim.
1929 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
1931 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
1933 [EFL] Add support for building with Geoclue2.
1934 https://bugs.webkit.org/show_bug.cgi?id=135455
1936 Reviewed by Gyuyoung Kim.
1938 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
1941 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1943 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
1945 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1947 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1949 [GTK] Bump binary version for 2.6
1950 https://bugs.webkit.org/show_bug.cgi?id=133724
1952 Reviewed by Philippe Normand.
1954 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
1955 update library version numbers.
1957 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
1959 [CMake] Bump the minimum required version
1960 https://bugs.webkit.org/show_bug.cgi?id=135382
1962 Reviewed by Gyuyoung Kim.
1964 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
1965 we introduced usage of target_include_directories().
1967 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
1969 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
1970 https://bugs.webkit.org/show_bug.cgi?id=135376
1972 Reviewed by Gyuyoung Kim.
1974 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
1976 * Source/cmake/OptionsEfl.cmake:
1977 * Source/cmake/OptionsGTK.cmake:
1979 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
1981 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
1982 https://bugs.webkit.org/show_bug.cgi?id=135288
1984 Reviewed by Martin Robinson.
1986 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
1987 datadir to pkgconfig
1988 * Source/cmake/OptionsGTK.cmake: define install directories early
1989 enough to be used in FindGObjectIntrospection.cmake
1991 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
1993 Remove CSS_EXCLUSIONS compile flag and leftover code
1994 https://bugs.webkit.org/show_bug.cgi?id=135175
1996 Reviewed by Zoltan Horvath.
1998 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
1999 stubs. This removes the flag and the useless code.
2001 * Source/cmake/WebKitFeatures.cmake:
2002 * Source/cmakeconfig.h.cmake:
2004 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2006 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2007 https://bugs.webkit.org/show_bug.cgi?id=135114
2009 Fix build with GStreamer 1.4
2011 Reviewed by Philippe Normand.
2013 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2014 gst-mpegts component instead of the unstable 1.3.x verstions.
2016 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2018 [GTK] Simplify make-dist command line arguments
2019 https://bugs.webkit.org/show_bug.cgi?id=134832
2021 Reviewed by Martin Robinson.
2023 * Source/PlatformGTK.cmake: Use --version instead of
2024 --tarball-root when running make-dist.py.
2026 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2028 Add a manual test for r135044
2030 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2032 Rubber-stamped by Andy Estes.
2034 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2036 2014-07-18 Dana Burkart <dburkart@apple.com>
2038 Add a new 'analyze' target to the makefile. This will make use of a new
2039 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2041 https://bugs.webkit.org/show_bug.cgi?id=135057
2042 <rdar://problem/10193187>
2044 Reviewed by David Kilzer.
2050 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2052 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2053 https://bugs.webkit.org/show_bug.cgi?id=134963
2055 Reviewed by Gyuyoung Kim.
2057 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2059 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2061 2014-07-14 Daniel Bates <dabates@apple.com>
2063 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2064 https://bugs.webkit.org/show_bug.cgi?id=134905
2065 <rdar://problem/16602779>
2067 Reviewed by Simon Fraser.
2069 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2070 on the tapped element when processing a touchend as a result of finger pressing and releasing
2071 on the same element that is initially positioned outside the visible content area.
2073 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2075 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2077 [GTK] Enable VIDEO_TRACK by default
2078 https://bugs.webkit.org/show_bug.cgi?id=134801
2080 Reviewed by Philippe Normand.
2082 * Source/cmake/OptionsGTK.cmake:
2084 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2086 [GTK][CMake] Add a 'distcheck' target
2087 https://bugs.webkit.org/show_bug.cgi?id=130675
2089 Reviewed by Gustavo Noronha Silva.
2091 * Source/PlatformGTK.cmake: Add distcheck target.
2093 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2095 [GTK] Use the same default options for production builds that previous stable releases
2096 https://bugs.webkit.org/show_bug.cgi?id=134589
2098 Reviewed by Martin Robinson.
2100 Change the default value of some features to match our stable releases.
2101 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2102 canvas depend on whether cairo-gl is found.
2104 * Source/cmake/FindCairoGL.cmake: Added.
2105 * Source/cmake/OptionsGTK.cmake:
2107 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2109 [EFL] Support Encrypted Media Extensions.
2110 https://bugs.webkit.org/show_bug.cgi?id=134750
2112 Reviewed by Gyuyoung Kim.
2114 Webkit needs to play encrypted media contents when media player
2115 is played by Media source extensions and normal video procedure.
2117 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2119 2014-07-08 Alex Christensen <achristensen@webkit.org>
2121 Steps towards CMake on Windows.
2122 https://bugs.webkit.org/show_bug.cgi?id=134716
2124 Reviewed by Martin Robinson.
2127 Added AppleWin and WinCairo to list of CMake ports.
2128 * Source/cmake/OptionsAppleWin.cmake: Added.
2129 * Source/cmake/OptionsWinCairo.cmake: Added.
2130 * Source/cmake/OptionsWindows.cmake:
2131 Windows needs to use the system malloc. Other options to come.
2133 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2135 [EFL] Support Geolocation
2136 https://bugs.webkit.org/show_bug.cgi?id=134439
2138 Reviewed by Antonio Gomes.
2140 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2142 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2144 Broken build with build-webkit --no-video
2145 https://bugs.webkit.org/show_bug.cgi?id=134587
2147 Reviewed by Darin Adler.
2149 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2151 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2153 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2155 [GTK] The list of features shown by cmake is not accurate
2156 https://bugs.webkit.org/show_bug.cgi?id=134588
2158 Reviewed by Gustavo Noronha Silva.
2160 The problem is that some options might change after the feature
2161 list has been printed.
2163 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2164 setting the default values of features and set WEBGL value
2165 depending on the dependencies, and API_TEST depending on whether
2166 developer mode is enabled or not.
2168 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2170 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2171 https://bugs.webkit.org/show_bug.cgi?id=134578
2173 Reviewed by Gyuyoung Kim.
2175 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2176 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2177 disable related option if it is not ON.
2179 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2180 * Source/cmake/OptionsGTK.cmake: Ditto.
2181 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2183 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2185 [GTK] make dist is broken
2186 https://bugs.webkit.org/show_bug.cgi?id=134542
2188 Reviewed by Martin Robinson.
2190 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2192 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2194 [CMake] Add necessary support for building for the Wayland target
2195 https://bugs.webkit.org/show_bug.cgi?id=134160
2197 Reviewed by Darin Adler.
2199 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2200 is enabled, and that its version matches the version of the generic package. Same
2201 for the gtk+-wayland-3.0 package and the Wayland target.
2202 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2203 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2204 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2205 so they keep building the TestNetscapePlugin target.
2206 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2207 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2208 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2209 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2210 the minimum required version as soon as that target is enabled. Only search for GLX
2211 if the X11 target is enabled.
2213 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2215 Add support for HTMLImageElement's sizes attribute
2216 https://bugs.webkit.org/show_bug.cgi?id=133620
2218 Reviewed by Dean Jackson.
2220 Added an ENABLE_PICTURE_SIZES compile flag.
2222 * Source/cmake/WebKitFeatures.cmake:
2223 * Source/cmakeconfig.h.cmake:
2225 2014-06-26 Daniel Bates <dabates@apple.com>
2227 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2228 https://bugs.webkit.org/show_bug.cgi?id=134309
2229 <rdar://problem/17427385>
2231 Reviewed by Darin Adler.
2233 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2236 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2238 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2240 Remove build guard for progress element
2241 https://bugs.webkit.org/show_bug.cgi?id=134292
2243 Reviewed by Benjamin Poulain.
2245 The build flag is no longer needed as it is always on.
2247 * Source/cmake/WebKitFeatures.cmake:
2248 * Source/cmakeconfig.h.cmake:
2250 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2252 [EFL] Platform support for WebSpeech feature.
2253 https://bugs.webkit.org/show_bug.cgi?id=116438
2255 Reviewed by Csaba Osztrogonác.
2257 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2259 * Source/cmake/OptionsEfl.cmake:
2260 * Source/cmake/WebKitFeatures.cmake:
2262 2014-06-23 Philippe Normand <pnormand@igalia.com>
2264 Unreviewed, GTK build fix after r170266.
2266 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2268 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2270 Disable gamepad feature on EFL and GTK ports by default
2271 https://bugs.webkit.org/show_bug.cgi?id=134169
2273 Reviewed by Brady Eidson.
2275 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
2277 2014-06-21 Brady Eidson <beidson@apple.com>
2279 Gamepad API - Deprecate the existing implementation
2280 https://bugs.webkit.org/show_bug.cgi?id=134108
2282 Reviewed by Timothy Hatcher.
2284 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2285 -Add the "Deprecated" suffix to some implementation files
2287 * Source/cmake/OptionsEfl.cmake:
2288 * Source/cmake/OptionsGTK.cmake:
2289 * Source/cmake/WebKitFeatures.cmake:
2290 * Source/cmakeconfig.h.cmake:
2292 2014-06-21 Commit Queue <commit-queue@webkit.org>
2294 Unreviewed, rolling out r170244.
2295 https://bugs.webkit.org/show_bug.cgi?id=134157
2297 GTK/EFL bindings generator works differently, making this
2298 patch not work there. Will fix entire patch after a rollout.
2299 (Requested by bradee-oh on #webkit).
2303 "Gamepad API - Deprecate the existing implementation"
2304 https://bugs.webkit.org/show_bug.cgi?id=134108
2305 http://trac.webkit.org/changeset/170244
2307 2014-06-21 Brady Eidson <beidson@apple.com>
2309 Gamepad API - Deprecate the existing implementation
2310 https://bugs.webkit.org/show_bug.cgi?id=134108
2312 Reviewed by Timothy Hatcher.
2314 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2315 -Add the "Deprecated" suffix to some implementation files
2317 * Source/cmake/OptionsEfl.cmake:
2318 * Source/cmake/OptionsGTK.cmake:
2319 * Source/cmake/WebKitFeatures.cmake:
2320 * Source/cmakeconfig.h.cmake:
2322 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2324 Removing PAGE_VISIBILITY_API compile guard.
2325 https://bugs.webkit.org/show_bug.cgi?id=133844
2327 Reviewed by Gavin Barraclough.
2329 * Source/cmake/OptionsEfl.cmake:
2330 * Source/cmake/OptionsGTK.cmake:
2331 * Source/cmake/WebKitFeatures.cmake:
2332 * Source/cmakeconfig.h.cmake:
2334 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2336 [EFL][CMAKE] Disable WebKit1 build as a default
2337 https://bugs.webkit.org/show_bug.cgi?id=134093
2339 Reviewed by Gyuyoung Kim.
2341 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2343 * Source/cmake/OptionsEfl.cmake:
2345 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2347 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2348 https://bugs.webkit.org/show_bug.cgi?id=130389
2350 Reviewed by Mark Lam.
2352 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2353 into !ENABLE(JIT) since they are mutually exclusive.
2355 * Source/cmake/OptionsEfl.cmake:
2356 * Source/cmake/OptionsGTK.cmake:
2357 * Source/cmake/WebKitFeatures.cmake:
2358 * Source/cmakeconfig.h.cmake:
2360 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2362 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2363 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2364 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2365 by the plugin process, but it is searched and utilized separately.
2367 Rubber-stamped by Carlos Garcia Campos.
2369 * Source/cmake/OptionsGTK.cmake:
2371 2014-06-16 Commit Queue <commit-queue@webkit.org>
2373 Unreviewed, rolling out r170003.
2374 https://bugs.webkit.org/show_bug.cgi?id=133938
2376 This patch broke GTK build (Requested by kczech on #webkit).
2380 "[EFL] Platform support for WebSpeech feature."
2381 https://bugs.webkit.org/show_bug.cgi?id=116438
2382 http://trac.webkit.org/changeset/170003
2384 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2386 [EFL] Platform support for WebSpeech feature.
2387 https://bugs.webkit.org/show_bug.cgi?id=116438
2389 Reviewed by Gyuyoung Kim.
2391 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2393 * Source/cmake/OptionsEfl.cmake:
2394 * Source/cmake/WebKitFeatures.cmake:
2396 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2398 [EFL] Remove duplicated compiler flag
2399 https://bugs.webkit.org/show_bug.cgi?id=133838
2401 Reviewed by Anders Carlsson.
2403 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2404 it added to common compiler options. So, it is duplicated.
2406 * Source/cmake/WebKitHelpers.cmake:
2408 2014-06-11 Commit Queue <commit-queue@webkit.org>
2410 Unreviewed, rolling out r169877.
2411 https://bugs.webkit.org/show_bug.cgi?id=133784
2413 rollout wrong build fix approach for EFL port (Requested by
2414 gyuyoung on #webkit).
2418 "Unreviewed, EFL build fix since r169869."
2419 http://trac.webkit.org/changeset/169877
2421 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2423 Unreviewed, EFL build fix since r169869.
2425 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2427 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2429 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2431 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2433 * Source/cmake/WebKitHelpers.cmake:
2435 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2437 [GTK] Make it possible to build with FTL enabled
2438 https://bugs.webkit.org/show_bug.cgi?id=133219
2440 Reviewed by Philippe Normand.
2442 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2444 * Source/cmake/OptionsGTK.cmake:
2446 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2448 [CMake] Clean up FAST_MOBILE_SCROLLING
2449 https://bugs.webkit.org/show_bug.cgi?id=133342
2451 Reviewed by Gyuyoung Kim.
2453 FAST_MOBILE_SCROLLING was removed in r168726.
2455 * Source/cmake/OptionsEfl.cmake:
2456 * Source/cmake/OptionsGTK.cmake:
2457 * Source/cmake/WebKitFeatures.cmake:
2458 * Source/cmakeconfig.h.cmake:
2460 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2463 https://bugs.webkit.org/show_bug.cgi?id=132863
2465 Reviewed by Csaba Osztrogonác.
2467 * Source/cmake/OptionsEfl.cmake:
2468 * Source/cmake/OptionsGTK.cmake:
2469 * Source/cmake/WebKitFeatures.cmake:
2470 * Source/cmakeconfig.h.cmake:
2472 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2474 Allow building CMake based ports with WEB_REPLAY
2475 https://bugs.webkit.org/show_bug.cgi?id=133154
2477 Reviewed by Csaba Osztrogonác.
2479 * Source/cmake/WebKitFeatures.cmake:
2480 * Source/cmakeconfig.h.cmake:
2482 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2484 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2485 https://bugs.webkit.org/show_bug.cgi?id=132907
2487 Reviewed by Gyuyoung Kim.
2489 * Source/cmake/FindLIBCXXABI.cmake: Added.
2490 * Source/cmake/OptionsEfl.cmake:
2492 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2494 [EFL] Turn on ENABLE_CSS_FILTERS
2495 https://bugs.webkit.org/show_bug.cgi?id=133153
2497 Reviewed by Gyuyoung Kim.
2499 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2501 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2503 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2504 https://bugs.webkit.org/show_bug.cgi?id=132819
2506 Reviewed by Carlos Garcia Campos.
2508 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2510 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2511 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2513 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2515 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2517 [CMake] Support building with Debug Fission
2518 https://bugs.webkit.org/show_bug.cgi?id=131177
2520 Reviewed by Philippe Normand.
2522 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2523 of http://gcc.gnu.org/wiki/DebugFission.
2525 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2527 [GTK] Rename translation domain as WebKit2GTK-3.0
2528 https://bugs.webkit.org/show_bug.cgi?id=132953
2530 Reviewed by Gustavo Noronha Silva.
2532 * Source/cmake/OptionsGTK.cmake:
2534 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2536 support for navigator.hardwareConcurrency
2537 https://bugs.webkit.org/show_bug.cgi?id=132588
2539 Reviewed by Filip Pizlo.
2541 * Source/cmake/OptionsEfl.cmake:
2542 * Source/cmake/OptionsGTK.cmake:
2543 * Source/cmake/WebKitFeatures.cmake:
2544 * Source/cmakeconfig.h.cmake:
2546 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2548 Remove CSS_STICKY_POSITION guards
2549 https://bugs.webkit.org/show_bug.cgi?id=132676
2551 Reviewed by Simon Fraser.
2553 * Source/cmake/OptionsEfl.cmake:
2554 * Source/cmake/OptionsGTK.cmake:
2555 * Source/cmake/WebKitFeatures.cmake:
2556 * Source/cmakeconfig.h.cmake:
2558 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2560 Unreviewed. Bump version numbers.
2562 * Source/cmake/OptionsGTK.cmake:
2564 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2566 [GTK][CMake] Unable to do make install
2567 https://bugs.webkit.org/show_bug.cgi?id=130188
2569 Reviewed by Carlos Garcia Campos.
2571 Only try to install the HTML documentation if the build is configured to generate it via
2572 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2573 to keep the HTML documentation directory as an installation source.
2575 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2576 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2577 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2578 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2579 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2581 2014-05-09 Anders Carlsson <andersca@apple.com>
2583 Rename WebKit2.framework to WebKit.framework
2584 https://bugs.webkit.org/show_bug.cgi?id=132743
2585 <rdar://problem/15920046>
2587 Reviewed by Dan Bernstein.
2590 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2592 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2595 2014-05-06 David Kilzer <ddkilzer@apple.com>
2597 Add Makefile targets for copying static libraries (LLVM and WKSI)
2598 <http://webkit.org/b/132619>
2600 Reviewed by Mark Rowe.
2603 (MODULES): Add WebKitLibraries.
2605 2014-05-06 Commit Queue <commit-queue@webkit.org>
2607 Unreviewed, rolling out r168304.
2608 https://bugs.webkit.org/show_bug.cgi?id=132607
2610 Broke the build (Requested by KaL on #webkit).
2614 "[GTK][CMake] Unable to do make install"
2615 https://bugs.webkit.org/show_bug.cgi?id=130188
2616 http://trac.webkit.org/changeset/168304
2618 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2620 [GTK][CMake] Unable to do make install
2621 https://bugs.webkit.org/show_bug.cgi?id=130188
2623 Reviewed by Carlos Garcia Campos.
2625 Only try to install the HTML documentation if the build is configured to generate it via
2626 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2627 to keep the HTML documentation directory as an installation source.
2629 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2630 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2631 never added to the default target, but will be triggered by build-webkit, so that
2632 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2633 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2635 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2637 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2638 https://bugs.webkit.org/show_bug.cgi?id=132525
2640 Reviewed by Martin Robinson.
2642 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2643 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2644 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2646 2014-05-01 David Kilzer <ddkilzer@apple.com>
2648 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2649 <http://webkit.org/b/132432>
2651 Reviewed by Tim Horton.
2653 * Source/cmake/WebKitFeatures.cmake:
2654 * Source/cmakeconfig.h.cmake:
2655 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2657 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2659 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2661 Reviewed by Dan Bernstein/Anders Carlsson.
2663 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2664 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2666 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2668 Let Xcode have its way with the WebKit workspace.
2670 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2671 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2673 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2675 [GTK] Make it easier to run CMake for downstreams
2676 https://bugs.webkit.org/show_bug.cgi?id=132370
2678 Reviewed by Carlos Garcia Campos.
2680 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2682 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2684 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2685 https://bugs.webkit.org/show_bug.cgi?id=132176
2687 Reviewed by Gyuyoung Kim.
2689 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2691 * Source/cmake/OptionsEfl.cmake:
2693 2014-04-22 Alex Christensen <achristensen@webkit.org>
2695 Removed old stdbool and inttypes headers.
2696 https://bugs.webkit.org/show_bug.cgi?id=131966
2698 Reviewed by Brent Fulgham.
2700 * Source/cmake/OptionsWindows.cmake:
2701 * Source/cmake/WebKitPackaging.cmake:
2702 Removed references to os-win32 directory.
2704 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2706 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2708 Rubber-stamped by Carlos Garcia Campos.
2710 * Source/cmake/WebKitFeatures.cmake:
2712 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2714 Empty RenderInline objects should not be line break objects.
2716 https://bugs.webkit.org/show_bug.cgi?id=131861
2717 <rdar://problem/15663617>
2719 Reviewed by David Hyatt.
2721 * ManualTests/empty-inline-as-line-break-position.html: Added.
2722 This issue wouldn't reproduce in WebKitTestRunner.
2724 2014-04-19 Brent Fulgham <bfulgham@apple.com>
2726 Revert unintended workspace change in my last commit.
2728 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
2729 Scheme type back to Debug.
2731 2014-04-18 Philippe Normand <pnormand@igalia.com>
2733 Remove NETWORK_INFO support
2734 https://bugs.webkit.org/show_bug.cgi?id=131841
2736 Reviewed by Gyuyoung Kim.
2738 * Source/cmake/OptionsEfl.cmake:
2739 * Source/cmake/OptionsGTK.cmake:
2740 * Source/cmake/WebKitFeatures.cmake:
2741 * Source/cmakeconfig.h.cmake:
2743 2014-04-17 Darin Adler <darin@apple.com>
2745 Try to fix EFL and GTK builds.
2747 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
2748 * Source/cmake/OptionsGTK.cmake: Ditto.
2749 * Source/cmakeconfig.h.cmake: Ditto.
2751 2014-04-16 Brendan Long <b.long@cablelabs.com>
2753 [GTK][CMAKE] build-webkit doesn't detect when the build fails
2754 https://bugs.webkit.org/show_bug.cgi?id=130148
2756 Reviewed by Martin Robinson.
2758 * Source/cmake/OptionsGTK.cmake: Replace CMake's automatic make -i with make -k, which still continues after errors, but correctly reports tha the build failed.
2760 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
2762 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
2763 https://bugs.webkit.org/show_bug.cgi?id=131725
2765 Reviewed by Philippe Normand.
2767 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
2768 instead of GTK_UNIX_PRINTING_FOUND and set the macro
2769 HAVE_GTK_UNIX_PRINTING to 1 when found.
2771 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
2773 Web Replay: memoize nondeterministic attributes of the Navigator interface
2774 https://bugs.webkit.org/show_bug.cgi?id=131340
2776 Reviewed by Timothy Hatcher.
2778 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
2780 2014-04-09 Brendan Long <b.long@cablelabs.com>
2782 [GStreamer] Expose MPEG-TS metadata
2783 https://bugs.webkit.org/show_bug.cgi?id=122001
2785 Reviewed by Eric Carlson.
2787 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
2788 * Source/cmake/OptionsEfl.cmake: Same.
2789 * Source/cmake/OptionsGTK.cmake: Same.
2791 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
2793 Web Replay: memoize nondeterministic attributes of the Screen interface
2794 https://bugs.webkit.org/show_bug.cgi?id=131339
2796 Reviewed by Timothy Hatcher.
2798 * ManualTests/inspector/replay-window-screen.html: Added.
2800 2014-04-08 Martin Robinson <mrobinson@igalia.com>
2802 [GTK] Remove the WebKitGTK+ WebKit 1 code
2803 https://bugs.webkit.org/show_bug.cgi?id=131399
2805 Reviewed by Anders Carlsson.
2807 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
2808 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
2810 2014-04-08 Dan Bernstein <mitz@apple.com>
2812 Added bmalloc to the WebKit workspace.
2813 https://bugs.webkit.org/show_bug.cgi?id=131362
2815 Reviewed by Geoff Garen.
2817 * WebKit.xcworkspace/contents.xcworkspacedata:
2818 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2819 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2821 2014-04-08 Geoffrey Garen <ggaren@apple.com>
2823 Build bmalloc on iOS too
2824 https://bugs.webkit.org/show_bug.cgi?id=131381
2826 Reviewed by Andreas Kling.
2828 * Source/Makefile: Build it.
2830 2014-04-07 Geoffrey Garen <ggaren@apple.com>
2832 Build bmalloc on Mac
2833 https://bugs.webkit.org/show_bug.cgi?id=131333
2835 Reviewed by Mark Rowe.
2838 * WebKitBuild: Added.
2839 * WebKitBuild/Debug: Added.
2841 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
2843 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
2844 https://bugs.webkit.org/show_bug.cgi?id=131257
2846 Reviewed by Gyuyoung Kim.
2848 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
2850 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2852 [GTK] Stop trying to install WebKit1 documentation
2853 https://bugs.webkit.org/show_bug.cgi?id=131278
2855 Reviewed by Martin Robinson.
2857 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
2858 built anymore since r166584. This fixes `make install'.
2860 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
2862 Web Replay: capture and replay wheel events and scroll commands
2863 https://bugs.webkit.org/show_bug.cgi?id=129402
2865 Reviewed by Timothy Hatcher.
2867 * ManualTests/inspector/replay-wheel-events.html: Added.
2869 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2871 [GTK][CMake] Remove FindXt.cmake.
2872 https://bugs.webkit.org/show_bug.cgi?id=131227
2874 Reviewed by Anders Carlsson.
2876 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
2878 * Source/cmake/FindXt.cmake: Removed.
2879 * Source/cmake/OptionsGTK.cmake:
2881 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
2883 [EFL] Build error due to changed path of generated js files.
2884 https://bugs.webkit.org/show_bug.cgi?id=131215
2886 Reviewed by Gyuyoung Kim.
2888 r166648 fixed the generation of some .js files on GTK. Due to some
2889 changes in the paths it causes a build error on EFL.
2891 * Source/PlatformEfl.cmake:
2892 Replaced path for two derived source files.
2894 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2896 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
2897 https://bugs.webkit.org/show_bug.cgi?id=131095
2899 Reviewed by Martin Robinson.
2901 One needs to take into account OpenGL's include directory found via
2902 find_package() when looking for glx.h, since if the former is a
2903 non-standard location the latter will also be. If this is not it is
2904 possible that OpenGL is found but GLX support is not properly detected.
2906 * Source/cmake/OptionsGTK.cmake:
2908 2014-04-02 Martin Robinson <mrobinson@igalia.com>
2910 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
2911 https://bugs.webkit.org/show_bug.cgi?id=130343
2913 Reviewed by Gustavo Noronha Silva.
2915 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
2917 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
2919 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2921 [CMake] Drop port check from FindEGL.cmake.
2922 https://bugs.webkit.org/show_bug.cgi?id=131091
2924 Reviewed by Gyuyoung Kim.
2926 There is no reason to mark some variables as advanced only for the
2929 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
2930 as advanced regardless of the port.
2932 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2934 Fix the !ENABLE(BATTERY_STATUS) build
2935 https://bugs.webkit.org/show_bug.cgi?id=130183
2937 Reviewed by Anders Carlsson.
2939 * Source/cmake/OptionsEfl.cmake:
2941 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2943 [CMake][GTK] Do not expand variables twice in if() checks.
2944 https://bugs.webkit.org/show_bug.cgi?id=130964
2946 Reviewed by Martin Robinson.
2948 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
2949 to be checked by the if clause. This is not what we want, and
2950 configuration fails when, say, GLX support wasn't found as the if
2951 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
2953 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
2956 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2958 [GTK] Remove scripts code only applicable to autotools
2959 https://bugs.webkit.org/show_bug.cgi?id=130841
2961 Reviewed by Anders Carlsson.
2963 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
2965 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2967 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
2968 https://bugs.webkit.org/show_bug.cgi?id=130936
2970 Reviewed by Carlos Garcia Campos.
2972 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
2974 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
2976 [GTK] Add support for GTK3 plugins
2977 https://bugs.webkit.org/show_bug.cgi?id=130599
2979 Reviewed by Martin Robinson.
2981 * Source/cmake/OptionsGTK.cmake:
2983 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2985 [EFL] Bump glib version from 2.36 to 2.38
2986 https://bugs.webkit.org/show_bug.cgi?id=130886
2988 Reviewed by Csaba Osztrogonác.
2990 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
2992 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
2994 [CSS Shapes] Remove shape-inside support
2995 https://bugs.webkit.org/show_bug.cgi?id=130698
2997 Reviewed by David Hyatt.
2999 * Source/cmake/WebKitFeatures.cmake:
3000 * Source/cmakeconfig.h.cmake:
3002 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3004 [GTK] Remove the autotools build
3005 https://bugs.webkit.org/show_bug.cgi?id=130717
3007 Reviewed by Anders Carlsson.
3009 * .gitignore: Remove references to autotools files.
3010 * GNUmakefile.am: Removed.
3011 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3012 * Source/autotools/CustomMacros.m4: Removed.
3013 * Source/autotools/FindDependencies.m4: Removed.
3014 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3015 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3016 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3017 * Source/autotools/SetupAutomake.m4: Removed.
3018 * Source/autotools/SetupCompilerFlags.m4: Removed.
3019 * Source/autotools/SetupLibtool.m4: Removed.
3020 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3021 * Source/autotools/Versions.m4: Removed.
3022 * Source/autotools/acinclude.m4: Removed.
3023 * Source/autotools/dolt.m4: Removed.
3024 * Source/autotools/gsettings.m4: Removed.
3025 * Source/cmake/OptionsGTK.cmake:
3026 * autogen.sh: Removed.
3027 * configure.ac: Removed.
3029 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3031 [EFL] Add ARM64 build support
3032 https://bugs.webkit.org/show_bug.cgi?id=130506
3034 Rubber stamped by Gyuyoung Kim.
3036 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3038 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3040 [EFL][WK2] Add NETWORK_PROCESS build option
3041 https://bugs.webkit.org/show_bug.cgi?id=130131
3043 Reviewed by Gyuyoung Kim.
3045 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3048 * Source/cmake/OptionsEfl.cmake:
3050 2014-03-24 Brian Burg <bburg@apple.com>
3052 Web Replay: capture and replay keyboard events
3053 https://bugs.webkit.org/show_bug.cgi?id=130314
3055 Reviewed by Joseph Pecoraro.
3057 * ManualTests/inspector/replay-keyboard-events.html: Added.
3059 2014-03-24 Sangyong Park <sy302.park@gmail.com>
3061 [EFL] Inspector page is not loaded.
3062 https://bugs.webkit.org/show_bug.cgi?id=130661
3064 Reviewed by Gyuyoung Kim.
3066 Inspector page is not loaded, because some javascript files are not installed.
3067 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
3069 * Source/PlatformEfl.cmake:
3071 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3073 [EFL][GTK] Get CMake to find Freetype2 properly
3074 https://bugs.webkit.org/show_bug.cgi?id=130150
3076 Reviewed by Martin Robinson.
3078 Newer versions of CMake are not able to find Freetype2 correctly.
3079 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3080 freetype2 repo, because a completely different version number is found in freetype2.pc.
3082 * Source/cmake/FindFreetype2.cmake: Added.
3083 * Source/cmake/OptionsEfl.cmake:
3084 * Source/cmake/OptionsGTK.cmake:
3086 2014-03-20 Brian Burg <bburg@apple.com>
3088 Web Replay: capture and replay mouse events
3089 https://bugs.webkit.org/show_bug.cgi?id=129395
3091 Reviewed by Joseph Pecoraro.
3093 Create a manual test for capture/replay of mouse events.
3094 Copy over the crypto-md5.js library from SunSpider.
3096 * ManualTests/inspector/replay-mouse-events.html: Added.
3097 * ManualTests/inspector/resources/crypto-md5.js: Added.
3099 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
3101 [GTK][CMake] Add support for building with Clang
3102 https://bugs.webkit.org/show_bug.cgi?id=130260
3104 Reviewed by Martin Robinson.
3106 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
3107 to the list C compiler flags as constructed by CMake.
3108 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
3109 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3110 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3111 -fno-tree-dce should be used only for GCC.
3112 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3113 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3115 2014-03-20 Commit Queue <commit-queue@webkit.org>
3117 Unreviewed, rolling out r165962.
3118 https://bugs.webkit.org/show_bug.cgi?id=130512
3120 It broke the build (Requested by Ossy on #webkit).
3124 "[EFL][GTK] Get CMake to find Freetype2 properly"
3125 https://bugs.webkit.org/show_bug.cgi?id=130150
3126 http://trac.webkit.org/changeset/165962
3128 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3130 [EFL][GTK] Get CMake to find Freetype2 properly
3131 https://bugs.webkit.org/show_bug.cgi?id=130150
3133 Reviewed by Csaba Osztrogonác.
3135 Newer versions of CMake are not able to find Freetype2 correctly.
3136 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3137 freetype2 repo, because a completely different version number is found in freetype2.pc.
3139 * Source/cmake/FindFreetype2.cmake: Added.
3140 * Source/cmake/OptionsEfl.cmake:
3141 * Source/cmake/OptionsGTK.cmake:
3143 2014-03-17 Brendan Long <b.long@cablelabs.com>
3145 [GStreamer] human readable language code for tracks
3146 https://bugs.webkit.org/show_bug.cgi?id=124514
3148 Reviewed by Martin Robinson.
3150 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3151 * Source/cmake/FindGStreamer.cmake: Same.
3152 * Source/cmake/OptionsEfl.cmake: Same.
3153 * Source/cmake/OptionsGTK.cmake: Same.
3155 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3157 [GTK][CMake] Credential storage is not enabled
3158 https://bugs.webkit.org/show_bug.cgi?id=130149
3160 Reviewed by Philippe Normand.
3162 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3163 and look libsecret when it's enabled.
3164 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3166 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3168 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3169 https://bugs.webkit.org/show_bug.cgi?id=130155
3171 Reviewed by Philippe Normand.
3173 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3174 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3175 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3177 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3179 [EFL] Enable TOUCH_SLIDER macro.
3180 https://bugs.webkit.org/show_bug.cgi?id=130186
3182 Reviewed by Gyuyoung Kim.
3184 * Source/cmake/OptionsEfl.cmake:
3186 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3188 [GTK][CMake] Build with -fno-rtti
3189 https://bugs.webkit.org/show_bug.cgi?id=130261
3191 Reviewed by Martin Robinson.
3193 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3194 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3195 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3196 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3197 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3198 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3199 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3201 2014-03-16 Brendan Long <b.long@cablelabs.com>
3203 [GStreamer] CMake doesn't find the include path for gstreamer-base
3204 https://bugs.webkit.org/show_bug.cgi?id=130098
3206 Reviewed by Philippe Normand.
3208 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3210 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3212 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3213 https://bugs.webkit.org/show_bug.cgi?id=130276
3214 <rdar://problem/16266927>
3216 Reviewed by Simon Fraser.
3218 * ManualTests/NPN_Invoke/Info.plist:
3219 * ManualTests/NPN_Invoke/main.c:
3220 * ManualTests/accessibility/resources/AppletTest.java:
3222 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3224 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3225 https://bugs.webkit.org/show_bug.cgi?id=130258
3227 Reviewed by Martin Robinson.
3229 GCC compilers 4.7 and later are supported, so there's no need for disabling
3230 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3232 * Source/cmake/WebKitHelpers.cmake:
3234 2014-03-14 Landry Breuil <landry@openbsd.org>
3236 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3237 https://bugs.webkit.org/show_bug.cgi?id=129966
3239 Reviewed by Andreas Kling.
3241 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3242 * Source/autotools/SetupAutomake.m4:
3244 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3246 [CMake] Failure to link with older installations of WebP
3247 https://bugs.webkit.org/show_bug.cgi?id=130195
3249 Reviewed by Gustavo Noronha Silva.
3251 Fix the issue by using a temporary variable as the output parameter
3252 to check_include_files(), setting WEBP_FOUND accordingly later.
3254 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3255 variable in check_include_files(), as it will lead to misleading
3256 results (will always be FALSE). Use a temporary variable instead
3257 and explicitly set WEBP_FOUND to TRUE later if needed.
3259 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3261 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3262 https://bugs.webkit.org/show_bug.cgi?id=130170
3264 Reviewed by Daniel Bates.
3266 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3267 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3268 fake "TestRunner" generator.
3270 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3272 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3273 https://bugs.webkit.org/show_bug.cgi?id=130014
3275 Reviewed by Martin Robinson.
3277 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3279 * Source/cmake/OptionsGTK.cmake:
3280 * Source/cmakeconfig.h.cmake:
3282 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3284 [GTK][CMAKE] Too verbose build output
3285 https://bugs.webkit.org/show_bug.cgi?id=130076
3287 Reviewed by Carlos Garcia Campos.
3289 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3290 works around an issue where cmake --build doesn't support ninja's pretty printing.
3292 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3294 [GTK] Add support for Geoclue2
3295 https://bugs.webkit.org/show_bug.cgi?id=120185
3297 Reviewed by Carlos Garcia Campos.
3299 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3301 Add support for Geoclue2 using autotools.
3303 * Source/autotools/FindDependencies.m4: Add support for handling
3304 both Geoclue 1.0 and 2.0.
3305 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3306 of geoclue that is being used.
3307 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3308 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3309 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3311 Add support for Geoclue2 using CMake.
3313 * Source/cmake/FindGeoClue2.cmake: Added.
3314 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3315 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3317 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3319 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3320 https://bugs.webkit.org/show_bug.cgi?id=130016
3322 Reviewed by Carlos Garcia Campos.
3324 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3325 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3326 HTML version will still run when building the distribution tarball.
3328 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3330 [GTK] [CMake] Clean up library linking
3331 https://bugs.webkit.org/show_bug.cgi?id=129782
3333 Reviewed by Philippe Normand.
3335 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3336 so that unused symbols are not dropped. This is useful when building up shared libraries
3337 from convenience libraries.
3339 2014-03-08 Landry Breuil <landry@openbsd.org>
3341 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3342 https://bugs.webkit.org/show_bug.cgi?id=129973
3344 Reviewed by Martin Robinson.
3346 * Source/autotools/FindDependencies.m4:
3348 2014-03-06 Anders Carlsson <andersca@apple.com>
3350 Build WebKit2 before building WebKit
3351 https://bugs.webkit.org/show_bug.cgi?id=129831
3352 <rdar://problem/15920020>
3354 Reviewed by Dan Bernstein.
3357 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3358 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3360 2014-03-06 Commit Queue <commit-queue@webkit.org>
3362 Unreviewed, rolling out r165193.
3363 http://trac.webkit.org/changeset/165193
3364 https://bugs.webkit.org/show_bug.cgi?id=129823
3366 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3367 env confuses libtool (Requested by zdobersek on #webkit).
3369 * Source/autotools/SetupCompilerFlags.m4:
3371 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3373 [GTK][Autotools] Default to libc++ when compiling with Clang
3374 https://bugs.webkit.org/show_bug.cgi?id=129798
3376 Reviewed by Anders Carlsson.
3378 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3379 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3380 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3382 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3384 [CMake] Ninja generator builds fail with "Argument list too long"
3385 https://bugs.webkit.org/show_bug.cgi?id=129771
3387 Reviewed by Daniel Bates.
3389 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3390 by forcing the use of response files.
3392 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3394 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3395 https://bugs.webkit.org/show_bug.cgi?id=108330
3397 Reviewed by Martin Robinson.
3399 In order to get non-shared debug builds, this patch applied T option for
3400 thin archives to the flags passed to ar when cmake based ports build on linux.
3401 In addition, applied u option which avoids adding a file twice.
3403 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
3404 * Source/cmake/OptionsEfl.cmake:
3405 Removed error messages for non-shared-core debug builds.
3406 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
3408 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
3410 [GTK] Build the Udis86 disassembler
3411 https://bugs.webkit.org/show_bug.cgi?id=129679
3413 Reviewed by Michael Saboff.
3415 * GNUmakefile.am: Add the Udis86_nosources variable.
3416 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
3418 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3420 [GTK] Simplify the GObject DOM bindings API break check into one step
3421 https://bugs.webkit.org/show_bug.cgi?id=129571
3423 Reviewed by Carlos Garcia Campos.
3425 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
3426 Add the check to 'make check.'
3428 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3430 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
3431 https://bugs.webkit.org/show_bug.cgi?id=129502
3433 Reviewed by Carlos Garcia Campos.
3435 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
3437 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
3439 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
3440 https://bugs.webkit.org/show_bug.cgi?id=129031
3442 Reviewed by Csaba Osztrogonác.
3444 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
3446 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
3448 [GTK] WebKit2WebExtension GIR can't be used in vala
3449 https://bugs.webkit.org/show_bug.cgi?id=127179
3451 Reviewed by Martin Robinson.
3453 Add a different pkg-config file for the web extensions API.
3455 * Source/cmake/OptionsGTK.cmake:
3458 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
3460 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
3461 https://bugs.webkit.org/show_bug.cgi?id=129575
3463 Reviewed by Philippe Normand.
3465 * Source/cmake/OptionsEfl.cmake:
3466 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3467 * Source/cmake/OptionsGTK.cmake:
3468 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3469 * Source/cmake/WebKitFeatures.cmake:
3470 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3471 * Source/cmakeconfig.h.cmake:
3472 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
3474 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3476 Enable support of X-Content-Type-Options: nosniff header for EFL
3477 https://bugs.webkit.org/show_bug.cgi?id=128673
3479 Reviewed by Gyuyoung Kim.
3481 * Source/cmake/OptionsEfl.cmake:
3482 Enabled NOSNIFF feature flag for EFL.
3484 2014-02-27 Koop Mast <kwm@FreeBSD.org>
3486 Fallback on checking for libz manualy if zlib.pc isn't available.
3487 https://bugs.webkit.org/show_bug.cgi?id=127061
3489 Reviewed by Gustavo Noronha Silva.
3491 * Source/autotools/FindDependencies.m4:
3493 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
3495 [CSS Grid Layout] Add ENABLE flag
3496 https://bugs.webkit.org/show_bug.cgi?id=129153
3498 Reviewed by Simon Fraser.
3500 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
3501 autotools build systems. The feature is disabled by default for
3504 * Source/autotools/SetupWebKitFeatures.m4:
3505 * Source/cmake/OptionsEfl.cmake:
3506 * Source/cmake/OptionsGTK.cmake:
3507 * Source/cmake/WebKitFeatures.cmake:
3508 * Source/cmakeconfig.h.cmake:
3510 2014-02-24 Martin Robinson <mrobinson@igalia.com>
3512 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
3513 https://bugs.webkit.org/show_bug.cgi?id=128417
3515 Reviewed by Carlos Garcia Campos.
3517 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
3518 may one day be used in the webkitdom config file generation.
3520 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3522 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
3523 https://bugs.webkit.org/show_bug.cgi?id=128961
3525 Reviewed by Ryosuke Niwa.
3527 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
3528 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
3529 EFL port needs not to check "uninitialized" build warning as error in order to
3530 adjust the option to EFL port. This patch don't take it as error temporarily.
3532 * Source/cmake/OptionsEfl.cmake:
3533 * Source/cmake/WebKitHelpers.cmake:
3535 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3537 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3538 https://bugs.webkit.org/show_bug.cgi?id=128434
3540 Reviewed by Anders Carlsson.
3542 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3543 port as well as -fno-tree-dce, like it is used in the autotools build.
3545 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3547 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3548 https://bugs.webkit.org/show_bug.cgi?id=128799
3550 Reviewed by Philippe Normand.
3552 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3553 if building with autotools. cmake system has enabled it as default. So I propose
3554 enabling VIDEO_TRACK as well.
3556 * Source/autotools/SetupWebKitFeatures.m4:
3558 2014-02-14 Commit Queue <commit-queue@webkit.org>
3560 Unreviewed, rolling out r164090.
3561 http://trac.webkit.org/changeset/164090
3562 https://bugs.webkit.org/show_bug.cgi?id=128807
3564 It broke the EFL build (Requested by Ossy on #webkit).
3566 * Source/cmake/OptionsCommon.cmake:
3567 * Source/cmake/OptionsEfl.cmake:
3569 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3571 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3572 https://bugs.webkit.org/show_bug.cgi?id=128434
3574 Extend a fix for EFL to all ports that use GCC. Also include further fixes
3575 that were applied only to the autotools build.
3577 Reviewed by Gyuyoung Kim.
3579 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
3580 as -fno-tree-dce, which is necessary for GTK+.
3581 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
3583 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
3585 [GTK][CMake] Generate GObject DOM bindings .symbols files
3586 https://bugs.webkit.org/show_bug.cgi?id=126210
3588 Reviewed by Martin Robinson.
3590 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
3591 for documentation generation.
3593 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3595 [GTK] MEDIA_CONTROLS_SCRIPT support
3596 https://bugs.webkit.org/show_bug.cgi?id=123097
3598 Reviewed by Jer Noble.
3600 Part of the Autotools and CMake structure to build the media
3603 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
3604 controls script by default.
3605 * Source/cmake/OptionsGTK.cmake: Activated the media controls
3607 * Source/cmake/WebKitFeatures.cmake: Created the option to
3608 activate the controls script.
3609 * Source/cmakeconfig.h.cmake: Created the define template the the
3610 media controls script.
3612 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
3614 [GDB] Add .gdbinit to the list of files ignored by Git
3615 https://bugs.webkit.org/show_bug.cgi?id=128455
3617 Reviewed by Anders Carlsson.
3619 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
3620 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
3621 that covers already removed entries.
3623 2014-02-11 Oliver Hunt <oliver@apple.com>
3625 Make it possible to implement JS builtins in JS
3626 https://bugs.webkit.org/show_bug.cgi?id=127887
3628 Reviewed by Michael Saboff.
3631 * Source/cmake/gtest/CMakeLists.txt:
3633 2014-02-12 Ryan Lortie <desrt@desrt.ca>
3635 'ar T' is not portable and breaks the build on FreeBSD
3636 https://bugs.webkit.org/show_bug.cgi?id=128596
3638 Reviewed by Gustavo Noronha Silva.
3640 Create thin archives only if we are using GNU ar.
3642 * Source/autotools/SetupLibtool.m4:
3644 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
3646 Add the CSS_SHAPE_INSIDE to CMake feature list
3647 https://bugs.webkit.org/show_bug.cgi?id=128530
3649 Reviewed by Gyuyoung Kim.
3651 CSS_SHAPE_INSIDE flag was added in r163333,
3652 this patch is adding this flag to CMake feature list.
3654 * Source/cmake/WebKitFeatures.cmake:
3655 * Source/cmakeconfig.h.cmake:
3657 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
3659 [GTK] Enable touch features
3660 https://bugs.webkit.org/show_bug.cgi?id=98931
3662 Reviewed by Carlos Garcia Campos.
3664 * Source/autotools/SetupWebKitFeatures.m4:
3665 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
3667 2014-02-06 Andreas Kling <akling@apple.com>
3669 Remove unused ENABLE(REPAINT_THROTTLING) flag.
3670 <https://webkit.org/b/128329>
3672 Reviewed by Antti Koivisto.
3674 * Source/cmake/WebKitFeatures.cmake:
3675 * Source/cmakeconfig.h.cmake:
3677 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
3679 [iOS] make should build WebKit2
3680 https://bugs.webkit.org/show_bug.cgi?id=128351
3682 Reviewed by Daniel Bates.
3686 2014-02-05 Andreas Kling <akling@apple.com>
3688 Remove ENABLE(DIRECTORY_UPLOAD).
3689 <https://webkit.org/b/128275>
3691 Rubber-stamped by Ryosuke Niwa.
3693 * Source/autotools/SetupWebKitFeatures.m4:
3694 * Source/cmake/WebKitFeatures.cmake:
3696 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
3698 Remove ENABLE(SVG) guards
3699 https://bugs.webkit.org/show_bug.cgi?id=127991
3701 Reviewed by Sam Weinig.
3703 * Source/autotools/FindDependencies.m4:
3704 * Source/autotools/PrintBuildConfiguration.m4:
3705 * Source/autotools/ReadCommandLineArguments.m4:
3706 * Source/autotools/SetupAutomake.m4:
3707 * Source/autotools/SetupWebKitFeatures.m4:
3708 * Source/cmake/OptionsEfl.cmake:
3709 * Source/cmake/OptionsGTK.cmake:
3710 * Source/cmake/WebKitFeatures.cmake:
3711 * Source/cmakeconfig.h.cmake:
3713 2014-02-04 Andreas Kling <akling@apple.com>
3715 Remove <iframe seamless> support.
3716 <https://webkit.org/b/128213>
3718 Rubber-stamped by Antti Koivisto.
3720 * Source/autotools/SetupWebKitFeatures.m4:
3721 * Source/cmake/WebKitFeatures.cmake:
3722 * Source/cmakeconfig.h.cmake:
3724 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
3726 Remove LEGACY_VIEWPORT_ADAPTION
3727 https://bugs.webkit.org/show_bug.cgi?id=128028
3729 Reviewed by Anders Carlsson.
3731 * Source/cmake/WebKitFeatures.cmake:
3732 * Source/cmakeconfig.h.cmake:
3734 2014-01-31 Oliver Hunt <oliver@apple.com>
3736 Rollout r163195 and related patches
3739 * Source/cmake/gtest/CMakeLists.txt:
3741 2014-01-29 Oliver Hunt <oliver@apple.com>
3743 Make it possible to implement JS builtins in JS
3744 https://bugs.webkit.org/show_bug.cgi?id=127887
3746 Reviewed by Michael Saboff.
3750 * Source/cmake/gtest/CMakeLists.txt:
3752 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3754 [GTK] [CMake] Add support for building against GTK+ 2
3755 https://bugs.webkit.org/show_bug.cgi?id=127959
3757 Reviewed by Anders Carlsson.
3759 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
3760 library API version. When using GTK 2 do not build WebKit 2.
3762 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3764 [GTK] [CMake] Add a "make dist" target
3765 https://bugs.webkit.org/show_bug.cgi?id=116378
3767 Reviewed by Gustavo Noronha Silva.
3769 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
3770 script and then turning the tarfile into a LZMA compressed file.
3772 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
3774 [GTK] Only disable -ftree-dce optimization when compiling with GCC
3775 https://bugs.webkit.org/show_bug.cgi?id=127911
3777 Reviewed by Carlos Garcia Campos.
3779 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
3780 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
3781 at the moment, but is added for the sake of completeness.
3783 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
3785 [EFL] Fix the regression caused by the jsCStack branch merge
3786 https://bugs.webkit.org/show_bug.cgi?id=127898
3788 Reviewed by Zoltan Herczeg.
3790 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
3792 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3794 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
3795 https://bugs.webkit.org/show_bug.cgi?id=127845
3797 Reviewed by Joseph Pecoraro.
3799 * Source/autotools/SetupWebKitFeatures.m4:
3801 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3803 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
3804 https://bugs.webkit.org/show_bug.cgi?id=127840
3806 Reviewed by Mark Lam.
3808 * Source/cmake/WebKitFeatures.cmake:
3809 * Source/cmakeconfig.h.cmake:
3811 2014-01-25 Darin Adler <darin@apple.com>
3813 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
3814 https://bugs.webkit.org/show_bug.cgi?id=127623
3816 Reviewed by Anders Carlsson.
3818 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
3819 * Source/cmake/OptionsGTK.cmake: Ditto.
3820 * Source/cmake/OptionsWinCE.cmake: Ditto.
3822 2014-01-23 Max Vujovic <mvujovic@adobe.com>
3824 Remove CSS Custom Filters code and tests
3825 https://bugs.webkit.org/show_bug.cgi?id=127382
3827 Reviewed by Simon Fraser.
3829 * Source/autotools/FindDependencies.m4:
3830 * Source/autotools/SetupWebKitFeatures.m4:
3831 * Source/cmake/WebKitFeatures.cmake:
3832 * Source/cmakeconfig.h.cmake:
3834 2014-01-22 Martin Robinson <mrobinson@igalia.com>
3836 [GTK][CMake] Add support for building the NetworkProcess
3837 https://bugs.webkit.org/show_bug.cgi?id=127195
3839 Reviewed by Daniel Bates.
3841 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
3842 a name like the WebProcess.
3844 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
3846 [CMAKE] Remove Nix from CMake scripts
3847 https://bugs.webkit.org/show_bug.cgi?id=127264
3849 Reviewed by Anders Carlsson.
3852 * Source/CMakeLists.txt:
3853 * Source/cmake/FindEGL.cmake:
3854 * Source/cmake/OptionsCommon.cmake:
3856 2014-01-18 Anders Carlsson <andersca@apple.com>
3858 Remove ENABLE_THREADED_HTML_PARSER defines everywhere