1 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
3 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
4 https://bugs.webkit.org/show_bug.cgi?id=143935
6 Reviewed by Darin Adler.
8 Some variables aren't defined in these files or unused variables aren't removed. This
9 patch cleans up it as well as fix wrong alphabet order.
11 * Source/cmake/WebKitFeatures.cmake:
12 * Source/cmakeconfig.h.cmake:
14 2015-04-19 Simon Fraser <simon.fraser@apple.com>
16 Restore the WebKit.xcworkspace to the way it was before r182899,
17 which inadvertently added the Source directory and a couple of source
20 * WebKit.xcworkspace/contents.xcworkspacedata:
22 2015-04-16 Basile Clement <basile_clement@apple.com>
24 Extract the allocation profile from JSFunction into a rare object
25 https://bugs.webkit.org/show_bug.cgi?id=143807
27 Reviewed by Filip Pizlo.
29 * WebKit.xcworkspace/contents.xcworkspacedata:
31 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
33 [EFL] Bump LLVM to version 3.6.0 on X86_64
34 https://bugs.webkit.org/show_bug.cgi?id=143604
36 Reviewed by Gyuyoung Kim.
38 * Source/cmake/FindLLVM.cmake: Added version handling.
39 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
41 2015-04-15 Timothy Horton <timothy_horton@apple.com>
43 Custom CSS cursors do not use -webkit-image-set on retina displays
44 https://bugs.webkit.org/show_bug.cgi?id=120783
46 Reviewed by Beth Dakin.
47 Patch by Evan Wallace <evan.exe@gmail.com>.
49 Add a manual test for custom CSS cursors on retina displays.
51 * ManualTests/retina-cursors.html: Added.
53 2015-04-15 Alex Christensen <achristensen@webkit.org>
55 Progress towards CMake on Mac.
56 https://bugs.webkit.org/show_bug.cgi?id=143785
58 Reviewed by Csaba Osztrogonác.
61 * Source/cmake/OptionsMac.cmake:
62 * Source/cmake/WebKitFS.cmake:
64 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
66 Cannot click "Next" button on Google two-factor auth setup page
68 <https://bugs.webkit.org/show_bug.cgi?id=143624>
69 <rdar://problem/19175714>
71 Reviewed by Darin Adler.
73 * ManualTests/button-that-focuses-itself-on-click.html: Added.
75 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
77 [cmake] REGRESSION(182663): It broke feature dependency handling
78 https://bugs.webkit.org/show_bug.cgi?id=143665
80 Reviewed by Csaba Osztrogonác.
82 Don't try to check the value of options before defining the options.
84 * Source/cmake/WebKitFeatures.cmake:
86 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
88 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
89 https://bugs.webkit.org/show_bug.cgi?id=143664
91 Reviewed by Gyuyoung Kim.
93 * Source/cmake/OptionsEfl.cmake:
94 * Source/cmake/OptionsGTK.cmake:
95 * Source/cmake/WebKitFeatures.cmake:
96 * Source/cmakeconfig.h.cmake:
98 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
100 [EFL] Enable Media Source
101 https://bugs.webkit.org/show_bug.cgi?id=143635
103 Reviewed by Csaba Osztrogonác.
105 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
107 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
109 [CMake] Miscellaneous issues in WebKitFeatures.cmake
110 https://bugs.webkit.org/show_bug.cgi?id=143636
112 Reviewed by Martin Robinson.
114 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
115 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
117 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
118 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
120 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
122 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
124 Fix ENABLE_TOUCH_SLIDER so that it can be used
128 * Source/cmake/WebKitFeatures.cmake:
130 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
132 [CMake] Print sorted feature list at the very end of the configure process
133 https://bugs.webkit.org/show_bug.cgi?id=143596
135 Reviewed by Martin Robinson.
137 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
138 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
139 and sort the options before printing. Reorder some code so that features still get
140 propagated to the bindings generators.
142 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
144 [CMake] Options should be marked as advanced by default
145 https://bugs.webkit.org/show_bug.cgi?id=143572
147 Reviewed by Gyuyoung Kim.
149 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
150 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
151 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
152 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
153 option without making it public.
155 * Source/cmake/WebKitFeatures.cmake:
157 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
159 [CMake] Remove unnecessary ENABLE_WEBCORE switch
160 https://bugs.webkit.org/show_bug.cgi?id=143584
162 Reviewed by Csaba Osztrogonác.
164 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
168 * Source/CMakeLists.txt:
169 * Source/cmake/OptionsGTK.cmake:
170 * Source/cmake/WebKitFS.cmake:
172 2015-04-08 Filip Pizlo <fpizlo@apple.com>
174 Unreviewed, revert accidental commit.
178 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
180 Add CMake build system for WinCairo port.
181 https://bugs.webkit.org/show_bug.cgi?id=115944
183 Reviewed by Chris Dumez.
185 * Source/cmake/OptionsWindows.cmake:
186 * Source/cmake/WebKitMacros.cmake:
187 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
189 2015-04-06 Alberto Garcia <berto@igalia.com>
192 https://bugs.webkit.org/show_bug.cgi?id=143453
194 Reviewed by Darin Adler.
196 Add HPPA to the list of supported CPUs.
200 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
202 Unreviewed, kick the GTK bots to fix an incremental build issue.
204 * Source/cmake/OptionsGTK.cmake:
206 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
208 Fix the EFL and GTK build after r182243
209 https://bugs.webkit.org/show_bug.cgi?id=143361
211 Reviewed by Csaba Osztrogonác.
213 * Source/PlatformEfl.cmake: Add a custom command that copies
214 the InspectorBackendCommands.js file into the proper directory
215 under DerivedSources/WebInspectorUI/.
217 2015-04-01 Alex Christensen <achristensen@webkit.org>
219 Progress towards CMake on Windows and Mac.
220 https://bugs.webkit.org/show_bug.cgi?id=143293
222 Reviewed by Filip Pizlo.
225 Set DERIVED_SOURCES_WTF_DIR for Windows.
226 * Source/CMakeLists.txt:
227 Don't compile bmalloc on Windows.
228 * Source/cmake/OptionsCommon.cmake:
229 Use the absolute path of the C preprocessor.
230 * Source/cmake/OptionsWinCairo.cmake:
231 Added needed definitions.
232 * Source/cmake/OptionsWindows.cmake:
233 Set some default values and removed support for old Visual Studio versions before /MP.
234 * Source/cmake/WebKitFS.cmake:
235 Make WTF DerivedSources directory.
236 * Source/cmake/WebKitMacros.cmake:
237 Added ADD_PRECOMPILED_HEADER macro based on
238 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
240 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
242 Use colored diagnostics when building with cmake + ninja + clang
243 https://bugs.webkit.org/show_bug.cgi?id=143297
245 Reviewed by Žan Doberšek.
247 Because that ninja sets subprocess stdout/stderr to a pipe, clang
248 disables colored output.
249 This patch forces clang to use colored diagnostics when we are using
252 * Source/cmake/OptionsCommon.cmake:
254 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
256 [CMake] Update old CMakeList.txt in gtest
257 https://bugs.webkit.org/show_bug.cgi?id=143192
259 Reviewed by Darin Adler.
261 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
262 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
263 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
265 * Source/CMakeLists.txt:
266 * Source/cmake/gtest/CMakeLists.txt: Removed.
268 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
270 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
271 https://bugs.webkit.org/show_bug.cgi?id=143138
273 Reviewed by Csaba Osztrogonác.
275 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
276 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
278 * Source/cmake/OptionsWindows.cmake:
279 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
280 * Source/cmake/WebKitMacros.cmake:
282 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
284 [GStreamer] share GL context in pipeline, part 2
285 https://bugs.webkit.org/show_bug.cgi?id=143049
287 Reviewed by Carlos Garcia Campos.
289 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
290 OpenGL/ES2 is found and GLX/EGL is found too.
292 2015-03-26 Alex Christensen <achristensen@webkit.org>
294 Progress towards CMake on Mac.
295 https://bugs.webkit.org/show_bug.cgi?id=143112
297 Reviewed by Chris Dumez.
299 * Source/cmake/OptionsMac.cmake:
301 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
303 [EFL] Add OpenWebRTC in jhbuild
304 https://bugs.webkit.org/show_bug.cgi?id=142778
306 Reviewed by Gyuyoung Kim.
308 Original patch by Philippe Normand <pnormand@igalia.com>
310 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
311 mediastream build is enabled.
313 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
315 [GTK] Add a configure option to build without Redirected XComposite Window
316 https://bugs.webkit.org/show_bug.cgi?id=142865
318 Reviewed by Žan Doberšek.
320 The Redirected XComposite Window was added to support some
321 features like GtkOverlay, but in cases where we don't need such
322 features, it's more efficient to use the XID of the WebKitWebView
323 window as the native surface handle for the accelerated
324 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
325 that is enabled by default for X11 target when OpenGL is enabled.
327 * Source/cmake/OptionsGTK.cmake:
329 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
331 [GTK] Search for the Wayland dependency when enabling Wayland target
332 https://bugs.webkit.org/show_bug.cgi?id=142876
334 Reviewed by Carlos Garcia Campos.
336 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
337 requirement of either the GTK+ or GDK pkg-config files, so we have to
338 search for it ourselves when WebKitGTK+ has been configured to support
339 the Wayland windowing target.
341 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
343 Unreviewed, kick the GTK bots to regenerate makefile.
344 https://bugs.webkit.org/show_bug.cgi?id=137394
346 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
347 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
349 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
351 Unreviewed, kick the GTK bots to regenerate makefile.
352 https://bugs.webkit.org/show_bug.cgi?id=137394
354 * Source/cmake/OptionsEfl.cmake:
356 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
358 [GTK] Fix inspector userinterface related incremental build issue
359 https://bugs.webkit.org/show_bug.cgi?id=142849
361 Reviewed by Carlos Garcia Campos.
363 * Source/cmake/OptionsGTK.cmake: Revert r181733.
365 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
367 Unreviewed, kick the GTK bots to regenerate makefile.
369 * Source/cmake/OptionsGTK.cmake:
371 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
373 [EFL] Expose JavaScript binding interface through ewk_extension
374 https://bugs.webkit.org/show_bug.cgi?id=142033
376 Reviewed by Gyuyoung Kim.
378 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
380 2015-03-17 Philippe Normand <pnormand@igalia.com>
382 [GTK] basic OpenWebRTC build support
383 https://bugs.webkit.org/show_bug.cgi?id=142393
385 Reviewed by Carlos Garcia Campos.
387 * Source/cmake/FindOpenWebRTC.cmake: Added.
388 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
389 mediastream build is enabled.
391 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
393 [CMake][EFL] Build test tools only for developer mode
394 https://bugs.webkit.org/show_bug.cgi?id=142761
396 Reviewed by Csaba Osztrogonác.
398 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
400 * Source/cmake/OptionsEfl.cmake:
401 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
402 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
403 * Source/cmakeconfig.h.cmake:
405 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
407 Enable ES6 classes by default
408 https://bugs.webkit.org/show_bug.cgi?id=142774
410 Reviewed by Gavin Barraclough.
412 * Source/cmake/WebKitFeatures.cmake:
414 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
416 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
417 https://bugs.webkit.org/show_bug.cgi?id=142722
419 Reviewed by Csaba Osztrogonác.
421 Categorize to define cmake variables, to find necessary packages,
422 use upper case for "glib_conponents" cmake variable name, re-arrange
423 wrong alphabet sorting, and so on.
425 * CMakeLists.txt: Remove WinCE port.
426 * Source/cmake/OptionsEfl.cmake:
428 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
430 [GStreamer] share GL context in pipeline
431 https://bugs.webkit.org/show_bug.cgi?id=142693
433 Reviewed by Philippe Normand.
435 Add search of gstreamer-gl library in the GStreamer installation. If
436 it is found, WTF_USE_GSTREAMER_GL macro is defined.
438 * Source/cmake/FindGStreamer.cmake:
439 * Source/cmake/OptionsGTK.cmake:
441 2015-03-13 Alex Christensen <achristensen@webkit.org>
443 Progress towards CMake on Mac.
444 https://bugs.webkit.org/show_bug.cgi?id=142680
446 Reviewed by Gyuyoung Kim.
449 * Source/PlatformMac.cmake: Added stub.
450 * Source/cmake/OptionsMac.cmake:
451 Change defines to get CMake working.
453 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
455 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
456 https://bugs.webkit.org/show_bug.cgi?id=126688
458 Reviewed by Gustavo Noronha Silva.
460 Add ENABLE_MINIBROWSER option, enabled by default for development
461 builds and disabled for production builds unless explicilty enabled.
463 * Source/cmake/OptionsGTK.cmake:
465 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
467 [GTK] Do not look for child processes in the UI process binary path
468 https://bugs.webkit.org/show_bug.cgi?id=135752
470 Reviewed by Gustavo Noronha Silva.
472 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
473 build for development builds.
475 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
477 [GTK] Add a configure option to build with OpenGL ES 2
478 https://bugs.webkit.org/show_bug.cgi?id=142498
480 Reviewed by Martin Robinson.
482 Add ENABLE_GLES2 option. It's disabled by default, but if passed
483 GLES2 is required and OpenGL is not even searched. Otherwise we
484 search for OpenGL as usual, using it only if present.
486 * Source/cmake/OptionsGTK.cmake:
488 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
490 [cmake] Handle unused parameter warnings as build errors except in WebKit2
491 https://bugs.webkit.org/show_bug.cgi?id=142338
493 Reviewed by Gyuyoung Kim.
495 * Source/cmake/WebKitHelpers.cmake:
497 2015-03-03 Daniel Bates <dabates@apple.com>
499 Convert ManualTests/svg-tooltip.svg to a DRT test
500 https://bugs.webkit.org/show_bug.cgi?id=140480
502 Reviewed by Alex Christensen.
504 * ManualTests/svg-tooltip.svg: Removed.
506 2015-03-02 Debarshi Ray <debarshir@gnome.org>
508 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
509 https://bugs.webkit.org/show_bug.cgi?id=142165
511 Reviewed by Carlos Garcia Campos.
513 * Source/cmake/gtksymbols.filter:
515 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
517 [EFL] Remove unnecessary comment after r179110
518 https://bugs.webkit.org/show_bug.cgi?id=142042
520 Reviewed by Gyuyoung Kim.
522 * Source/cmake/OptionsEfl.cmake:
524 2015-02-23 Tomas Popela <tpopela@redhat.com>
526 [GTK] Fails to compile with cmake 3.2.x
527 https://bugs.webkit.org/show_bug.cgi?id=141796
529 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
530 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
531 added and the build will fail.
533 Reviewed by Martin Robinson.
535 * Source/cmake/OptionsGTK.cmake:
537 2015-02-20 Alexey Proskuryakov <ap@apple.com>
539 Remove svn:keywords property.
541 As far as I can tell, the property had no effect on any of these files, but also,
542 when it has effect it's likely harmful.
544 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
545 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
546 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
547 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
548 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
549 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
550 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
551 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
552 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
553 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
554 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
555 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
556 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
557 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
559 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
561 [CMAKE] Remove CMakeLists.txt in WK1 port
562 https://bugs.webkit.org/show_bug.cgi?id=141617
564 Reviewed by Anders Carlsson.
566 Nobody uses CMake in WK1 port. Remove it.
570 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
572 Unreviewed, remove empty directories.
574 * ManualTests/qt: Removed.
576 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
578 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
579 https://bugs.webkit.org/show_bug.cgi?id=141481
581 Reviewed by Csaba Osztrogonác.
583 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
585 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
587 [EFL][GTK] Use bmalloc instead of tcmalloc
588 https://bugs.webkit.org/show_bug.cgi?id=140162
590 Reviewed by Carlos Garcia Campos.
592 Add bmalloc directory to build list.
594 * CMakeLists.txt: Define BMALLOC_DIR directory.
595 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
597 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
599 [GTK] Add default color chooser implementation using GtkColorChooserDialog
600 https://bugs.webkit.org/show_bug.cgi?id=141392
602 Reviewed by Gustavo Noronha Silva.
604 Enable INPUT_TYPE_COLOR by default for GTK+ port.
606 * Source/cmake/OptionsGTK.cmake:
608 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
610 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
611 https://bugs.webkit.org/show_bug.cgi?id=141328
613 Reviewed by Darin Adler.
615 Added as manual test because it involves a huge grid allocation
616 which is very slow on Debug bots, the only ones capable to trigger
619 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
621 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
623 [Streams API] Implement a barebone ReadableStream interface
624 https://bugs.webkit.org/show_bug.cgi?id=141045
626 Reviewed by Benjamin Poulain.
628 * Source/cmake/WebKitFeatures.cmake:
629 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
631 2015-02-02 Filip Pizlo <fpizlo@apple.com>
633 Revert accidental change in r179490.
637 2015-02-02 Filip Pizlo <fpizlo@apple.com>
639 Unreviewed, revert accidental change to Makefile.shared in r179478
643 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
645 [CMake] Minimum python version should be 2.7.
646 https://bugs.webkit.org/show_bug.cgi?id=140997
648 Reviewed by Csaba Osztrogonác.
652 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
654 Apply feTurbulence spec change to fix zero length vector generation
655 https://bugs.webkit.org/show_bug.cgi?id=140812
657 Reviewed by Darin Adler.
659 Recently a bug with the turbulence algorithm was corrected in the
660 Filter Effects specification.
661 For some seed values this bug allowed zero length vectors to be generated.
662 This resulted in large solid color squares being present in the generated image.
663 The feTurbulence algorithm was updated to reject zero length vectors. This patch
664 applies that change in WebCore.
666 Test: svg/filters/feTurbulence_bad_seeds.html
668 * platform/graphics/filters/FETurbulence.cpp:
669 (WebCore::FETurbulence::initPaint):
670 Added rejection sampling during vector generation to avoid zero length vectors.
672 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
674 [cmake] Remove compiler version calculate cruft
675 https://bugs.webkit.org/show_bug.cgi?id=140885
677 Reviewed by Darin Adler.
679 * Source/cmake/WebKitHelpers.cmake:
681 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
683 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
684 https://bugs.webkit.org/show_bug.cgi?id=140886
686 Reviewed by Žan Doberšek.
688 * Source/cmake/WebKitHelpers.cmake:
690 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
692 [GTK] gtkdoc does not appear in DevHelp
693 https://bugs.webkit.org/show_bug.cgi?id=139369
695 Reviewed by Philippe Normand.
697 Expect the gtkdoc to be generated in folders named with the API version.
699 * Source/PlatformGTK.cmake:
701 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
703 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
704 https://bugs.webkit.org/show_bug.cgi?id=140609
706 Reviewed by Csaba Osztrogonác.
708 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
709 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
710 compilation flags. Those were added after the jsCStack branch merge, but
711 can now be removed since the -ftree-dce issues were fixed in GCC, and
712 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
714 * Source/cmake/OptionsEfl.cmake:
715 * Source/cmake/OptionsGTK.cmake:
717 2015-01-26 Commit Queue <commit-queue@webkit.org>
719 Unreviewed, rolling out r179107.
720 https://bugs.webkit.org/show_bug.cgi?id=140880
722 The GCC in the bots doesn't support the AsyncTask
723 implementation (Requested by KaL on #webkit).
727 "[GTK] Enable IndexedDB"
728 https://bugs.webkit.org/show_bug.cgi?id=98932
729 http://trac.webkit.org/changeset/179107
731 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
733 [GTK] Enable IndexedDB
734 https://bugs.webkit.org/show_bug.cgi?id=98932
736 Reviewed by Žan Doberšek.
738 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
739 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
741 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
743 [GTK] Add initial database process support
744 https://bugs.webkit.org/show_bug.cgi?id=139491
746 Reviewed by Sergio Villar Senin.
748 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
750 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
752 Add a build flag for ES6 class syntax
753 https://bugs.webkit.org/show_bug.cgi?id=140760
755 Reviewed by Michael Saboff.
757 * Source/cmake/WebKitFeatures.cmake:
758 * Source/cmakeconfig.h.cmake:
760 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
762 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
763 https://bugs.webkit.org/show_bug.cgi?id=140049
765 Reviewed by Gyuyoung Kim.
767 * Source/cmake/OptionsCommon.cmake:
769 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
771 Remove ENABLE(INSPECTOR) ifdef guards
772 https://bugs.webkit.org/show_bug.cgi?id=140668
774 Reviewed by Darin Adler.
776 * Source/PlatformEfl.cmake:
777 * Source/cmake/OptionsEfl.cmake:
778 * Source/cmake/OptionsGTK.cmake:
779 * Source/cmake/OptionsMac.cmake:
780 * Source/cmake/WebKitFeatures.cmake:
781 * Source/cmakeconfig.h.cmake:
783 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
785 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
787 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
789 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
791 [CMAKE] Fix cmake warning
792 https://bugs.webkit.org/show_bug.cgi?id=140497
794 Reviewed by Gustavo Noronha Silva.
796 r173155 already tried to fix cmake warning though, the warning is still exist.
797 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
798 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
799 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
800 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
801 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
805 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
807 [GTK] Generate the make dist manifest from a CMake template file
808 https://bugs.webkit.org/show_bug.cgi?id=139387
810 Reviewed by Martin Robinson.
812 Generate manifest.txt from manifest.txt.in. Only expose the dist and
813 distcheck targets for developer builds, as they won't work when
814 building from a tarball because the manifest is not distributed.
816 * Source/PlatformGTK.cmake:
818 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
820 Remove ENABLE(SQL_DATABASE) guards
821 https://bugs.webkit.org/show_bug.cgi?id=140434
823 Reviewed by Darin Adler.
825 * Source/cmake/OptionsMac.cmake:
826 * Source/cmake/WebKitFeatures.cmake:
827 * Source/cmakeconfig.h.cmake:
829 2015-01-11 Sam Weinig <sam@webkit.org>
831 Remove support for SharedWorkers
832 https://bugs.webkit.org/show_bug.cgi?id=140344
834 Reviewed by Anders Carlsson.
836 * Source/cmake/OptionsEfl.cmake:
837 * Source/cmake/OptionsGTK.cmake:
838 * Source/cmake/OptionsMac.cmake:
839 * Source/cmake/WebKitFeatures.cmake:
840 * Source/cmakeconfig.h.cmake:
842 2015-01-10 Dan Bernstein <mitz@apple.com>
844 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
845 https://bugs.webkit.org/show_bug.cgi?id=140339
847 Reviewed by Mark Rowe.
849 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
850 prevents unnecessary rebuilding due to PATH differences.
852 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
854 [GTK][ThreadedCompositor] Add support for threaded compositor.
855 https://bugs.webkit.org/show_bug.cgi?id=118265
857 Reviewed by Martin Robinson.
859 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
860 autotools build systems. The feature is disabled by default.
861 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
862 from the feature flags.
864 * Source/cmake/OptionsEfl.cmake:
865 * Source/cmake/OptionsGTK.cmake:
866 * Source/cmake/WebKitFeatures.cmake:
867 * Source/cmakeconfig.h.cmake:
869 2014-12-23 Alexey Proskuryakov <ap@apple.com>
871 Simplify building with ASan
872 https://bugs.webkit.org/show_bug.cgi?id=139916
874 Reviewed by Mark Rowe.
876 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
878 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
880 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
882 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
884 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
886 Null dereference performing a "TapAndAHalf" gesture in Google search field
888 <https://bugs.webkit.org/show_bug.cgi?id=139506>
889 <rdar://problem/19028828>
891 Reviewed by Darin Adler.
893 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
895 2014-12-10 Dean Jackson <dino@apple.com>
897 Blur filter performance test doesn't provide results
898 https://bugs.webkit.org/show_bug.cgi?id=139462
900 Reviewed by Sam Weinig.
902 This can't currently work under our performance test
903 infrastructure. Move it to a manual test to avoid
904 putting FAILures into the results.
906 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
908 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
910 [GTK][WK2] Add HTML5 Notifications support
911 https://bugs.webkit.org/show_bug.cgi?id=61140
913 Reviewed by Carlos Garcia Campos.
915 * Source/cmake/FindLibNotify.cmake: Added.
916 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
917 libnotify and use it for a default implementation when found.
919 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
921 REGRESSION(r155906): Page content disappears on Tuaw article after loading
922 https://bugs.webkit.org/show_bug.cgi?id=138100
924 Reviewed by Simon Fraser.
926 DRT causes an extra paint which makes it impossible to test this with
929 * ManualTests/float-layer-not-painting.html: Added.
931 2014-12-07 Alberto Garcia <berto@igalia.com>
933 [GTK] WebKit has a new required dependency on GnuTLS
934 https://bugs.webkit.org/show_bug.cgi?id=136158
936 Reviewed by Martin Robinson.
938 Detect if GnuTLS is installed and enable or disable subtle crypto
941 * Source/cmake/OptionsGTK.cmake:
943 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
945 [GTK] Missing API detected in GObject DOM bindings after r176630
946 https://bugs.webkit.org/show_bug.cgi?id=139201
948 Reviewed by Gustavo Noronha Silva.
950 Change GENERATE_BINDINGS macro to receive a list of optional
951 additional dependencies, so that we can add more dependecies
952 without having to change the macro.
954 * Source/cmake/WebKitMacros.cmake:
956 2014-12-05 Simon Fraser <simon.fraser@apple.com>
958 Programmatic scrolling and content changes are not always synchronized
959 https://bugs.webkit.org/show_bug.cgi?id=139245
960 rdar://problem/18833612
962 Reviewed by Anders Carlsson.
964 Manual test that tries to sync layout with programmatic scrolling.
966 * ManualTests/programmatic-scroll-flicker.html: Added.
968 2014-12-04 Alberto Garcia <berto@igalia.com>
970 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
971 https://bugs.webkit.org/show_bug.cgi?id=136576
973 Reviewed by Carlos Garcia Campos.
975 CMake should complain if Accelerated 2D Canvas is explicitly
976 enabled but cairo-gl is not found.
978 * Source/cmake/OptionsGTK.cmake:
980 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
982 [EFL] Add subtle crypto to the build system
983 https://bugs.webkit.org/show_bug.cgi?id=138612
985 Reviewed by Csaba Osztrogonác.
987 * Source/cmake/OptionsEfl.cmake:
989 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
991 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
992 https://bugs.webkit.org/show_bug.cgi?id=139085
994 Reviewed by Andreas Kling.
996 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
997 * Source/cmake/WebKitFeatures.cmake: ditto.
998 * Source/cmakeconfig.h.cmake: ditto.
1000 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1002 [EFL] Drop support for the EFL 1.7
1003 https://bugs.webkit.org/show_bug.cgi?id=139114
1005 Reviewed by Gyuyoung Kim.
1007 * Source/cmake/EFLHelpers.cmake: Removed.
1008 * Source/cmake/FindEcore.cmake: Removed.
1009 * Source/cmake/FindEdje.cmake: Removed.
1010 * Source/cmake/FindEet.cmake: Removed.
1011 * Source/cmake/FindEeze.cmake: Removed.
1012 * Source/cmake/FindEfreet.cmake: Removed.
1013 * Source/cmake/FindEina.cmake: Removed.
1014 * Source/cmake/FindElementary.cmake: Removed.
1015 * Source/cmake/FindEvas.cmake: Removed.
1016 * Source/cmake/OptionsEfl.cmake:
1018 2014-11-28 Philippe Normand <pnormand@igalia.com>
1020 [CMake] Build failure against GStreamer git master
1021 https://bugs.webkit.org/show_bug.cgi?id=138872
1023 Reviewed by Csaba Osztrogon.
1025 * Source/cmake/FindGStreamer.cmake: Simplified the
1026 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1027 headers lookup, there's no need to do this manually. Also
1028 explicitely check the version specified in GStreamer_FIND_VERSION.
1030 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1032 [EFL] Remove E_Dbus dependency
1033 https://bugs.webkit.org/show_bug.cgi?id=136355
1035 Reviewed by Gyuyoung Kim.
1037 * Source/cmake/FindE_DBus.cmake: Removed.
1038 * Source/cmake/OptionsEfl.cmake:
1040 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1042 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1044 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1046 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1048 [CMake] Use ld.gold if it is available to speedup builds
1049 https://bugs.webkit.org/show_bug.cgi?id=137953
1051 Reviewed by Carlos Garcia Campos.
1053 * Source/cmake/OptionsCommon.cmake:
1055 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
1057 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
1058 https://bugs.webkit.org/show_bug.cgi?id=138840
1060 Reviewed by Csaba Osztrogonác.
1062 * Source/cmake/OptionsCommon.cmake:
1064 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
1066 Remove Source/Platform cruft
1067 https://bugs.webkit.org/show_bug.cgi?id=138658
1069 Reviewed by Anders Carlsson.
1072 * Source/Platform: Removed.
1074 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
1076 Enable Cortex-A53-specific code paths by default if core is detected.
1077 https://bugs.webkit.org/show_bug.cgi?id=138499
1079 Reviewed by Csaba Osztrogonác.
1081 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
1082 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
1085 Since on ARM64/Linux the part number that cpuinfo reports depends on
1086 the core the query is run on, the check is bound to and executed on the
1087 available cores one by one.
1089 * Source/cmake/OptionsCommon.cmake:
1091 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1093 [EFL] Remove unnecessary version check from OptionsEfl.cmake
1094 https://bugs.webkit.org/show_bug.cgi?id=138498
1096 Reviewed by Csaba Osztrogonác.
1098 * Source/cmake/OptionsEfl.cmake:
1100 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1102 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
1103 https://bugs.webkit.org/show_bug.cgi?id=138465
1105 Reviewed by Gyuyoung Kim.
1107 * Source/cmake/OptionsEfl.cmake:
1109 2014-11-03 Dean Jackson <dino@apple.com>
1111 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1112 https://bugs.webkit.org/show_bug.cgi?id=138362
1114 Reviewed by Tim Horton.
1116 Add a new feature define for Level 2 of CSS Filters.
1117 http://dev.w3.org/fxtf/filters-2/
1119 * Source/cmake/OptionsEfl.cmake:
1120 * Source/cmake/OptionsGTK.cmake:
1121 * Source/cmake/OptionsMac.cmake:
1122 * Source/cmake/WebKitFeatures.cmake:
1123 * Source/cmakeconfig.h.cmake:
1125 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1127 Workaround for Cortex-A53 erratum 835769
1128 https://bugs.webkit.org/show_bug.cgi?id=138315
1130 Reviewed by Filip Pizlo.
1132 This patch introduces CMake variable and preprocessor macro
1133 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1134 code paths, if set true.
1136 * Source/cmake/OptionsCommon.cmake:
1137 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1139 * Source/cmakeconfig.h.cmake:
1140 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1142 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1144 [GTK] Fix the build of FTL JIT
1145 https://bugs.webkit.org/show_bug.cgi?id=138298
1147 Reviewed by Carlos Garcia Campos.
1149 * Source/cmake/OptionsGTK.cmake:
1150 Remove the need for the LIBCXXABI package.
1152 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1154 REGRESSION(CMake): Make it possible to build without introspection
1155 https://bugs.webkit.org/show_bug.cgi?id=138006
1157 Reviewed by Philippe Normand.
1159 Add ENABLE_INTROSPECTION option.
1161 * Source/PlatformGTK.cmake: Dot not add gir global target if
1162 introspection is disabled.
1163 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1164 introspection is disabled.
1166 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1168 [GTK] Support script message handlers WebKitUserContentManager
1169 https://bugs.webkit.org/show_bug.cgi?id=133730
1171 Reviewed by Carlos Garcia Campos.
1173 Support user script message handlers in WebKitUserContentManager.
1174 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1175 an option is added to the CMake build files. The option is disabled
1176 globally by default, and the WebKitGTK port enables it. On the API
1177 level, two new methods to register and unregister names are provided
1178 in the "window.webkit" namespace, and on message reception the
1179 "WebKitUserContentManager::script-message-received" signal is
1180 emitted, using the registered names as signal detail.
1182 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1183 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1184 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1185 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1187 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1189 [GTK] Bump libsoup's minimum version to 2.42.0.
1190 https://bugs.webkit.org/show_bug.cgi?id=138086
1192 Reviewed by Martin Robinson.
1194 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1195 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1196 the minimum version required to build the port these days.
1198 In addition, since the autotools build system required 2.42.0 before
1199 being retired, require the same version here. Version 2.42.0 was also
1201 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1203 * Source/cmake/OptionsGTK.cmake:
1205 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1207 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1208 https://bugs.webkit.org/show_bug.cgi?id=138132
1210 Reviewed by Csaba Osztrogonác.
1212 * Source/cmake/OptionsEfl.cmake:
1214 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1216 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1218 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1220 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1222 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1223 https://bugs.webkit.org/show_bug.cgi?id=137946
1225 Reviewed by Gyuyoung Kim.
1227 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1229 * Source/cmake/OptionsEfl.cmake:
1231 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1233 Fix FTL Native Inlining for EFL
1234 https://bugs.webkit.org/show_bug.cgi?id=137774
1236 Reviewed by Michael Saboff.
1238 Updated CMake for FTL Native Inlining.
1241 * Source/cmake/FindClang.cmake: Added.
1242 * Source/cmake/OptionsEfl.cmake:
1243 * Source/cmakeconfig.h.cmake:
1245 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1247 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1248 https://bugs.webkit.org/show_bug.cgi?id=137748
1250 Reviewed by Brian Burg.
1252 * Source/PlatformEfl.cmake:
1254 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1256 [GTK] Add initial gestures support
1257 https://bugs.webkit.org/show_bug.cgi?id=137812
1259 Reviewed by Sergio Villar Senin.
1261 Check if the GTK+ version supports gestures or not.
1263 * Source/cmake/FindGTK3.cmake:
1264 * Source/cmake/OptionsGTK.cmake:
1266 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1268 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1269 https://bugs.webkit.org/show_bug.cgi?id=137781
1271 Reviewed by Martin Robinson.
1273 We used to enable smooth scrolling unconditionally in autotools
1274 (via WebKitFeatures.m4), but since the switch to CMake it's
1275 unconditionally disabled, so changing the setting doesn't have any
1278 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1280 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1282 Removing CUSTOM_PROTOCOLS guard
1283 https://bugs.webkit.org/show_bug.cgi?id=137741
1285 Reviewed by Benjamin Poulain.
1287 * Source/cmake/OptionsEfl.cmake:
1289 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1291 [EFL] Enable WebP support.
1292 https://bugs.webkit.org/show_bug.cgi?id=136156
1294 Reviewed by Gyuyoung Kim.
1296 Add WebP package finding rule.
1298 * Source/cmake/OptionsEfl.cmake:
1300 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1302 [EFL] Enable custom URI schemes with CustomProtocols
1303 https://bugs.webkit.org/show_bug.cgi?id=128177
1305 Reviewed by Gyuyoung Kim.
1307 Fixing ewk_context_url_scheme_register() ewebkit2 API
1308 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1310 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1312 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1314 Bump version to 2.7.0
1315 https://bugs.webkit.org/show_bug.cgi?id=137301
1317 Rubber-stamped by Carlos Garcia Campos.
1319 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1321 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1323 [EFL] Rename TEST_THEME_DIR macro
1324 https://bugs.webkit.org/show_bug.cgi?id=137244
1326 Reviewed by Csaba Osztrogonác.
1328 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1330 2014-09-27 Dan Bernstein <mitz@apple.com>
1332 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1333 https://bugs.webkit.org/show_bug.cgi?id=137053
1335 Reviewed by Mark Rowe.
1337 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1338 In the build pre-action, pass the --wksi and --llvm options to
1339 copy-webkitlibraries-to-product-directory.
1340 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1342 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1344 [GTK] Enable CSS_IMAGE_SET in production builds
1345 https://bugs.webkit.org/show_bug.cgi?id=137142
1347 Reviewed by Alejandro G. Castro.
1349 This is required by the inspector to show some of the icons that
1350 has a HiDPI variant.
1352 * Source/cmake/OptionsGTK.cmake:
1354 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1356 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1357 https://bugs.webkit.org/show_bug.cgi?id=136377
1359 Reviewed by Philippe Normand.
1361 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1362 for CMake versions less than 3.
1364 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1366 Remove WinCE port from trunk
1367 https://bugs.webkit.org/show_bug.cgi?id=136951
1369 Reviewed by Alex Christensen.
1371 * Source/cmake/OptionsWinCE.cmake: Removed.
1372 * Source/cmake/WebKitPackaging.cmake:
1374 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1376 [EFL][GTK] Remove WebKit1 related codes
1377 https://bugs.webkit.org/show_bug.cgi?id=136853
1379 Reviewed by Csaba Osztrogonác.
1381 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1384 * Source/PlatformGTK.cmake:
1386 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1389 https://bugs.webkit.org/show_bug.cgi?id=136820
1391 Reviewed by Csaba Osztrogonác.
1393 * Source/cmake/FindICU.cmake:
1395 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1397 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1398 https://bugs.webkit.org/show_bug.cgi?id=136814
1400 Reviewed by Philippe Normand.
1402 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1403 We bundle the wayland-egl dependency with wayland-client and wayland-server
1404 and store the resulting variables with the WAYLAND_ prefix. Because of this
1405 this line wasn't exporting anything useful.
1407 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1409 URTBF after r173574.
1411 * Source/cmake/WebKitMacros.cmake:
1413 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1415 [JavaScriptCore] Fix FTL on platform EFL.
1416 https://bugs.webkit.org/show_bug.cgi?id=133571
1418 Reviewed by Filip Pizlo.
1422 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1423 * Source/cmake/OptionsEfl.cmake:
1425 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1428 https://bugs.webkit.org/show_bug.cgi?id=136571
1430 Reviewed by Darin Adler.
1432 * Source/cmake/OptionsEfl.cmake:
1433 * Source/cmake/OptionsGTK.cmake:
1434 * Source/cmake/OptionsMac.cmake:
1435 * Source/cmake/WebKitFeatures.cmake:
1436 * Source/cmakeconfig.h.cmake:
1438 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1440 Remove CSS_FILTERS flag
1441 https://bugs.webkit.org/show_bug.cgi?id=136529
1443 Reviewed by Dirk Schulze.
1445 * Source/cmake/OptionsEfl.cmake:
1446 * Source/cmake/OptionsGTK.cmake:
1447 * Source/cmake/OptionsMac.cmake:
1448 * Source/cmake/WebKitFeatures.cmake:
1449 * Source/cmakeconfig.h.cmake:
1451 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1453 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1454 https://bugs.webkit.org/show_bug.cgi?id=136194
1456 Reviewed by Csaba Osztrogonác.
1458 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1462 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1464 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1465 https://bugs.webkit.org/show_bug.cgi?id=135560
1467 Reviewed by Gyuyoung Kim.
1469 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1471 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1473 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1474 https://bugs.webkit.org/show_bug.cgi?id=136343
1476 Reviewed by David Kilzer.
1478 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1480 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1481 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1483 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1485 [EFL] Share fast/speechsynthesis/ with other ports
1486 https://bugs.webkit.org/show_bug.cgi?id=136224
1488 Reviewed by Chris Fleizach.
1490 Enable WebSpeech for EFL.
1492 * Source/cmake/OptionsEfl.cmake:
1494 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1496 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1497 https://bugs.webkit.org/show_bug.cgi?id=136127
1499 Reviewed by Gyuyoung Kim.
1501 Add build support for espeak.
1503 * Source/cmake/FindEspeak.cmake: Added.
1504 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1506 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1508 [EFL] Build break using clang
1509 https://bugs.webkit.org/show_bug.cgi?id=136245
1511 Reviewed by Gyuyoung Kim.
1513 * Source/cmake/OptionsEfl.cmake:
1514 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1515 Some warnings are from system libraries.
1517 2014-08-25 Alberto Garcia <berto@igalia.com>
1519 [GTK] Unify webkitgtk and webkit2gtk directories
1520 https://bugs.webkit.org/show_bug.cgi?id=136209
1522 Reviewed by Carlos Garcia Campos.
1524 Use webkit2gtk-X.X both for the process binaries and the injected
1527 * Source/cmake/OptionsGTK.cmake:
1529 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1531 [EFL] Move Efl specific code from Source/CMakeLists.txt
1532 https://bugs.webkit.org/show_bug.cgi?id=136206
1534 Reviewed by Gyuyoung Kim.
1536 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1537 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1539 * Source/CMakeLists.txt:
1540 * Source/cmake/OptionsEfl.cmake:
1542 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1544 [EFL] Introduce DEVELOPER_MODE
1545 https://bugs.webkit.org/show_bug.cgi?id=135884
1547 Reviewed by Gyuyoung Kim.
1549 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1550 instead of SHARED_CORE.
1551 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1552 from release binary.
1554 * Source/cmake/OptionsEfl.cmake:
1555 * Source/cmake/WebKitHelpers.cmake:
1556 Moved fvisibility=hidden to OptionsEfl.cmake
1558 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1560 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1561 https://bugs.webkit.org/show_bug.cgi?id=136110
1563 Reviewed by Gyuyoung Kim.
1565 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1567 * Source/cmake/OptionsEfl.cmake:
1569 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1571 [EFL] Apply eflsymbols.filter to WebKit2
1572 https://bugs.webkit.org/show_bug.cgi?id=136148
1574 Reviewed by Csaba Osztrogonác.
1576 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1577 in the eflsymbols.filter.
1579 * Source/cmake/OptionsEfl.cmake:
1580 * Source/cmake/eflsymbols.filter:
1582 2014-08-21 Zalan Bujtas <zalan@apple.com>
1584 Enable SATURATED_LAYOUT_ARITHMETIC.
1585 https://bugs.webkit.org/show_bug.cgi?id=136106
1587 Reviewed by Simon Fraser.
1589 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1590 (No measurable performance regression on Mac.)
1592 * Source/cmake/OptionsMac.cmake:
1593 * Source/cmake/WebKitFeatures.cmake:
1594 * Source/cmakeconfig.h.cmake:
1596 2014-08-19 Zalan Bujtas <zalan@apple.com>
1598 Remove ENABLE(SUBPIXEL_LAYOUT).
1599 https://bugs.webkit.org/show_bug.cgi?id=136077
1601 Reviewed by Simon Fraser.
1603 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
1605 * Source/cmake/OptionsEfl.cmake:
1606 * Source/cmake/OptionsGTK.cmake:
1607 * Source/cmake/OptionsMac.cmake:
1608 * Source/cmake/WebKitFeatures.cmake:
1609 * Source/cmakeconfig.h.cmake:
1611 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
1613 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1614 https://bugs.webkit.org/show_bug.cgi?id=135980
1616 Reviewed by Martin Robinson.
1618 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1619 overrides any other disabled optimization that was prepended to these
1620 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1621 lists first in the final list of compilation flags.
1623 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1624 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1626 * Source/cmake/OptionsCommon.cmake:
1627 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1628 * Source/cmake/OptionsGTK.cmake:
1630 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1632 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1634 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1636 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1638 [GTK] Disable memory sampler on non-Linux system
1639 https://bugs.webkit.org/show_bug.cgi?id=134483
1641 Reviewed by Philippe Normand.
1643 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1644 Linux because it uses many Linux-specific features, so we should disable
1645 memory sampler on other systems by default.
1647 * Source/cmake/OptionsGTK.cmake:
1649 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1651 [GTK] HTML API documentation should also be installed versioned
1652 https://bugs.webkit.org/show_bug.cgi?id=135970
1654 Reviewed by Philippe Normand.
1656 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1659 2014-08-14 Tomas Popela <tpopela@redhat.com>
1661 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1662 https://bugs.webkit.org/show_bug.cgi?id=135937
1664 Reviewed by Carlos Garcia Campos.
1668 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1670 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1671 https://bugs.webkit.org/show_bug.cgi?id=135934
1673 Reviewed by Gustavo Noronha Silva.
1675 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1676 The gir files should installed in $datadir/gir-1.0/ together with all other
1677 gir files. We don't need to install introspection files in a versioned
1678 directory because their filenames already contain the binary version. But before
1679 r171598, the files were only installed to the right directory if the
1680 gobject-instrospection pkg-config file was in the same prefix than the one we
1681 wanted to install, because the gir and typelibs directories were extracted from
1682 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1683 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1684 like we do in the autotools build.
1686 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1687 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1688 * Source/cmake/OptionsGTK.cmake: Define
1689 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1691 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1693 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1694 https://bugs.webkit.org/show_bug.cgi?id=135836
1696 Reviewed by Philippe Normand.
1698 * Source/PlatformGTK.cmake: Add install command to also install
1699 the GObject DOM bindings API docs.
1701 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1703 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1704 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1705 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1706 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1709 * Source/cmake/OptionsCommon.cmake:
1711 2014-08-13 Alex Christensen <achristensen@webkit.org>
1713 Progress towards CMake on Mac.
1714 https://bugs.webkit.org/show_bug.cgi?id=135819
1716 Reviewed by Laszlo Gombos.
1718 * Source/cmake/OptionsMac.cmake:
1719 Disable some more features temporarily to get CMake working.
1720 * Source/cmake/WebKitMacros.cmake:
1721 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1723 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1725 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1726 https://bugs.webkit.org/show_bug.cgi?id=135798
1728 Reviewed by Philippe Normand.
1730 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1732 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1733 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1734 https://bugs.webkit.org/show_bug.cgi?id=133317
1736 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1738 Reviewed by Philippe Normand.
1740 No new tests since no new functionality has been added.
1742 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1744 2014-08-11 Commit Queue <commit-queue@webkit.org>
1746 Unreviewed, rolling out r172393.
1747 https://bugs.webkit.org/show_bug.cgi?id=135796
1749 discussion needed about GnuTLS version bump on the bots
1750 (Requested by philn on #webkit).
1754 https://bugs.webkit.org/show_bug.cgi?id=133317
1755 http://trac.webkit.org/changeset/172393
1757 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1758 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1759 https://bugs.webkit.org/show_bug.cgi?id=133317
1761 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1763 Reviewed by Philippe Normand.
1765 No new tests since no new functionality has been added.
1767 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1769 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1771 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1772 https://bugs.webkit.org/show_bug.cgi?id=133316
1774 Reviewed by Philippe Normand.
1776 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1777 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1778 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1780 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1782 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1784 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1786 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1788 [GTK] REGRESSION(r166239): The ld version script is not being used
1789 https://bugs.webkit.org/show_bug.cgi?id=135694
1791 Reviewed by Martin Robinson.
1793 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1794 it as gtksymbols.filter. Also updated it, since some of the symbols
1795 exported were renamed.
1797 * Source/cmake/OptionsGTK.cmake:
1798 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1800 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1802 [GTK] Child processes should be installed in a versioned directory
1803 https://bugs.webkit.org/show_bug.cgi?id=135754
1805 Reviewed by Gustavo Noronha Silva.
1807 Define LIBEXEC_INSTALL_DIR as
1808 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1809 so that the child processes are installed in $libexec/webkitgtk-4.0.
1810 This makes it possible to install 2.6 in parallel to older versions.
1812 * Source/cmake/OptionsGTK.cmake:
1814 2014-08-08 Alex Christensen <achristensen@webkit.org>
1816 Progress towards using CMake on Mac.
1817 https://bugs.webkit.org/show_bug.cgi?id=135662
1819 Reviewed by Laszlo Gombos.
1822 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1823 * Source/cmake/WebKitFeatures.cmake:
1824 * Source/cmakeconfig.h.cmake:
1825 Added features that are needed by the Mac port.
1826 * Source/cmake/OptionsMac.cmake:
1827 Enable CSS_IMAGE_SET based on FeatureDefines.h.
1828 Disable the FTL with CMake for now.
1829 * Source/cmake/OptionsEFL.cmake:
1830 * Source/cmake/OptionsGTK.cmake:
1831 Enable subpixel layout to not conflict with FeatureDefines.h
1833 2014-08-08 Simon Fraser <simon.fraser@apple.com>
1835 Undo some erroneous changes to the Xcode scheme files from r172259.
1837 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1838 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1840 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
1842 [CMake] Drop the required version of CMake down to 2.8.8
1843 https://bugs.webkit.org/show_bug.cgi?id=135713
1845 Reviewed by Alex Christensen.
1847 * CMakeLists.txt: Require CMake 2.8.8.
1849 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
1851 Get rid of INPUT_SPEECH
1852 https://bugs.webkit.org/show_bug.cgi?id=135672
1854 Reviewed by Andreas Kling.
1856 * Source/cmake/OptionsMac.cmake:
1857 * Source/cmake/WebKitFeatures.cmake:
1858 * Source/cmakeconfig.h.cmake:
1860 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
1862 [GTK] Disable IndexedDB
1863 https://bugs.webkit.org/show_bug.cgi?id=135692
1865 Reviewed by Carlos Garcia Campos.
1867 * Source/cmake/OptionsGTK.cmake:
1869 2014-08-06 Dean Jackson <dino@apple.com>
1871 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
1872 https://bugs.webkit.org/show_bug.cgi?id=135675
1874 Reviewed by Sam Weinig.
1876 * Source/cmake/OptionsGTK.cmake:
1877 * Source/cmake/OptionsMac.cmake:
1878 * Source/cmake/WebKitFeatures.cmake:
1879 * Source/cmakeconfig.h.cmake:
1881 2014-08-06 David Farler <dfarler@apple.com>
1883 Unreviewed build fix: Make includes semicolon in assignment.
1885 * Makefile.shared: Remove a ;
1887 2014-08-06 David Farler <dfarler@apple.com>
1889 Set DSYMUTIL_NUM_THREADS to the number of logical cores
1890 https://bugs.webkit.org/show_bug.cgi?id=135655
1892 Reviewed by Mark Rowe.
1894 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
1896 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1898 [GTK] Be able to disable gtk2 dependency
1899 https://bugs.webkit.org/show_bug.cgi?id=135505
1901 Reviewed by Gustavo Noronha Silva.
1903 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
1904 required when it's enabled. It's enabled by default.
1906 * Source/cmake/OptionsGTK.cmake:
1908 2014-08-05 Alex Christensen <achristensen@webkit.org>
1911 https://bugs.webkit.org/show_bug.cgi?id=135620
1913 Reviewed by Laszlo Gombos.
1915 * Source/cmake/OptionsMac.cmake:
1916 Use UDIS86 by default on Mac.
1918 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
1920 Add a flag for the CSS Selectors level 4 implementation
1921 https://bugs.webkit.org/show_bug.cgi?id=135535
1923 Reviewed by Andreas Kling.
1925 * Source/cmake/OptionsEfl.cmake:
1926 * Source/cmake/OptionsGTK.cmake:
1927 * Source/cmake/WebKitFeatures.cmake:
1928 * Source/cmakeconfig.h.cmake:
1930 2014-08-04 Alex Christensen <achristensen@webkit.org>
1932 Progress towards CMake on Mac.
1933 https://bugs.webkit.org/show_bug.cgi?id=135528
1935 Reviewed by Gyuyoung Kim.
1937 * Source/cmake/OptionsMac.cmake:
1938 Made options list based on FeatureDefines.xcconfig files.
1940 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1942 [GTK] Windowing target support should reflect the support in the GTK+ dependency
1943 https://bugs.webkit.org/show_bug.cgi?id=134736
1945 Reviewed by Martin Robinson.
1947 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
1948 support the X11 or Wayland windowing targets -- instead, if there's no support
1949 the specific target is disabled, and an error is thrown only if neither of the
1950 backends is enabled at the end..
1951 For now the X11 target remains enabled by default, and the Wayland target is
1952 kept disabled. Once it's possible to have both targets enabled at runtime in
1953 WebKit, the Wayland target will be enabled as well and we'll leave it to the
1954 GTK+ dependency to determine which targets can be enabled.
1956 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1958 [CMake] Add FindWayland.cmake
1959 https://bugs.webkit.org/show_bug.cgi?id=135540
1961 Reviewed by Martin Robinson.
1963 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
1964 dependency. For now bundles the wayland-client, wayland-server and
1965 wayland-egl pkg-config targets into one dependency, but these could
1966 be split in the future if necessary.
1968 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
1970 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
1971 https://bugs.webkit.org/show_bug.cgi?id=135553
1973 Reviewed by Gyuyoung Kim.
1975 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
1976 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
1978 * Source/cmake/OptionsEfl.cmake:
1980 2014-08-01 Bear Travis <betravis@adobe.com>
1982 [Feature Queries] Enable Feature Queries on EFL/GTK
1983 https://bugs.webkit.org/show_bug.cgi?id=134902
1985 Reviewed by Benjamin Poulain.
1987 Enable CSS Feature Queries by default on the EFL and GTK
1990 * Source/cmake/OptionsEfl.cmake:
1991 * Source/cmake/OptionsGTK.cmake:
1993 2014-08-01 Alex Christensen <achristensen@webkit.org>
1995 Progress towards cmake on Windows.
1996 https://bugs.webkit.org/show_bug.cgi?id=135484
1998 Reviewed by Martin Robinson.
2001 Added Mac to list of ports, even though it is not done yet.
2002 Changed minimum bison version to version installed on Macs.
2003 * Source/cmake/OptionsAppleWin.cmake:
2004 Added some definitions.
2005 * Source/cmake/OptionsEfl.cmake:
2006 * Source/cmake/OptionsGTK.cmake:
2007 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2008 * Source/cmake/OptionsMac.cmake: Added blank for now.
2009 * Source/cmake/OptionsWinCairo.cmake:
2010 * Source/cmake/OptionsWindows.cmake:
2011 Added some definitions.
2012 Removed /WX (warnings treated as error while compiling).
2013 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2015 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2017 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2018 https://bugs.webkit.org/show_bug.cgi?id=135501
2020 Reviewed by Gyuyoung Kim.
2022 Use PROJECT_VERSION_MICRO instead.
2024 * Source/cmake/OptionsEfl.cmake:
2025 * Source/cmake/OptionsGTK.cmake:
2026 * Source/cmake/WebKitHelpers.cmake:
2028 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2030 [EFL] Bump ewebkit version to 1.11
2031 https://bugs.webkit.org/show_bug.cgi?id=135487
2033 Reviewed by Gyuyoung Kim.
2035 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2037 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2039 [EFL] Add support for building with Geoclue2.
2040 https://bugs.webkit.org/show_bug.cgi?id=135455
2042 Reviewed by Gyuyoung Kim.
2044 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2047 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2049 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2051 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2053 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2055 [GTK] Bump binary version for 2.6
2056 https://bugs.webkit.org/show_bug.cgi?id=133724
2058 Reviewed by Philippe Normand.
2060 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
2061 update library version numbers.
2063 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
2065 [CMake] Bump the minimum required version
2066 https://bugs.webkit.org/show_bug.cgi?id=135382
2068 Reviewed by Gyuyoung Kim.
2070 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
2071 we introduced usage of target_include_directories().
2073 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
2075 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
2076 https://bugs.webkit.org/show_bug.cgi?id=135376
2078 Reviewed by Gyuyoung Kim.
2080 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
2082 * Source/cmake/OptionsEfl.cmake:
2083 * Source/cmake/OptionsGTK.cmake:
2085 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
2087 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
2088 https://bugs.webkit.org/show_bug.cgi?id=135288
2090 Reviewed by Martin Robinson.
2092 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
2093 datadir to pkgconfig
2094 * Source/cmake/OptionsGTK.cmake: define install directories early
2095 enough to be used in FindGObjectIntrospection.cmake
2097 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
2099 Remove CSS_EXCLUSIONS compile flag and leftover code
2100 https://bugs.webkit.org/show_bug.cgi?id=135175
2102 Reviewed by Zoltan Horvath.
2104 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
2105 stubs. This removes the flag and the useless code.
2107 * Source/cmake/WebKitFeatures.cmake:
2108 * Source/cmakeconfig.h.cmake:
2110 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2112 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2113 https://bugs.webkit.org/show_bug.cgi?id=135114
2115 Fix build with GStreamer 1.4
2117 Reviewed by Philippe Normand.
2119 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2120 gst-mpegts component instead of the unstable 1.3.x verstions.
2122 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2124 [GTK] Simplify make-dist command line arguments
2125 https://bugs.webkit.org/show_bug.cgi?id=134832
2127 Reviewed by Martin Robinson.
2129 * Source/PlatformGTK.cmake: Use --version instead of
2130 --tarball-root when running make-dist.py.
2132 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2134 Add a manual test for r135044
2136 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2138 Rubber-stamped by Andy Estes.
2140 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2142 2014-07-18 Dana Burkart <dburkart@apple.com>
2144 Add a new 'analyze' target to the makefile. This will make use of a new
2145 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2147 https://bugs.webkit.org/show_bug.cgi?id=135057
2148 <rdar://problem/10193187>
2150 Reviewed by David Kilzer.
2156 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2158 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2159 https://bugs.webkit.org/show_bug.cgi?id=134963
2161 Reviewed by Gyuyoung Kim.
2163 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2165 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2167 2014-07-14 Daniel Bates <dabates@apple.com>
2169 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2170 https://bugs.webkit.org/show_bug.cgi?id=134905
2171 <rdar://problem/16602779>
2173 Reviewed by Simon Fraser.
2175 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2176 on the tapped element when processing a touchend as a result of finger pressing and releasing
2177 on the same element that is initially positioned outside the visible content area.
2179 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2181 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2183 [GTK] Enable VIDEO_TRACK by default
2184 https://bugs.webkit.org/show_bug.cgi?id=134801
2186 Reviewed by Philippe Normand.
2188 * Source/cmake/OptionsGTK.cmake:
2190 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2192 [GTK][CMake] Add a 'distcheck' target
2193 https://bugs.webkit.org/show_bug.cgi?id=130675
2195 Reviewed by Gustavo Noronha Silva.
2197 * Source/PlatformGTK.cmake: Add distcheck target.
2199 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2201 [GTK] Use the same default options for production builds that previous stable releases
2202 https://bugs.webkit.org/show_bug.cgi?id=134589
2204 Reviewed by Martin Robinson.
2206 Change the default value of some features to match our stable releases.
2207 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2208 canvas depend on whether cairo-gl is found.
2210 * Source/cmake/FindCairoGL.cmake: Added.
2211 * Source/cmake/OptionsGTK.cmake:
2213 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2215 [EFL] Support Encrypted Media Extensions.
2216 https://bugs.webkit.org/show_bug.cgi?id=134750
2218 Reviewed by Gyuyoung Kim.
2220 Webkit needs to play encrypted media contents when media player
2221 is played by Media source extensions and normal video procedure.
2223 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2225 2014-07-08 Alex Christensen <achristensen@webkit.org>
2227 Steps towards CMake on Windows.
2228 https://bugs.webkit.org/show_bug.cgi?id=134716
2230 Reviewed by Martin Robinson.
2233 Added AppleWin and WinCairo to list of CMake ports.
2234 * Source/cmake/OptionsAppleWin.cmake: Added.
2235 * Source/cmake/OptionsWinCairo.cmake: Added.
2236 * Source/cmake/OptionsWindows.cmake:
2237 Windows needs to use the system malloc. Other options to come.
2239 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2241 [EFL] Support Geolocation
2242 https://bugs.webkit.org/show_bug.cgi?id=134439
2244 Reviewed by Antonio Gomes.
2246 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2248 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2250 Broken build with build-webkit --no-video
2251 https://bugs.webkit.org/show_bug.cgi?id=134587
2253 Reviewed by Darin Adler.
2255 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2257 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2259 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2261 [GTK] The list of features shown by cmake is not accurate
2262 https://bugs.webkit.org/show_bug.cgi?id=134588
2264 Reviewed by Gustavo Noronha Silva.
2266 The problem is that some options might change after the feature
2267 list has been printed.
2269 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2270 setting the default values of features and set WEBGL value
2271 depending on the dependencies, and API_TEST depending on whether
2272 developer mode is enabled or not.
2274 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2276 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2277 https://bugs.webkit.org/show_bug.cgi?id=134578
2279 Reviewed by Gyuyoung Kim.
2281 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2282 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2283 disable related option if it is not ON.
2285 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2286 * Source/cmake/OptionsGTK.cmake: Ditto.
2287 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2289 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2291 [GTK] make dist is broken
2292 https://bugs.webkit.org/show_bug.cgi?id=134542
2294 Reviewed by Martin Robinson.
2296 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2298 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2300 [CMake] Add necessary support for building for the Wayland target
2301 https://bugs.webkit.org/show_bug.cgi?id=134160
2303 Reviewed by Darin Adler.
2305 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2306 is enabled, and that its version matches the version of the generic package. Same
2307 for the gtk+-wayland-3.0 package and the Wayland target.
2308 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2309 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2310 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2311 so they keep building the TestNetscapePlugin target.
2312 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2313 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2314 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2315 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2316 the minimum required version as soon as that target is enabled. Only search for GLX
2317 if the X11 target is enabled.
2319 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2321 Add support for HTMLImageElement's sizes attribute
2322 https://bugs.webkit.org/show_bug.cgi?id=133620
2324 Reviewed by Dean Jackson.
2326 Added an ENABLE_PICTURE_SIZES compile flag.
2328 * Source/cmake/WebKitFeatures.cmake:
2329 * Source/cmakeconfig.h.cmake:
2331 2014-06-26 Daniel Bates <dabates@apple.com>
2333 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2334 https://bugs.webkit.org/show_bug.cgi?id=134309
2335 <rdar://problem/17427385>
2337 Reviewed by Darin Adler.
2339 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2342 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2344 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2346 Remove build guard for progress element
2347 https://bugs.webkit.org/show_bug.cgi?id=134292
2349 Reviewed by Benjamin Poulain.
2351 The build flag is no longer needed as it is always on.
2353 * Source/cmake/WebKitFeatures.cmake:
2354 * Source/cmakeconfig.h.cmake:
2356 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2358 [EFL] Platform support for WebSpeech feature.
2359 https://bugs.webkit.org/show_bug.cgi?id=116438
2361 Reviewed by Csaba Osztrogonác.
2363 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2365 * Source/cmake/OptionsEfl.cmake:
2366 * Source/cmake/WebKitFeatures.cmake:
2368 2014-06-23 Philippe Normand <pnormand@igalia.com>
2370 Unreviewed, GTK build fix after r170266.
2372 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2374 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2376 Disable gamepad feature on EFL and GTK ports by default
2377 https://bugs.webkit.org/show_bug.cgi?id=134169
2379 Reviewed by Brady Eidson.
2381 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
2383 2014-06-21 Brady Eidson <beidson@apple.com>
2385 Gamepad API - Deprecate the existing implementation
2386 https://bugs.webkit.org/show_bug.cgi?id=134108
2388 Reviewed by Timothy Hatcher.
2390 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2391 -Add the "Deprecated" suffix to some implementation files
2393 * Source/cmake/OptionsEfl.cmake:
2394 * Source/cmake/OptionsGTK.cmake:
2395 * Source/cmake/WebKitFeatures.cmake:
2396 * Source/cmakeconfig.h.cmake:
2398 2014-06-21 Commit Queue <commit-queue@webkit.org>
2400 Unreviewed, rolling out r170244.
2401 https://bugs.webkit.org/show_bug.cgi?id=134157
2403 GTK/EFL bindings generator works differently, making this
2404 patch not work there. Will fix entire patch after a rollout.
2405 (Requested by bradee-oh on #webkit).
2409 "Gamepad API - Deprecate the existing implementation"
2410 https://bugs.webkit.org/show_bug.cgi?id=134108
2411 http://trac.webkit.org/changeset/170244
2413 2014-06-21 Brady Eidson <beidson@apple.com>
2415 Gamepad API - Deprecate the existing implementation
2416 https://bugs.webkit.org/show_bug.cgi?id=134108
2418 Reviewed by Timothy Hatcher.
2420 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2421 -Add the "Deprecated" suffix to some implementation files
2423 * Source/cmake/OptionsEfl.cmake:
2424 * Source/cmake/OptionsGTK.cmake:
2425 * Source/cmake/WebKitFeatures.cmake:
2426 * Source/cmakeconfig.h.cmake:
2428 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2430 Removing PAGE_VISIBILITY_API compile guard.
2431 https://bugs.webkit.org/show_bug.cgi?id=133844
2433 Reviewed by Gavin Barraclough.
2435 * Source/cmake/OptionsEfl.cmake:
2436 * Source/cmake/OptionsGTK.cmake:
2437 * Source/cmake/WebKitFeatures.cmake:
2438 * Source/cmakeconfig.h.cmake:
2440 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2442 [EFL][CMAKE] Disable WebKit1 build as a default
2443 https://bugs.webkit.org/show_bug.cgi?id=134093
2445 Reviewed by Gyuyoung Kim.
2447 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2449 * Source/cmake/OptionsEfl.cmake:
2451 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2453 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2454 https://bugs.webkit.org/show_bug.cgi?id=130389
2456 Reviewed by Mark Lam.
2458 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2459 into !ENABLE(JIT) since they are mutually exclusive.
2461 * Source/cmake/OptionsEfl.cmake:
2462 * Source/cmake/OptionsGTK.cmake:
2463 * Source/cmake/WebKitFeatures.cmake:
2464 * Source/cmakeconfig.h.cmake:
2466 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2468 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2469 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2470 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2471 by the plugin process, but it is searched and utilized separately.
2473 Rubber-stamped by Carlos Garcia Campos.
2475 * Source/cmake/OptionsGTK.cmake:
2477 2014-06-16 Commit Queue <commit-queue@webkit.org>
2479 Unreviewed, rolling out r170003.
2480 https://bugs.webkit.org/show_bug.cgi?id=133938
2482 This patch broke GTK build (Requested by kczech on #webkit).
2486 "[EFL] Platform support for WebSpeech feature."
2487 https://bugs.webkit.org/show_bug.cgi?id=116438
2488 http://trac.webkit.org/changeset/170003
2490 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2492 [EFL] Platform support for WebSpeech feature.
2493 https://bugs.webkit.org/show_bug.cgi?id=116438
2495 Reviewed by Gyuyoung Kim.
2497 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2499 * Source/cmake/OptionsEfl.cmake:
2500 * Source/cmake/WebKitFeatures.cmake:
2502 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2504 [EFL] Remove duplicated compiler flag
2505 https://bugs.webkit.org/show_bug.cgi?id=133838
2507 Reviewed by Anders Carlsson.
2509 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2510 it added to common compiler options. So, it is duplicated.
2512 * Source/cmake/WebKitHelpers.cmake:
2514 2014-06-11 Commit Queue <commit-queue@webkit.org>
2516 Unreviewed, rolling out r169877.
2517 https://bugs.webkit.org/show_bug.cgi?id=133784
2519 rollout wrong build fix approach for EFL port (Requested by
2520 gyuyoung on #webkit).
2524 "Unreviewed, EFL build fix since r169869."
2525 http://trac.webkit.org/changeset/169877
2527 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2529 Unreviewed, EFL build fix since r169869.
2531 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2533 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2535 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2537 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2539 * Source/cmake/WebKitHelpers.cmake:
2541 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2543 [GTK] Make it possible to build with FTL enabled
2544 https://bugs.webkit.org/show_bug.cgi?id=133219
2546 Reviewed by Philippe Normand.
2548 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2550 * Source/cmake/OptionsGTK.cmake:
2552 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2554 [CMake] Clean up FAST_MOBILE_SCROLLING
2555 https://bugs.webkit.org/show_bug.cgi?id=133342
2557 Reviewed by Gyuyoung Kim.
2559 FAST_MOBILE_SCROLLING was removed in r168726.
2561 * Source/cmake/OptionsEfl.cmake:
2562 * Source/cmake/OptionsGTK.cmake:
2563 * Source/cmake/WebKitFeatures.cmake:
2564 * Source/cmakeconfig.h.cmake:
2566 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2569 https://bugs.webkit.org/show_bug.cgi?id=132863
2571 Reviewed by Csaba Osztrogonác.
2573 * Source/cmake/OptionsEfl.cmake:
2574 * Source/cmake/OptionsGTK.cmake:
2575 * Source/cmake/WebKitFeatures.cmake:
2576 * Source/cmakeconfig.h.cmake:
2578 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2580 Allow building CMake based ports with WEB_REPLAY
2581 https://bugs.webkit.org/show_bug.cgi?id=133154
2583 Reviewed by Csaba Osztrogonác.
2585 * Source/cmake/WebKitFeatures.cmake:
2586 * Source/cmakeconfig.h.cmake:
2588 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2590 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2591 https://bugs.webkit.org/show_bug.cgi?id=132907
2593 Reviewed by Gyuyoung Kim.
2595 * Source/cmake/FindLIBCXXABI.cmake: Added.
2596 * Source/cmake/OptionsEfl.cmake:
2598 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2600 [EFL] Turn on ENABLE_CSS_FILTERS
2601 https://bugs.webkit.org/show_bug.cgi?id=133153
2603 Reviewed by Gyuyoung Kim.
2605 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2607 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2609 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2610 https://bugs.webkit.org/show_bug.cgi?id=132819
2612 Reviewed by Carlos Garcia Campos.
2614 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2616 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2617 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2619 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2621 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2623 [CMake] Support building with Debug Fission
2624 https://bugs.webkit.org/show_bug.cgi?id=131177
2626 Reviewed by Philippe Normand.
2628 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2629 of http://gcc.gnu.org/wiki/DebugFission.
2631 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2633 [GTK] Rename translation domain as WebKit2GTK-3.0
2634 https://bugs.webkit.org/show_bug.cgi?id=132953
2636 Reviewed by Gustavo Noronha Silva.
2638 * Source/cmake/OptionsGTK.cmake:
2640 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2642 support for navigator.hardwareConcurrency
2643 https://bugs.webkit.org/show_bug.cgi?id=132588
2645 Reviewed by Filip Pizlo.
2647 * Source/cmake/OptionsEfl.cmake:
2648 * Source/cmake/OptionsGTK.cmake:
2649 * Source/cmake/WebKitFeatures.cmake:
2650 * Source/cmakeconfig.h.cmake:
2652 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2654 Remove CSS_STICKY_POSITION guards
2655 https://bugs.webkit.org/show_bug.cgi?id=132676
2657 Reviewed by Simon Fraser.
2659 * Source/cmake/OptionsEfl.cmake:
2660 * Source/cmake/OptionsGTK.cmake:
2661 * Source/cmake/WebKitFeatures.cmake:
2662 * Source/cmakeconfig.h.cmake:
2664 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2666 Unreviewed. Bump version numbers.
2668 * Source/cmake/OptionsGTK.cmake:
2670 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2672 [GTK][CMake] Unable to do make install
2673 https://bugs.webkit.org/show_bug.cgi?id=130188
2675 Reviewed by Carlos Garcia Campos.
2677 Only try to install the HTML documentation if the build is configured to generate it via
2678 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2679 to keep the HTML documentation directory as an installation source.
2681 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2682 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2683 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2684 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2685 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2687 2014-05-09 Anders Carlsson <andersca@apple.com>
2689 Rename WebKit2.framework to WebKit.framework
2690 https://bugs.webkit.org/show_bug.cgi?id=132743
2691 <rdar://problem/15920046>
2693 Reviewed by Dan Bernstein.
2696 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2698 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2701 2014-05-06 David Kilzer <ddkilzer@apple.com>
2703 Add Makefile targets for copying static libraries (LLVM and WKSI)
2704 <http://webkit.org/b/132619>
2706 Reviewed by Mark Rowe.
2709 (MODULES): Add WebKitLibraries.
2711 2014-05-06 Commit Queue <commit-queue@webkit.org>
2713 Unreviewed, rolling out r168304.
2714 https://bugs.webkit.org/show_bug.cgi?id=132607
2716 Broke the build (Requested by KaL on #webkit).
2720 "[GTK][CMake] Unable to do make install"
2721 https://bugs.webkit.org/show_bug.cgi?id=130188
2722 http://trac.webkit.org/changeset/168304
2724 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2726 [GTK][CMake] Unable to do make install
2727 https://bugs.webkit.org/show_bug.cgi?id=130188
2729 Reviewed by Carlos Garcia Campos.
2731 Only try to install the HTML documentation if the build is configured to generate it via
2732 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2733 to keep the HTML documentation directory as an installation source.
2735 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2736 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2737 never added to the default target, but will be triggered by build-webkit, so that
2738 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2739 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2741 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2743 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2744 https://bugs.webkit.org/show_bug.cgi?id=132525
2746 Reviewed by Martin Robinson.
2748 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2749 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2750 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2752 2014-05-01 David Kilzer <ddkilzer@apple.com>
2754 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2755 <http://webkit.org/b/132432>
2757 Reviewed by Tim Horton.
2759 * Source/cmake/WebKitFeatures.cmake:
2760 * Source/cmakeconfig.h.cmake:
2761 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2763 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2765 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2767 Reviewed by Dan Bernstein/Anders Carlsson.
2769 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2770 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2772 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2774 Let Xcode have its way with the WebKit workspace.
2776 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2777 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2779 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2781 [GTK] Make it easier to run CMake for downstreams
2782 https://bugs.webkit.org/show_bug.cgi?id=132370
2784 Reviewed by Carlos Garcia Campos.
2786 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2788 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2790 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2791 https://bugs.webkit.org/show_bug.cgi?id=132176
2793 Reviewed by Gyuyoung Kim.
2795 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2797 * Source/cmake/OptionsEfl.cmake:
2799 2014-04-22 Alex Christensen <achristensen@webkit.org>
2801 Removed old stdbool and inttypes headers.
2802 https://bugs.webkit.org/show_bug.cgi?id=131966
2804 Reviewed by Brent Fulgham.
2806 * Source/cmake/OptionsWindows.cmake:
2807 * Source/cmake/WebKitPackaging.cmake:
2808 Removed references to os-win32 directory.
2810 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2812 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2814 Rubber-stamped by Carlos Garcia Campos.
2816 * Source/cmake/WebKitFeatures.cmake:
2818 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2820 Empty RenderInline objects should not be line break objects.
2822 https://bugs.webkit.org/show_bug.cgi?id=131861
2823 <rdar://problem/15663617>
2825 Reviewed by David Hyatt.
2827 * ManualTests/empty-inline-as-line-break-position.html: Added.
2828 This issue wouldn't reproduce in WebKitTestRunner.
2830 2014-04-19 Brent Fulgham <bfulgham@apple.com>
2832 Revert unintended workspace change in my last commit.
2834 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
2835 Scheme type back to Debug.
2837 2014-04-18 Philippe Normand <pnormand@igalia.com>
2839 Remove NETWORK_INFO support
2840 https://bugs.webkit.org/show_bug.cgi?id=131841
2842 Reviewed by Gyuyoung Kim.
2844 * Source/cmake/OptionsEfl.cmake:
2845 * Source/cmake/OptionsGTK.cmake:
2846 * Source/cmake/WebKitFeatures.cmake:
2847 * Source/cmakeconfig.h.cmake:
2849 2014-04-17 Darin Adler <darin@apple.com>
2851 Try to fix EFL and GTK builds.
2853 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
2854 * Source/cmake/OptionsGTK.cmake: Ditto.
2855 * Source/cmakeconfig.h.cmake: Ditto.
2857 2014-04-16 Brendan Long <b.long@cablelabs.com>
2859 [GTK][CMAKE] build-webkit doesn't detect when the build fails
2860 https://bugs.webkit.org/show_bug.cgi?id=130148
2862 Reviewed by Martin Robinson.
2864 * 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.
2866 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
2868 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
2869 https://bugs.webkit.org/show_bug.cgi?id=131725
2871 Reviewed by Philippe Normand.
2873 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
2874 instead of GTK_UNIX_PRINTING_FOUND and set the macro
2875 HAVE_GTK_UNIX_PRINTING to 1 when found.
2877 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
2879 Web Replay: memoize nondeterministic attributes of the Navigator interface
2880 https://bugs.webkit.org/show_bug.cgi?id=131340
2882 Reviewed by Timothy Hatcher.
2884 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
2886 2014-04-09 Brendan Long <b.long@cablelabs.com>
2888 [GStreamer] Expose MPEG-TS metadata
2889 https://bugs.webkit.org/show_bug.cgi?id=122001
2891 Reviewed by Eric Carlson.
2893 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
2894 * Source/cmake/OptionsEfl.cmake: Same.
2895 * Source/cmake/OptionsGTK.cmake: Same.
2897 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
2899 Web Replay: memoize nondeterministic attributes of the Screen interface
2900 https://bugs.webkit.org/show_bug.cgi?id=131339
2902 Reviewed by Timothy Hatcher.
2904 * ManualTests/inspector/replay-window-screen.html: Added.
2906 2014-04-08 Martin Robinson <mrobinson@igalia.com>
2908 [GTK] Remove the WebKitGTK+ WebKit 1 code
2909 https://bugs.webkit.org/show_bug.cgi?id=131399
2911 Reviewed by Anders Carlsson.
2913 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
2914 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
2916 2014-04-08 Dan Bernstein <mitz@apple.com>
2918 Added bmalloc to the WebKit workspace.
2919 https://bugs.webkit.org/show_bug.cgi?id=131362
2921 Reviewed by Geoff Garen.
2923 * WebKit.xcworkspace/contents.xcworkspacedata:
2924 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2925 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2927 2014-04-08 Geoffrey Garen <ggaren@apple.com>
2929 Build bmalloc on iOS too
2930 https://bugs.webkit.org/show_bug.cgi?id=131381
2932 Reviewed by Andreas Kling.
2934 * Source/Makefile: Build it.
2936 2014-04-07 Geoffrey Garen <ggaren@apple.com>
2938 Build bmalloc on Mac
2939 https://bugs.webkit.org/show_bug.cgi?id=131333
2941 Reviewed by Mark Rowe.
2944 * WebKitBuild: Added.
2945 * WebKitBuild/Debug: Added.
2947 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
2949 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
2950 https://bugs.webkit.org/show_bug.cgi?id=131257
2952 Reviewed by Gyuyoung Kim.
2954 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
2956 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2958 [GTK] Stop trying to install WebKit1 documentation
2959 https://bugs.webkit.org/show_bug.cgi?id=131278
2961 Reviewed by Martin Robinson.
2963 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
2964 built anymore since r166584. This fixes `make install'.
2966 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
2968 Web Replay: capture and replay wheel events and scroll commands
2969 https://bugs.webkit.org/show_bug.cgi?id=129402
2971 Reviewed by Timothy Hatcher.
2973 * ManualTests/inspector/replay-wheel-events.html: Added.
2975 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2977 [GTK][CMake] Remove FindXt.cmake.
2978 https://bugs.webkit.org/show_bug.cgi?id=131227
2980 Reviewed by Anders Carlsson.
2982 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
2984 * Source/cmake/FindXt.cmake: Removed.
2985 * Source/cmake/OptionsGTK.cmake:
2987 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
2989 [EFL] Build error due to changed path of generated js files.
2990 https://bugs.webkit.org/show_bug.cgi?id=131215
2992 Reviewed by Gyuyoung Kim.
2994 r166648 fixed the generation of some .js files on GTK. Due to some
2995 changes in the paths it causes a build error on EFL.
2997 * Source/PlatformEfl.cmake:
2998 Replaced path for two derived source files.
3000 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3002 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
3003 https://bugs.webkit.org/show_bug.cgi?id=131095
3005 Reviewed by Martin Robinson.
3007 One needs to take into account OpenGL's include directory found via
3008 find_package() when looking for glx.h, since if the former is a
3009 non-standard location the latter will also be. If this is not it is
3010 possible that OpenGL is found but GLX support is not properly detected.
3012 * Source/cmake/OptionsGTK.cmake:
3014 2014-04-02 Martin Robinson <mrobinson@igalia.com>
3016 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
3017 https://bugs.webkit.org/show_bug.cgi?id=130343
3019 Reviewed by Gustavo Noronha Silva.
3021 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
3023 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
3025 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3027 [CMake] Drop port check from FindEGL.cmake.
3028 https://bugs.webkit.org/show_bug.cgi?id=131091
3030 Reviewed by Gyuyoung Kim.
3032 There is no reason to mark some variables as advanced only for the
3035 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
3036 as advanced regardless of the port.
3038 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3040 Fix the !ENABLE(BATTERY_STATUS) build
3041 https://bugs.webkit.org/show_bug.cgi?id=130183
3043 Reviewed by Anders Carlsson.
3045 * Source/cmake/OptionsEfl.cmake:
3047 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3049 [CMake][GTK] Do not expand variables twice in if() checks.
3050 https://bugs.webkit.org/show_bug.cgi?id=130964
3052 Reviewed by Martin Robinson.
3054 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
3055 to be checked by the if clause. This is not what we want, and
3056 configuration fails when, say, GLX support wasn't found as the if
3057 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
3059 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
3062 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3064 [GTK] Remove scripts code only applicable to autotools
3065 https://bugs.webkit.org/show_bug.cgi?id=130841
3067 Reviewed by Anders Carlsson.
3069 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
3071 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3073 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
3074 https://bugs.webkit.org/show_bug.cgi?id=130936
3076 Reviewed by Carlos Garcia Campos.
3078 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
3080 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
3082 [GTK] Add support for GTK3 plugins
3083 https://bugs.webkit.org/show_bug.cgi?id=130599
3085 Reviewed by Martin Robinson.
3087 * Source/cmake/OptionsGTK.cmake:
3089 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3091 [EFL] Bump glib version from 2.36 to 2.38
3092 https://bugs.webkit.org/show_bug.cgi?id=130886
3094 Reviewed by Csaba Osztrogonác.
3096 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
3098 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
3100 [CSS Shapes] Remove shape-inside support
3101 https://bugs.webkit.org/show_bug.cgi?id=130698
3103 Reviewed by David Hyatt.
3105 * Source/cmake/WebKitFeatures.cmake:
3106 * Source/cmakeconfig.h.cmake:
3108 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3110 [GTK] Remove the autotools build
3111 https://bugs.webkit.org/show_bug.cgi?id=130717
3113 Reviewed by Anders Carlsson.
3115 * .gitignore: Remove references to autotools files.
3116 * GNUmakefile.am: Removed.
3117 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3118 * Source/autotools/CustomMacros.m4: Removed.
3119 * Source/autotools/FindDependencies.m4: Removed.
3120 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3121 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3122 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3123 * Source/autotools/SetupAutomake.m4: Removed.
3124 * Source/autotools/SetupCompilerFlags.m4: Removed.
3125 * Source/autotools/SetupLibtool.m4: Removed.
3126 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3127 * Source/autotools/Versions.m4: Removed.
3128 * Source/autotools/acinclude.m4: Removed.
3129 * Source/autotools/dolt.m4: Removed.
3130 * Source/autotools/gsettings.m4: Removed.
3131 * Source/cmake/OptionsGTK.cmake:
3132 * autogen.sh: Removed.
3133 * configure.ac: Removed.
3135 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3137 [EFL] Add ARM64 build support
3138 https://bugs.webkit.org/show_bug.cgi?id=130506
3140 Rubber stamped by Gyuyoung Kim.
3142 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3144 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3146 [EFL][WK2] Add NETWORK_PROCESS build option
3147 https://bugs.webkit.org/show_bug.cgi?id=130131
3149 Reviewed by Gyuyoung Kim.
3151 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3154 * Source/cmake/OptionsEfl.cmake:
3156 2014-03-24 Brian Burg <bburg@apple.com>
3158 Web Replay: capture and replay keyboard events
3159 https://bugs.webkit.org/show_bug.cgi?id=130314
3161 Reviewed by Joseph Pecoraro.
3163 * ManualTests/inspector/replay-keyboard-events.html: Added.
3165 2014-03-24 Sangyong Park <sy302.park@gmail.com>
3167 [EFL] Inspector page is not loaded.
3168 https://bugs.webkit.org/show_bug.cgi?id=130661
3170 Reviewed by Gyuyoung Kim.
3172 Inspector page is not loaded, because some javascript files are not installed.
3173 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
3175 * Source/PlatformEfl.cmake:
3177 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3179 [EFL][GTK] Get CMake to find Freetype2 properly
3180 https://bugs.webkit.org/show_bug.cgi?id=130150
3182 Reviewed by Martin Robinson.
3184 Newer versions of CMake are not able to find Freetype2 correctly.
3185 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3186 freetype2 repo, because a completely different version number is found in freetype2.pc.
3188 * Source/cmake/FindFreetype2.cmake: Added.
3189 * Source/cmake/OptionsEfl.cmake:
3190 * Source/cmake/OptionsGTK.cmake:
3192 2014-03-20 Brian Burg <bburg@apple.com>
3194 Web Replay: capture and replay mouse events
3195 https://bugs.webkit.org/show_bug.cgi?id=129395
3197 Reviewed by Joseph Pecoraro.
3199 Create a manual test for capture/replay of mouse events.
3200 Copy over the crypto-md5.js library from SunSpider.
3202 * ManualTests/inspector/replay-mouse-events.html: Added.
3203 * ManualTests/inspector/resources/crypto-md5.js: Added.
3205 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
3207 [GTK][CMake] Add support for building with Clang
3208 https://bugs.webkit.org/show_bug.cgi?id=130260
3210 Reviewed by Martin Robinson.
3212 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
3213 to the list C compiler flags as constructed by CMake.
3214 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
3215 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3216 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3217 -fno-tree-dce should be used only for GCC.
3218 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3219 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3221 2014-03-20 Commit Queue <commit-queue@webkit.org>
3223 Unreviewed, rolling out r165962.
3224 https://bugs.webkit.org/show_bug.cgi?id=130512
3226 It broke the build (Requested by Ossy on #webkit).
3230 "[EFL][GTK] Get CMake to find Freetype2 properly"
3231 https://bugs.webkit.org/show_bug.cgi?id=130150
3232 http://trac.webkit.org/changeset/165962
3234 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3236 [EFL][GTK] Get CMake to find Freetype2 properly
3237 https://bugs.webkit.org/show_bug.cgi?id=130150
3239 Reviewed by Csaba Osztrogonác.
3241 Newer versions of CMake are not able to find Freetype2 correctly.
3242 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3243 freetype2 repo, because a completely different version number is found in freetype2.pc.
3245 * Source/cmake/FindFreetype2.cmake: Added.
3246 * Source/cmake/OptionsEfl.cmake:
3247 * Source/cmake/OptionsGTK.cmake:
3249 2014-03-17 Brendan Long <b.long@cablelabs.com>
3251 [GStreamer] human readable language code for tracks
3252 https://bugs.webkit.org/show_bug.cgi?id=124514
3254 Reviewed by Martin Robinson.
3256 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3257 * Source/cmake/FindGStreamer.cmake: Same.
3258 * Source/cmake/OptionsEfl.cmake: Same.
3259 * Source/cmake/OptionsGTK.cmake: Same.
3261 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3263 [GTK][CMake] Credential storage is not enabled
3264 https://bugs.webkit.org/show_bug.cgi?id=130149
3266 Reviewed by Philippe Normand.
3268 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3269 and look libsecret when it's enabled.
3270 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3272 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3274 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3275 https://bugs.webkit.org/show_bug.cgi?id=130155
3277 Reviewed by Philippe Normand.
3279 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3280 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3281 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3283 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3285 [EFL] Enable TOUCH_SLIDER macro.
3286 https://bugs.webkit.org/show_bug.cgi?id=130186
3288 Reviewed by Gyuyoung Kim.
3290 * Source/cmake/OptionsEfl.cmake:
3292 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3294 [GTK][CMake] Build with -fno-rtti
3295 https://bugs.webkit.org/show_bug.cgi?id=130261
3297 Reviewed by Martin Robinson.
3299 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3300 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3301 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3302 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3303 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3304 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3305 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3307 2014-03-16 Brendan Long <b.long@cablelabs.com>
3309 [GStreamer] CMake doesn't find the include path for gstreamer-base
3310 https://bugs.webkit.org/show_bug.cgi?id=130098
3312 Reviewed by Philippe Normand.
3314 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3316 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3318 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3319 https://bugs.webkit.org/show_bug.cgi?id=130276
3320 <rdar://problem/16266927>
3322 Reviewed by Simon Fraser.
3324 * ManualTests/NPN_Invoke/Info.plist:
3325 * ManualTests/NPN_Invoke/main.c:
3326 * ManualTests/accessibility/resources/AppletTest.java:
3328 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3330 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3331 https://bugs.webkit.org/show_bug.cgi?id=130258
3333 Reviewed by Martin Robinson.
3335 GCC compilers 4.7 and later are supported, so there's no need for disabling
3336 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3338 * Source/cmake/WebKitHelpers.cmake:
3340 2014-03-14 Landry Breuil <landry@openbsd.org>
3342 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3343 https://bugs.webkit.org/show_bug.cgi?id=129966
3345 Reviewed by Andreas Kling.
3347 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3348 * Source/autotools/SetupAutomake.m4:
3350 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3352 [CMake] Failure to link with older installations of WebP
3353 https://bugs.webkit.org/show_bug.cgi?id=130195
3355 Reviewed by Gustavo Noronha Silva.
3357 Fix the issue by using a temporary variable as the output parameter
3358 to check_include_files(), setting WEBP_FOUND accordingly later.
3360 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3361 variable in check_include_files(), as it will lead to misleading
3362 results (will always be FALSE). Use a temporary variable instead
3363 and explicitly set WEBP_FOUND to TRUE later if needed.
3365 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3367 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3368 https://bugs.webkit.org/show_bug.cgi?id=130170
3370 Reviewed by Daniel Bates.
3372 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3373 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3374 fake "TestRunner" generator.
3376 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3378 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3379 https://bugs.webkit.org/show_bug.cgi?id=130014
3381 Reviewed by Martin Robinson.
3383 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3385 * Source/cmake/OptionsGTK.cmake:
3386 * Source/cmakeconfig.h.cmake:
3388 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3390 [GTK][CMAKE] Too verbose build output
3391 https://bugs.webkit.org/show_bug.cgi?id=130076
3393 Reviewed by Carlos Garcia Campos.
3395 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3396 works around an issue where cmake --build doesn't support ninja's pretty printing.
3398 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3400 [GTK] Add support for Geoclue2
3401 https://bugs.webkit.org/show_bug.cgi?id=120185
3403 Reviewed by Carlos Garcia Campos.
3405 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3407 Add support for Geoclue2 using autotools.
3409 * Source/autotools/FindDependencies.m4: Add support for handling
3410 both Geoclue 1.0 and 2.0.
3411 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3412 of geoclue that is being used.
3413 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3414 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3415 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3417 Add support for Geoclue2 using CMake.
3419 * Source/cmake/FindGeoClue2.cmake: Added.
3420 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3421 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3423 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3425 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3426 https://bugs.webkit.org/show_bug.cgi?id=130016
3428 Reviewed by Carlos Garcia Campos.
3430 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3431 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3432 HTML version will still run when building the distribution tarball.
3434 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3436 [GTK] [CMake] Clean up library linking
3437 https://bugs.webkit.org/show_bug.cgi?id=129782
3439 Reviewed by Philippe Normand.
3441 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3442 so that unused symbols are not dropped. This is useful when building up shared libraries
3443 from convenience libraries.
3445 2014-03-08 Landry Breuil <landry@openbsd.org>
3447 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3448 https://bugs.webkit.org/show_bug.cgi?id=129973
3450 Reviewed by Martin Robinson.
3452 * Source/autotools/FindDependencies.m4:
3454 2014-03-06 Anders Carlsson <andersca@apple.com>
3456 Build WebKit2 before building WebKit
3457 https://bugs.webkit.org/show_bug.cgi?id=129831
3458 <rdar://problem/15920020>
3460 Reviewed by Dan Bernstein.
3463 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3464 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3466 2014-03-06 Commit Queue <commit-queue@webkit.org>
3468 Unreviewed, rolling out r165193.
3469 http://trac.webkit.org/changeset/165193
3470 https://bugs.webkit.org/show_bug.cgi?id=129823
3472 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3473 env confuses libtool (Requested by zdobersek on #webkit).
3475 * Source/autotools/SetupCompilerFlags.m4:
3477 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3479 [GTK][Autotools] Default to libc++ when compiling with Clang
3480 https://bugs.webkit.org/show_bug.cgi?id=129798
3482 Reviewed by Anders Carlsson.
3484 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3485 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3486 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3488 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3490 [CMake] Ninja generator builds fail with "Argument list too long"
3491 https://bugs.webkit.org/show_bug.cgi?id=129771
3493 Reviewed by Daniel Bates.
3495 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3496 by forcing the use of response files.
3498 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3500 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3501 https://bugs.webkit.org/show_bug.cgi?id=108330
3503 Reviewed by Martin Robinson.
3505 In order to get non-shared debug builds, this patch applied T option for
3506 thin archives to the flags passed to ar when cmake based ports build on linux.
3507 In addition, applied u option which avoids adding a file twice.
3509 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
3510 * Source/cmake/OptionsEfl.cmake:
3511 Removed error messages for non-shared-core debug builds.
3512 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
3514 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
3516 [GTK] Build the Udis86 disassembler
3517 https://bugs.webkit.org/show_bug.cgi?id=129679
3519 Reviewed by Michael Saboff.
3521 * GNUmakefile.am: Add the Udis86_nosources variable.
3522 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
3524 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3526 [GTK] Simplify the GObject DOM bindings API break check into one step
3527 https://bugs.webkit.org/show_bug.cgi?id=129571
3529 Reviewed by Carlos Garcia Campos.
3531 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
3532 Add the check to 'make check.'
3534 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3536 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
3537 https://bugs.webkit.org/show_bug.cgi?id=129502
3539 Reviewed by Carlos Garcia Campos.
3541 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
3543 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
3545 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
3546 https://bugs.webkit.org/show_bug.cgi?id=129031
3548 Reviewed by Csaba Osztrogonác.
3550 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
3552 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
3554 [GTK] WebKit2WebExtension GIR can't be used in vala
3555 https://bugs.webkit.org/show_bug.cgi?id=127179
3557 Reviewed by Martin Robinson.
3559 Add a different pkg-config file for the web extensions API.
3561 * Source/cmake/OptionsGTK.cmake:
3564 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
3566 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
3567 https://bugs.webkit.org/show_bug.cgi?id=129575
3569 Reviewed by Philippe Normand.
3571 * Source/cmake/OptionsEfl.cmake:
3572 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3573 * Source/cmake/OptionsGTK.cmake:
3574 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3575 * Source/cmake/WebKitFeatures.cmake:
3576 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3577 * Source/cmakeconfig.h.cmake:
3578 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
3580 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3582 Enable support of X-Content-Type-Options: nosniff header for EFL
3583 https://bugs.webkit.org/show_bug.cgi?id=128673
3585 Reviewed by Gyuyoung Kim.
3587 * Source/cmake/OptionsEfl.cmake:
3588 Enabled NOSNIFF feature flag for EFL.
3590 2014-02-27 Koop Mast <kwm@FreeBSD.org>
3592 Fallback on checking for libz manualy if zlib.pc isn't available.
3593 https://bugs.webkit.org/show_bug.cgi?id=127061
3595 Reviewed by Gustavo Noronha Silva.
3597 * Source/autotools/FindDependencies.m4:
3599 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
3601 [CSS Grid Layout] Add ENABLE flag
3602 https://bugs.webkit.org/show_bug.cgi?id=129153
3604 Reviewed by Simon Fraser.
3606 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
3607 autotools build systems. The feature is disabled by default for
3610 * Source/autotools/SetupWebKitFeatures.m4:
3611 * Source/cmake/OptionsEfl.cmake:
3612 * Source/cmake/OptionsGTK.cmake:
3613 * Source/cmake/WebKitFeatures.cmake:
3614 * Source/cmakeconfig.h.cmake:
3616 2014-02-24 Martin Robinson <mrobinson@igalia.com>
3618 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
3619 https://bugs.webkit.org/show_bug.cgi?id=128417
3621 Reviewed by Carlos Garcia Campos.
3623 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
3624 may one day be used in the webkitdom config file generation.
3626 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3628 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
3629 https://bugs.webkit.org/show_bug.cgi?id=128961
3631 Reviewed by Ryosuke Niwa.
3633 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
3634 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
3635 EFL port needs not to check "uninitialized" build warning as error in order to
3636 adjust the option to EFL port. This patch don't take it as error temporarily.
3638 * Source/cmake/OptionsEfl.cmake:
3639 * Source/cmake/WebKitHelpers.cmake:
3641 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3643 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3644 https://bugs.webkit.org/show_bug.cgi?id=128434
3646 Reviewed by Anders Carlsson.
3648 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3649 port as well as -fno-tree-dce, like it is used in the autotools build.
3651 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3653 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3654 https://bugs.webkit.org/show_bug.cgi?id=128799
3656 Reviewed by Philippe Normand.
3658 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3659 if building with autotools. cmake system has enabled it as default. So I propose
3660 enabling VIDEO_TRACK as well.
3662 * Source/autotools/SetupWebKitFeatures.m4:
3664 2014-02-14 Commit Queue <commit-queue@webkit.org>
3666 Unreviewed, rolling out r164090.
3667 http://trac.webkit.org/changeset/164090
3668 https://bugs.webkit.org/show_bug.cgi?id=128807
3670 It broke the EFL build (Requested by Ossy on #webkit).
3672 * Source/cmake/OptionsCommon.cmake:
3673 * Source/cmake/OptionsEfl.cmake:
3675 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3677 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3678 https://bugs.webkit.org/show_bug.cgi?id=128434
3680 Extend a fix for EFL to all ports that use GCC. Also include further fixes
3681 that were applied only to the autotools build.
3683 Reviewed by Gyuyoung Kim.
3685 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
3686 as -fno-tree-dce, which is necessary for GTK+.
3687 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
3689 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
3691 [GTK][CMake] Generate GObject DOM bindings .symbols files
3692 https://bugs.webkit.org/show_bug.cgi?id=126210
3694 Reviewed by Martin Robinson.
3696 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
3697 for documentation generation.
3699 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3701 [GTK] MEDIA_CONTROLS_SCRIPT support
3702 https://bugs.webkit.org/show_bug.cgi?id=123097
3704 Reviewed by Jer Noble.
3706 Part of the Autotools and CMake structure to build the media
3709 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
3710 controls script by default.
3711 * Source/cmake/OptionsGTK.cmake: Activated the media controls
3713 * Source/cmake/WebKitFeatures.cmake: Created the option to
3714 activate the controls script.
3715 * Source/cmakeconfig.h.cmake: Created the define template the the
3716 media controls script.
3718 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
3720 [GDB] Add .gdbinit to the list of files ignored by Git
3721 https://bugs.webkit.org/show_bug.cgi?id=128455
3723 Reviewed by Anders Carlsson.
3725 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
3726 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
3727 that covers already removed entries.
3729 2014-02-11 Oliver Hunt <oliver@apple.com>
3731 Make it possible to implement JS builtins in JS
3732 https://bugs.webkit.org/show_bug.cgi?id=127887
3734 Reviewed by Michael Saboff.
3737 * Source/cmake/gtest/CMakeLists.txt:
3739 2014-02-12 Ryan Lortie <desrt@desrt.ca>
3741 'ar T' is not portable and breaks the build on FreeBSD
3742 https://bugs.webkit.org/show_bug.cgi?id=128596
3744 Reviewed by Gustavo Noronha Silva.
3746 Create thin archives only if we are using GNU ar.
3748 * Source/autotools/SetupLibtool.m4:
3750 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
3752 Add the CSS_SHAPE_INSIDE to CMake feature list
3753 https://bugs.webkit.org/show_bug.cgi?id=128530
3755 Reviewed by Gyuyoung Kim.
3757 CSS_SHAPE_INSIDE flag was added in r163333,
3758 this patch is adding this flag to CMake feature list.
3760 * Source/cmake/WebKitFeatures.cmake:
3761 * Source/cmakeconfig.h.cmake:
3763 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
3765 [GTK] Enable touch features
3766 https://bugs.webkit.org/show_bug.cgi?id=98931
3768 Reviewed by Carlos Garcia Campos.
3770 * Source/autotools/SetupWebKitFeatures.m4:
3771 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
3773 2014-02-06 Andreas Kling <akling@apple.com>
3775 Remove unused ENABLE(REPAINT_THROTTLING) flag.
3776 <https://webkit.org/b/128329>
3778 Reviewed by Antti Koivisto.
3780 * Source/cmake/WebKitFeatures.cmake:
3781 * Source/cmakeconfig.h.cmake:
3783 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
3785 [iOS] make should build WebKit2
3786 https://bugs.webkit.org/show_bug.cgi?id=128351
3788 Reviewed by Daniel Bates.
3792 2014-02-05 Andreas Kling <akling@apple.com>
3794 Remove ENABLE(DIRECTORY_UPLOAD).
3795 <https://webkit.org/b/128275>
3797 Rubber-stamped by Ryosuke Niwa.
3799 * Source/autotools/SetupWebKitFeatures.m4:
3800 * Source/cmake/WebKitFeatures.cmake:
3802 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
3804 Remove ENABLE(SVG) guards
3805 https://bugs.webkit.org/show_bug.cgi?id=127991
3807 Reviewed by Sam Weinig.
3809 * Source/autotools/FindDependencies.m4:
3810 * Source/autotools/PrintBuildConfiguration.m4:
3811 * Source/autotools/ReadCommandLineArguments.m4:
3812 * Source/autotools/SetupAutomake.m4:
3813 * Source/autotools/SetupWebKitFeatures.m4:
3814 * Source/cmake/OptionsEfl.cmake:
3815 * Source/cmake/OptionsGTK.cmake:
3816 * Source/cmake/WebKitFeatures.cmake:
3817 * Source/cmakeconfig.h.cmake:
3819 2014-02-04 Andreas Kling <akling@apple.com>
3821 Remove <iframe seamless> support.
3822 <https://webkit.org/b/128213>
3824 Rubber-stamped by Antti Koivisto.
3826 * Source/autotools/SetupWebKitFeatures.m4:
3827 * Source/cmake/WebKitFeatures.cmake:
3828 * Source/cmakeconfig.h.cmake:
3830 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
3832 Remove LEGACY_VIEWPORT_ADAPTION
3833 https://bugs.webkit.org/show_bug.cgi?id=128028
3835 Reviewed by Anders Carlsson.
3837 * Source/cmake/WebKitFeatures.cmake:
3838 * Source/cmakeconfig.h.cmake:
3840 2014-01-31 Oliver Hunt <oliver@apple.com>
3842 Rollout r163195 and related patches
3845 * Source/cmake/gtest/CMakeLists.txt:
3847 2014-01-29 Oliver Hunt <oliver@apple.com>
3849 Make it possible to implement JS builtins in JS
3850 https://bugs.webkit.org/show_bug.cgi?id=127887
3852 Reviewed by Michael Saboff.
3856 * Source/cmake/gtest/CMakeLists.txt:
3858 2014-01-30 Martin Robinson <mrobinson@igalia.com>