1 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
3 [CMake] Features list should print dots every other row
4 https://bugs.webkit.org/show_bug.cgi?id=143832
6 Reviewed by Martin Robinson.
8 Discount private options when determining whether to print dots on a given row of the
9 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
10 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
11 wasn't noticed because it only affects the first line, and use of the variable name as a
12 string in a conditional.)
14 * Source/cmake/WebKitFeatures.cmake:
16 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
18 [CMake] Require specifying visibility of WebKit options
19 https://bugs.webkit.org/show_bug.cgi?id=143831
21 Reviewed by Alex Christensen.
23 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
24 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
25 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
26 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
27 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
28 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
29 cross-platform options as PRIVATE.
31 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
33 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
34 https://bugs.webkit.org/show_bug.cgi?id=143935
36 Reviewed by Darin Adler.
38 Some variables aren't defined in these files or unused variables aren't removed. This
39 patch cleans up it as well as fix wrong alphabet order.
41 * Source/cmake/WebKitFeatures.cmake:
42 * Source/cmakeconfig.h.cmake:
44 2015-04-19 Simon Fraser <simon.fraser@apple.com>
46 Restore the WebKit.xcworkspace to the way it was before r182899,
47 which inadvertently added the Source directory and a couple of source
50 * WebKit.xcworkspace/contents.xcworkspacedata:
52 2015-04-16 Basile Clement <basile_clement@apple.com>
54 Extract the allocation profile from JSFunction into a rare object
55 https://bugs.webkit.org/show_bug.cgi?id=143807
57 Reviewed by Filip Pizlo.
59 * WebKit.xcworkspace/contents.xcworkspacedata:
61 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
63 [EFL] Bump LLVM to version 3.6.0 on X86_64
64 https://bugs.webkit.org/show_bug.cgi?id=143604
66 Reviewed by Gyuyoung Kim.
68 * Source/cmake/FindLLVM.cmake: Added version handling.
69 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
71 2015-04-15 Timothy Horton <timothy_horton@apple.com>
73 Custom CSS cursors do not use -webkit-image-set on retina displays
74 https://bugs.webkit.org/show_bug.cgi?id=120783
76 Reviewed by Beth Dakin.
77 Patch by Evan Wallace <evan.exe@gmail.com>.
79 Add a manual test for custom CSS cursors on retina displays.
81 * ManualTests/retina-cursors.html: Added.
83 2015-04-15 Alex Christensen <achristensen@webkit.org>
85 Progress towards CMake on Mac.
86 https://bugs.webkit.org/show_bug.cgi?id=143785
88 Reviewed by Csaba Osztrogonác.
91 * Source/cmake/OptionsMac.cmake:
92 * Source/cmake/WebKitFS.cmake:
94 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
96 Cannot click "Next" button on Google two-factor auth setup page
98 <https://bugs.webkit.org/show_bug.cgi?id=143624>
99 <rdar://problem/19175714>
101 Reviewed by Darin Adler.
103 * ManualTests/button-that-focuses-itself-on-click.html: Added.
105 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
107 [cmake] REGRESSION(182663): It broke feature dependency handling
108 https://bugs.webkit.org/show_bug.cgi?id=143665
110 Reviewed by Csaba Osztrogonác.
112 Don't try to check the value of options before defining the options.
114 * Source/cmake/WebKitFeatures.cmake:
116 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
118 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
119 https://bugs.webkit.org/show_bug.cgi?id=143664
121 Reviewed by Gyuyoung Kim.
123 * Source/cmake/OptionsEfl.cmake:
124 * Source/cmake/OptionsGTK.cmake:
125 * Source/cmake/WebKitFeatures.cmake:
126 * Source/cmakeconfig.h.cmake:
128 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
130 [EFL] Enable Media Source
131 https://bugs.webkit.org/show_bug.cgi?id=143635
133 Reviewed by Csaba Osztrogonác.
135 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
137 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
139 [CMake] Miscellaneous issues in WebKitFeatures.cmake
140 https://bugs.webkit.org/show_bug.cgi?id=143636
142 Reviewed by Martin Robinson.
144 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
145 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
147 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
148 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
150 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
152 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
154 Fix ENABLE_TOUCH_SLIDER so that it can be used
158 * Source/cmake/WebKitFeatures.cmake:
160 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
162 [CMake] Print sorted feature list at the very end of the configure process
163 https://bugs.webkit.org/show_bug.cgi?id=143596
165 Reviewed by Martin Robinson.
167 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
168 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
169 and sort the options before printing. Reorder some code so that features still get
170 propagated to the bindings generators.
172 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
174 [CMake] Options should be marked as advanced by default
175 https://bugs.webkit.org/show_bug.cgi?id=143572
177 Reviewed by Gyuyoung Kim.
179 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
180 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
181 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
182 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
183 option without making it public.
185 * Source/cmake/WebKitFeatures.cmake:
187 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
189 [CMake] Remove unnecessary ENABLE_WEBCORE switch
190 https://bugs.webkit.org/show_bug.cgi?id=143584
192 Reviewed by Csaba Osztrogonác.
194 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
198 * Source/CMakeLists.txt:
199 * Source/cmake/OptionsGTK.cmake:
200 * Source/cmake/WebKitFS.cmake:
202 2015-04-08 Filip Pizlo <fpizlo@apple.com>
204 Unreviewed, revert accidental commit.
208 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
210 Add CMake build system for WinCairo port.
211 https://bugs.webkit.org/show_bug.cgi?id=115944
213 Reviewed by Chris Dumez.
215 * Source/cmake/OptionsWindows.cmake:
216 * Source/cmake/WebKitMacros.cmake:
217 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
219 2015-04-06 Alberto Garcia <berto@igalia.com>
222 https://bugs.webkit.org/show_bug.cgi?id=143453
224 Reviewed by Darin Adler.
226 Add HPPA to the list of supported CPUs.
230 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
232 Unreviewed, kick the GTK bots to fix an incremental build issue.
234 * Source/cmake/OptionsGTK.cmake:
236 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
238 Fix the EFL and GTK build after r182243
239 https://bugs.webkit.org/show_bug.cgi?id=143361
241 Reviewed by Csaba Osztrogonác.
243 * Source/PlatformEfl.cmake: Add a custom command that copies
244 the InspectorBackendCommands.js file into the proper directory
245 under DerivedSources/WebInspectorUI/.
247 2015-04-01 Alex Christensen <achristensen@webkit.org>
249 Progress towards CMake on Windows and Mac.
250 https://bugs.webkit.org/show_bug.cgi?id=143293
252 Reviewed by Filip Pizlo.
255 Set DERIVED_SOURCES_WTF_DIR for Windows.
256 * Source/CMakeLists.txt:
257 Don't compile bmalloc on Windows.
258 * Source/cmake/OptionsCommon.cmake:
259 Use the absolute path of the C preprocessor.
260 * Source/cmake/OptionsWinCairo.cmake:
261 Added needed definitions.
262 * Source/cmake/OptionsWindows.cmake:
263 Set some default values and removed support for old Visual Studio versions before /MP.
264 * Source/cmake/WebKitFS.cmake:
265 Make WTF DerivedSources directory.
266 * Source/cmake/WebKitMacros.cmake:
267 Added ADD_PRECOMPILED_HEADER macro based on
268 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
270 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
272 Use colored diagnostics when building with cmake + ninja + clang
273 https://bugs.webkit.org/show_bug.cgi?id=143297
275 Reviewed by Žan Doberšek.
277 Because that ninja sets subprocess stdout/stderr to a pipe, clang
278 disables colored output.
279 This patch forces clang to use colored diagnostics when we are using
282 * Source/cmake/OptionsCommon.cmake:
284 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
286 [CMake] Update old CMakeList.txt in gtest
287 https://bugs.webkit.org/show_bug.cgi?id=143192
289 Reviewed by Darin Adler.
291 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
292 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
293 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
295 * Source/CMakeLists.txt:
296 * Source/cmake/gtest/CMakeLists.txt: Removed.
298 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
300 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
301 https://bugs.webkit.org/show_bug.cgi?id=143138
303 Reviewed by Csaba Osztrogonác.
305 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
306 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
308 * Source/cmake/OptionsWindows.cmake:
309 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
310 * Source/cmake/WebKitMacros.cmake:
312 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
314 [GStreamer] share GL context in pipeline, part 2
315 https://bugs.webkit.org/show_bug.cgi?id=143049
317 Reviewed by Carlos Garcia Campos.
319 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
320 OpenGL/ES2 is found and GLX/EGL is found too.
322 2015-03-26 Alex Christensen <achristensen@webkit.org>
324 Progress towards CMake on Mac.
325 https://bugs.webkit.org/show_bug.cgi?id=143112
327 Reviewed by Chris Dumez.
329 * Source/cmake/OptionsMac.cmake:
331 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
333 [EFL] Add OpenWebRTC in jhbuild
334 https://bugs.webkit.org/show_bug.cgi?id=142778
336 Reviewed by Gyuyoung Kim.
338 Original patch by Philippe Normand <pnormand@igalia.com>
340 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
341 mediastream build is enabled.
343 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
345 [GTK] Add a configure option to build without Redirected XComposite Window
346 https://bugs.webkit.org/show_bug.cgi?id=142865
348 Reviewed by Žan Doberšek.
350 The Redirected XComposite Window was added to support some
351 features like GtkOverlay, but in cases where we don't need such
352 features, it's more efficient to use the XID of the WebKitWebView
353 window as the native surface handle for the accelerated
354 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
355 that is enabled by default for X11 target when OpenGL is enabled.
357 * Source/cmake/OptionsGTK.cmake:
359 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
361 [GTK] Search for the Wayland dependency when enabling Wayland target
362 https://bugs.webkit.org/show_bug.cgi?id=142876
364 Reviewed by Carlos Garcia Campos.
366 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
367 requirement of either the GTK+ or GDK pkg-config files, so we have to
368 search for it ourselves when WebKitGTK+ has been configured to support
369 the Wayland windowing target.
371 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
373 Unreviewed, kick the GTK bots to regenerate makefile.
374 https://bugs.webkit.org/show_bug.cgi?id=137394
376 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
377 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
379 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
381 Unreviewed, kick the GTK bots to regenerate makefile.
382 https://bugs.webkit.org/show_bug.cgi?id=137394
384 * Source/cmake/OptionsEfl.cmake:
386 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
388 [GTK] Fix inspector userinterface related incremental build issue
389 https://bugs.webkit.org/show_bug.cgi?id=142849
391 Reviewed by Carlos Garcia Campos.
393 * Source/cmake/OptionsGTK.cmake: Revert r181733.
395 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
397 Unreviewed, kick the GTK bots to regenerate makefile.
399 * Source/cmake/OptionsGTK.cmake:
401 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
403 [EFL] Expose JavaScript binding interface through ewk_extension
404 https://bugs.webkit.org/show_bug.cgi?id=142033
406 Reviewed by Gyuyoung Kim.
408 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
410 2015-03-17 Philippe Normand <pnormand@igalia.com>
412 [GTK] basic OpenWebRTC build support
413 https://bugs.webkit.org/show_bug.cgi?id=142393
415 Reviewed by Carlos Garcia Campos.
417 * Source/cmake/FindOpenWebRTC.cmake: Added.
418 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
419 mediastream build is enabled.
421 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
423 [CMake][EFL] Build test tools only for developer mode
424 https://bugs.webkit.org/show_bug.cgi?id=142761
426 Reviewed by Csaba Osztrogonác.
428 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
430 * Source/cmake/OptionsEfl.cmake:
431 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
432 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
433 * Source/cmakeconfig.h.cmake:
435 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
437 Enable ES6 classes by default
438 https://bugs.webkit.org/show_bug.cgi?id=142774
440 Reviewed by Gavin Barraclough.
442 * Source/cmake/WebKitFeatures.cmake:
444 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
446 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
447 https://bugs.webkit.org/show_bug.cgi?id=142722
449 Reviewed by Csaba Osztrogonác.
451 Categorize to define cmake variables, to find necessary packages,
452 use upper case for "glib_conponents" cmake variable name, re-arrange
453 wrong alphabet sorting, and so on.
455 * CMakeLists.txt: Remove WinCE port.
456 * Source/cmake/OptionsEfl.cmake:
458 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
460 [GStreamer] share GL context in pipeline
461 https://bugs.webkit.org/show_bug.cgi?id=142693
463 Reviewed by Philippe Normand.
465 Add search of gstreamer-gl library in the GStreamer installation. If
466 it is found, WTF_USE_GSTREAMER_GL macro is defined.
468 * Source/cmake/FindGStreamer.cmake:
469 * Source/cmake/OptionsGTK.cmake:
471 2015-03-13 Alex Christensen <achristensen@webkit.org>
473 Progress towards CMake on Mac.
474 https://bugs.webkit.org/show_bug.cgi?id=142680
476 Reviewed by Gyuyoung Kim.
479 * Source/PlatformMac.cmake: Added stub.
480 * Source/cmake/OptionsMac.cmake:
481 Change defines to get CMake working.
483 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
485 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
486 https://bugs.webkit.org/show_bug.cgi?id=126688
488 Reviewed by Gustavo Noronha Silva.
490 Add ENABLE_MINIBROWSER option, enabled by default for development
491 builds and disabled for production builds unless explicilty enabled.
493 * Source/cmake/OptionsGTK.cmake:
495 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
497 [GTK] Do not look for child processes in the UI process binary path
498 https://bugs.webkit.org/show_bug.cgi?id=135752
500 Reviewed by Gustavo Noronha Silva.
502 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
503 build for development builds.
505 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
507 [GTK] Add a configure option to build with OpenGL ES 2
508 https://bugs.webkit.org/show_bug.cgi?id=142498
510 Reviewed by Martin Robinson.
512 Add ENABLE_GLES2 option. It's disabled by default, but if passed
513 GLES2 is required and OpenGL is not even searched. Otherwise we
514 search for OpenGL as usual, using it only if present.
516 * Source/cmake/OptionsGTK.cmake:
518 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
520 [cmake] Handle unused parameter warnings as build errors except in WebKit2
521 https://bugs.webkit.org/show_bug.cgi?id=142338
523 Reviewed by Gyuyoung Kim.
525 * Source/cmake/WebKitHelpers.cmake:
527 2015-03-03 Daniel Bates <dabates@apple.com>
529 Convert ManualTests/svg-tooltip.svg to a DRT test
530 https://bugs.webkit.org/show_bug.cgi?id=140480
532 Reviewed by Alex Christensen.
534 * ManualTests/svg-tooltip.svg: Removed.
536 2015-03-02 Debarshi Ray <debarshir@gnome.org>
538 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
539 https://bugs.webkit.org/show_bug.cgi?id=142165
541 Reviewed by Carlos Garcia Campos.
543 * Source/cmake/gtksymbols.filter:
545 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
547 [EFL] Remove unnecessary comment after r179110
548 https://bugs.webkit.org/show_bug.cgi?id=142042
550 Reviewed by Gyuyoung Kim.
552 * Source/cmake/OptionsEfl.cmake:
554 2015-02-23 Tomas Popela <tpopela@redhat.com>
556 [GTK] Fails to compile with cmake 3.2.x
557 https://bugs.webkit.org/show_bug.cgi?id=141796
559 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
560 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
561 added and the build will fail.
563 Reviewed by Martin Robinson.
565 * Source/cmake/OptionsGTK.cmake:
567 2015-02-20 Alexey Proskuryakov <ap@apple.com>
569 Remove svn:keywords property.
571 As far as I can tell, the property had no effect on any of these files, but also,
572 when it has effect it's likely harmful.
574 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
575 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
576 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
577 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
578 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
579 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
580 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
581 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
582 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
583 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
584 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
585 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
586 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
587 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
589 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
591 [CMAKE] Remove CMakeLists.txt in WK1 port
592 https://bugs.webkit.org/show_bug.cgi?id=141617
594 Reviewed by Anders Carlsson.
596 Nobody uses CMake in WK1 port. Remove it.
600 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
602 Unreviewed, remove empty directories.
604 * ManualTests/qt: Removed.
606 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
608 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
609 https://bugs.webkit.org/show_bug.cgi?id=141481
611 Reviewed by Csaba Osztrogonác.
613 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
615 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
617 [EFL][GTK] Use bmalloc instead of tcmalloc
618 https://bugs.webkit.org/show_bug.cgi?id=140162
620 Reviewed by Carlos Garcia Campos.
622 Add bmalloc directory to build list.
624 * CMakeLists.txt: Define BMALLOC_DIR directory.
625 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
627 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
629 [GTK] Add default color chooser implementation using GtkColorChooserDialog
630 https://bugs.webkit.org/show_bug.cgi?id=141392
632 Reviewed by Gustavo Noronha Silva.
634 Enable INPUT_TYPE_COLOR by default for GTK+ port.
636 * Source/cmake/OptionsGTK.cmake:
638 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
640 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
641 https://bugs.webkit.org/show_bug.cgi?id=141328
643 Reviewed by Darin Adler.
645 Added as manual test because it involves a huge grid allocation
646 which is very slow on Debug bots, the only ones capable to trigger
649 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
651 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
653 [Streams API] Implement a barebone ReadableStream interface
654 https://bugs.webkit.org/show_bug.cgi?id=141045
656 Reviewed by Benjamin Poulain.
658 * Source/cmake/WebKitFeatures.cmake:
659 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
661 2015-02-02 Filip Pizlo <fpizlo@apple.com>
663 Revert accidental change in r179490.
667 2015-02-02 Filip Pizlo <fpizlo@apple.com>
669 Unreviewed, revert accidental change to Makefile.shared in r179478
673 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
675 [CMake] Minimum python version should be 2.7.
676 https://bugs.webkit.org/show_bug.cgi?id=140997
678 Reviewed by Csaba Osztrogonác.
682 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
684 Apply feTurbulence spec change to fix zero length vector generation
685 https://bugs.webkit.org/show_bug.cgi?id=140812
687 Reviewed by Darin Adler.
689 Recently a bug with the turbulence algorithm was corrected in the
690 Filter Effects specification.
691 For some seed values this bug allowed zero length vectors to be generated.
692 This resulted in large solid color squares being present in the generated image.
693 The feTurbulence algorithm was updated to reject zero length vectors. This patch
694 applies that change in WebCore.
696 Test: svg/filters/feTurbulence_bad_seeds.html
698 * platform/graphics/filters/FETurbulence.cpp:
699 (WebCore::FETurbulence::initPaint):
700 Added rejection sampling during vector generation to avoid zero length vectors.
702 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
704 [cmake] Remove compiler version calculate cruft
705 https://bugs.webkit.org/show_bug.cgi?id=140885
707 Reviewed by Darin Adler.
709 * Source/cmake/WebKitHelpers.cmake:
711 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
713 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
714 https://bugs.webkit.org/show_bug.cgi?id=140886
716 Reviewed by Žan Doberšek.
718 * Source/cmake/WebKitHelpers.cmake:
720 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
722 [GTK] gtkdoc does not appear in DevHelp
723 https://bugs.webkit.org/show_bug.cgi?id=139369
725 Reviewed by Philippe Normand.
727 Expect the gtkdoc to be generated in folders named with the API version.
729 * Source/PlatformGTK.cmake:
731 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
733 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
734 https://bugs.webkit.org/show_bug.cgi?id=140609
736 Reviewed by Csaba Osztrogonác.
738 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
739 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
740 compilation flags. Those were added after the jsCStack branch merge, but
741 can now be removed since the -ftree-dce issues were fixed in GCC, and
742 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
744 * Source/cmake/OptionsEfl.cmake:
745 * Source/cmake/OptionsGTK.cmake:
747 2015-01-26 Commit Queue <commit-queue@webkit.org>
749 Unreviewed, rolling out r179107.
750 https://bugs.webkit.org/show_bug.cgi?id=140880
752 The GCC in the bots doesn't support the AsyncTask
753 implementation (Requested by KaL on #webkit).
757 "[GTK] Enable IndexedDB"
758 https://bugs.webkit.org/show_bug.cgi?id=98932
759 http://trac.webkit.org/changeset/179107
761 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
763 [GTK] Enable IndexedDB
764 https://bugs.webkit.org/show_bug.cgi?id=98932
766 Reviewed by Žan Doberšek.
768 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
769 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
771 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
773 [GTK] Add initial database process support
774 https://bugs.webkit.org/show_bug.cgi?id=139491
776 Reviewed by Sergio Villar Senin.
778 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
780 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
782 Add a build flag for ES6 class syntax
783 https://bugs.webkit.org/show_bug.cgi?id=140760
785 Reviewed by Michael Saboff.
787 * Source/cmake/WebKitFeatures.cmake:
788 * Source/cmakeconfig.h.cmake:
790 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
792 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
793 https://bugs.webkit.org/show_bug.cgi?id=140049
795 Reviewed by Gyuyoung Kim.
797 * Source/cmake/OptionsCommon.cmake:
799 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
801 Remove ENABLE(INSPECTOR) ifdef guards
802 https://bugs.webkit.org/show_bug.cgi?id=140668
804 Reviewed by Darin Adler.
806 * Source/PlatformEfl.cmake:
807 * Source/cmake/OptionsEfl.cmake:
808 * Source/cmake/OptionsGTK.cmake:
809 * Source/cmake/OptionsMac.cmake:
810 * Source/cmake/WebKitFeatures.cmake:
811 * Source/cmakeconfig.h.cmake:
813 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
815 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
817 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
819 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
821 [CMAKE] Fix cmake warning
822 https://bugs.webkit.org/show_bug.cgi?id=140497
824 Reviewed by Gustavo Noronha Silva.
826 r173155 already tried to fix cmake warning though, the warning is still exist.
827 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
828 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
829 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
830 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
831 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
835 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
837 [GTK] Generate the make dist manifest from a CMake template file
838 https://bugs.webkit.org/show_bug.cgi?id=139387
840 Reviewed by Martin Robinson.
842 Generate manifest.txt from manifest.txt.in. Only expose the dist and
843 distcheck targets for developer builds, as they won't work when
844 building from a tarball because the manifest is not distributed.
846 * Source/PlatformGTK.cmake:
848 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
850 Remove ENABLE(SQL_DATABASE) guards
851 https://bugs.webkit.org/show_bug.cgi?id=140434
853 Reviewed by Darin Adler.
855 * Source/cmake/OptionsMac.cmake:
856 * Source/cmake/WebKitFeatures.cmake:
857 * Source/cmakeconfig.h.cmake:
859 2015-01-11 Sam Weinig <sam@webkit.org>
861 Remove support for SharedWorkers
862 https://bugs.webkit.org/show_bug.cgi?id=140344
864 Reviewed by Anders Carlsson.
866 * Source/cmake/OptionsEfl.cmake:
867 * Source/cmake/OptionsGTK.cmake:
868 * Source/cmake/OptionsMac.cmake:
869 * Source/cmake/WebKitFeatures.cmake:
870 * Source/cmakeconfig.h.cmake:
872 2015-01-10 Dan Bernstein <mitz@apple.com>
874 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
875 https://bugs.webkit.org/show_bug.cgi?id=140339
877 Reviewed by Mark Rowe.
879 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
880 prevents unnecessary rebuilding due to PATH differences.
882 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
884 [GTK][ThreadedCompositor] Add support for threaded compositor.
885 https://bugs.webkit.org/show_bug.cgi?id=118265
887 Reviewed by Martin Robinson.
889 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
890 autotools build systems. The feature is disabled by default.
891 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
892 from the feature flags.
894 * Source/cmake/OptionsEfl.cmake:
895 * Source/cmake/OptionsGTK.cmake:
896 * Source/cmake/WebKitFeatures.cmake:
897 * Source/cmakeconfig.h.cmake:
899 2014-12-23 Alexey Proskuryakov <ap@apple.com>
901 Simplify building with ASan
902 https://bugs.webkit.org/show_bug.cgi?id=139916
904 Reviewed by Mark Rowe.
906 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
908 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
910 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
912 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
914 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
916 Null dereference performing a "TapAndAHalf" gesture in Google search field
918 <https://bugs.webkit.org/show_bug.cgi?id=139506>
919 <rdar://problem/19028828>
921 Reviewed by Darin Adler.
923 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
925 2014-12-10 Dean Jackson <dino@apple.com>
927 Blur filter performance test doesn't provide results
928 https://bugs.webkit.org/show_bug.cgi?id=139462
930 Reviewed by Sam Weinig.
932 This can't currently work under our performance test
933 infrastructure. Move it to a manual test to avoid
934 putting FAILures into the results.
936 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
938 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
940 [GTK][WK2] Add HTML5 Notifications support
941 https://bugs.webkit.org/show_bug.cgi?id=61140
943 Reviewed by Carlos Garcia Campos.
945 * Source/cmake/FindLibNotify.cmake: Added.
946 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
947 libnotify and use it for a default implementation when found.
949 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
951 REGRESSION(r155906): Page content disappears on Tuaw article after loading
952 https://bugs.webkit.org/show_bug.cgi?id=138100
954 Reviewed by Simon Fraser.
956 DRT causes an extra paint which makes it impossible to test this with
959 * ManualTests/float-layer-not-painting.html: Added.
961 2014-12-07 Alberto Garcia <berto@igalia.com>
963 [GTK] WebKit has a new required dependency on GnuTLS
964 https://bugs.webkit.org/show_bug.cgi?id=136158
966 Reviewed by Martin Robinson.
968 Detect if GnuTLS is installed and enable or disable subtle crypto
971 * Source/cmake/OptionsGTK.cmake:
973 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
975 [GTK] Missing API detected in GObject DOM bindings after r176630
976 https://bugs.webkit.org/show_bug.cgi?id=139201
978 Reviewed by Gustavo Noronha Silva.
980 Change GENERATE_BINDINGS macro to receive a list of optional
981 additional dependencies, so that we can add more dependecies
982 without having to change the macro.
984 * Source/cmake/WebKitMacros.cmake:
986 2014-12-05 Simon Fraser <simon.fraser@apple.com>
988 Programmatic scrolling and content changes are not always synchronized
989 https://bugs.webkit.org/show_bug.cgi?id=139245
990 rdar://problem/18833612
992 Reviewed by Anders Carlsson.
994 Manual test that tries to sync layout with programmatic scrolling.
996 * ManualTests/programmatic-scroll-flicker.html: Added.
998 2014-12-04 Alberto Garcia <berto@igalia.com>
1000 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
1001 https://bugs.webkit.org/show_bug.cgi?id=136576
1003 Reviewed by Carlos Garcia Campos.
1005 CMake should complain if Accelerated 2D Canvas is explicitly
1006 enabled but cairo-gl is not found.
1008 * Source/cmake/OptionsGTK.cmake:
1010 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1012 [EFL] Add subtle crypto to the build system
1013 https://bugs.webkit.org/show_bug.cgi?id=138612
1015 Reviewed by Csaba Osztrogonác.
1017 * Source/cmake/OptionsEfl.cmake:
1019 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1021 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
1022 https://bugs.webkit.org/show_bug.cgi?id=139085
1024 Reviewed by Andreas Kling.
1026 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
1027 * Source/cmake/WebKitFeatures.cmake: ditto.
1028 * Source/cmakeconfig.h.cmake: ditto.
1030 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1032 [EFL] Drop support for the EFL 1.7
1033 https://bugs.webkit.org/show_bug.cgi?id=139114
1035 Reviewed by Gyuyoung Kim.
1037 * Source/cmake/EFLHelpers.cmake: Removed.
1038 * Source/cmake/FindEcore.cmake: Removed.
1039 * Source/cmake/FindEdje.cmake: Removed.
1040 * Source/cmake/FindEet.cmake: Removed.
1041 * Source/cmake/FindEeze.cmake: Removed.
1042 * Source/cmake/FindEfreet.cmake: Removed.
1043 * Source/cmake/FindEina.cmake: Removed.
1044 * Source/cmake/FindElementary.cmake: Removed.
1045 * Source/cmake/FindEvas.cmake: Removed.
1046 * Source/cmake/OptionsEfl.cmake:
1048 2014-11-28 Philippe Normand <pnormand@igalia.com>
1050 [CMake] Build failure against GStreamer git master
1051 https://bugs.webkit.org/show_bug.cgi?id=138872
1053 Reviewed by Csaba Osztrogon.
1055 * Source/cmake/FindGStreamer.cmake: Simplified the
1056 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1057 headers lookup, there's no need to do this manually. Also
1058 explicitely check the version specified in GStreamer_FIND_VERSION.
1060 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1062 [EFL] Remove E_Dbus dependency
1063 https://bugs.webkit.org/show_bug.cgi?id=136355
1065 Reviewed by Gyuyoung Kim.
1067 * Source/cmake/FindE_DBus.cmake: Removed.
1068 * Source/cmake/OptionsEfl.cmake:
1070 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1072 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1074 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1076 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1078 [CMake] Use ld.gold if it is available to speedup builds
1079 https://bugs.webkit.org/show_bug.cgi?id=137953
1081 Reviewed by Carlos Garcia Campos.
1083 * Source/cmake/OptionsCommon.cmake:
1085 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
1087 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
1088 https://bugs.webkit.org/show_bug.cgi?id=138840
1090 Reviewed by Csaba Osztrogonác.
1092 * Source/cmake/OptionsCommon.cmake:
1094 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
1096 Remove Source/Platform cruft
1097 https://bugs.webkit.org/show_bug.cgi?id=138658
1099 Reviewed by Anders Carlsson.
1102 * Source/Platform: Removed.
1104 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
1106 Enable Cortex-A53-specific code paths by default if core is detected.
1107 https://bugs.webkit.org/show_bug.cgi?id=138499
1109 Reviewed by Csaba Osztrogonác.
1111 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
1112 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
1115 Since on ARM64/Linux the part number that cpuinfo reports depends on
1116 the core the query is run on, the check is bound to and executed on the
1117 available cores one by one.
1119 * Source/cmake/OptionsCommon.cmake:
1121 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1123 [EFL] Remove unnecessary version check from OptionsEfl.cmake
1124 https://bugs.webkit.org/show_bug.cgi?id=138498
1126 Reviewed by Csaba Osztrogonác.
1128 * Source/cmake/OptionsEfl.cmake:
1130 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1132 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
1133 https://bugs.webkit.org/show_bug.cgi?id=138465
1135 Reviewed by Gyuyoung Kim.
1137 * Source/cmake/OptionsEfl.cmake:
1139 2014-11-03 Dean Jackson <dino@apple.com>
1141 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1142 https://bugs.webkit.org/show_bug.cgi?id=138362
1144 Reviewed by Tim Horton.
1146 Add a new feature define for Level 2 of CSS Filters.
1147 http://dev.w3.org/fxtf/filters-2/
1149 * Source/cmake/OptionsEfl.cmake:
1150 * Source/cmake/OptionsGTK.cmake:
1151 * Source/cmake/OptionsMac.cmake:
1152 * Source/cmake/WebKitFeatures.cmake:
1153 * Source/cmakeconfig.h.cmake:
1155 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1157 Workaround for Cortex-A53 erratum 835769
1158 https://bugs.webkit.org/show_bug.cgi?id=138315
1160 Reviewed by Filip Pizlo.
1162 This patch introduces CMake variable and preprocessor macro
1163 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1164 code paths, if set true.
1166 * Source/cmake/OptionsCommon.cmake:
1167 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1169 * Source/cmakeconfig.h.cmake:
1170 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1172 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1174 [GTK] Fix the build of FTL JIT
1175 https://bugs.webkit.org/show_bug.cgi?id=138298
1177 Reviewed by Carlos Garcia Campos.
1179 * Source/cmake/OptionsGTK.cmake:
1180 Remove the need for the LIBCXXABI package.
1182 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1184 REGRESSION(CMake): Make it possible to build without introspection
1185 https://bugs.webkit.org/show_bug.cgi?id=138006
1187 Reviewed by Philippe Normand.
1189 Add ENABLE_INTROSPECTION option.
1191 * Source/PlatformGTK.cmake: Dot not add gir global target if
1192 introspection is disabled.
1193 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1194 introspection is disabled.
1196 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1198 [GTK] Support script message handlers WebKitUserContentManager
1199 https://bugs.webkit.org/show_bug.cgi?id=133730
1201 Reviewed by Carlos Garcia Campos.
1203 Support user script message handlers in WebKitUserContentManager.
1204 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1205 an option is added to the CMake build files. The option is disabled
1206 globally by default, and the WebKitGTK port enables it. On the API
1207 level, two new methods to register and unregister names are provided
1208 in the "window.webkit" namespace, and on message reception the
1209 "WebKitUserContentManager::script-message-received" signal is
1210 emitted, using the registered names as signal detail.
1212 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1213 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1214 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1215 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1217 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1219 [GTK] Bump libsoup's minimum version to 2.42.0.
1220 https://bugs.webkit.org/show_bug.cgi?id=138086
1222 Reviewed by Martin Robinson.
1224 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1225 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1226 the minimum version required to build the port these days.
1228 In addition, since the autotools build system required 2.42.0 before
1229 being retired, require the same version here. Version 2.42.0 was also
1231 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1233 * Source/cmake/OptionsGTK.cmake:
1235 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1237 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1238 https://bugs.webkit.org/show_bug.cgi?id=138132
1240 Reviewed by Csaba Osztrogonác.
1242 * Source/cmake/OptionsEfl.cmake:
1244 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1246 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1248 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1250 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1252 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1253 https://bugs.webkit.org/show_bug.cgi?id=137946
1255 Reviewed by Gyuyoung Kim.
1257 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1259 * Source/cmake/OptionsEfl.cmake:
1261 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1263 Fix FTL Native Inlining for EFL
1264 https://bugs.webkit.org/show_bug.cgi?id=137774
1266 Reviewed by Michael Saboff.
1268 Updated CMake for FTL Native Inlining.
1271 * Source/cmake/FindClang.cmake: Added.
1272 * Source/cmake/OptionsEfl.cmake:
1273 * Source/cmakeconfig.h.cmake:
1275 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1277 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1278 https://bugs.webkit.org/show_bug.cgi?id=137748
1280 Reviewed by Brian Burg.
1282 * Source/PlatformEfl.cmake:
1284 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1286 [GTK] Add initial gestures support
1287 https://bugs.webkit.org/show_bug.cgi?id=137812
1289 Reviewed by Sergio Villar Senin.
1291 Check if the GTK+ version supports gestures or not.
1293 * Source/cmake/FindGTK3.cmake:
1294 * Source/cmake/OptionsGTK.cmake:
1296 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1298 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1299 https://bugs.webkit.org/show_bug.cgi?id=137781
1301 Reviewed by Martin Robinson.
1303 We used to enable smooth scrolling unconditionally in autotools
1304 (via WebKitFeatures.m4), but since the switch to CMake it's
1305 unconditionally disabled, so changing the setting doesn't have any
1308 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1310 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1312 Removing CUSTOM_PROTOCOLS guard
1313 https://bugs.webkit.org/show_bug.cgi?id=137741
1315 Reviewed by Benjamin Poulain.
1317 * Source/cmake/OptionsEfl.cmake:
1319 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1321 [EFL] Enable WebP support.
1322 https://bugs.webkit.org/show_bug.cgi?id=136156
1324 Reviewed by Gyuyoung Kim.
1326 Add WebP package finding rule.
1328 * Source/cmake/OptionsEfl.cmake:
1330 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1332 [EFL] Enable custom URI schemes with CustomProtocols
1333 https://bugs.webkit.org/show_bug.cgi?id=128177
1335 Reviewed by Gyuyoung Kim.
1337 Fixing ewk_context_url_scheme_register() ewebkit2 API
1338 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1340 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1342 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1344 Bump version to 2.7.0
1345 https://bugs.webkit.org/show_bug.cgi?id=137301
1347 Rubber-stamped by Carlos Garcia Campos.
1349 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1351 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1353 [EFL] Rename TEST_THEME_DIR macro
1354 https://bugs.webkit.org/show_bug.cgi?id=137244
1356 Reviewed by Csaba Osztrogonác.
1358 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1360 2014-09-27 Dan Bernstein <mitz@apple.com>
1362 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1363 https://bugs.webkit.org/show_bug.cgi?id=137053
1365 Reviewed by Mark Rowe.
1367 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1368 In the build pre-action, pass the --wksi and --llvm options to
1369 copy-webkitlibraries-to-product-directory.
1370 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1372 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1374 [GTK] Enable CSS_IMAGE_SET in production builds
1375 https://bugs.webkit.org/show_bug.cgi?id=137142
1377 Reviewed by Alejandro G. Castro.
1379 This is required by the inspector to show some of the icons that
1380 has a HiDPI variant.
1382 * Source/cmake/OptionsGTK.cmake:
1384 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1386 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1387 https://bugs.webkit.org/show_bug.cgi?id=136377
1389 Reviewed by Philippe Normand.
1391 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1392 for CMake versions less than 3.
1394 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1396 Remove WinCE port from trunk
1397 https://bugs.webkit.org/show_bug.cgi?id=136951
1399 Reviewed by Alex Christensen.
1401 * Source/cmake/OptionsWinCE.cmake: Removed.
1402 * Source/cmake/WebKitPackaging.cmake:
1404 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1406 [EFL][GTK] Remove WebKit1 related codes
1407 https://bugs.webkit.org/show_bug.cgi?id=136853
1409 Reviewed by Csaba Osztrogonác.
1411 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1414 * Source/PlatformGTK.cmake:
1416 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1419 https://bugs.webkit.org/show_bug.cgi?id=136820
1421 Reviewed by Csaba Osztrogonác.
1423 * Source/cmake/FindICU.cmake:
1425 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1427 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1428 https://bugs.webkit.org/show_bug.cgi?id=136814
1430 Reviewed by Philippe Normand.
1432 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1433 We bundle the wayland-egl dependency with wayland-client and wayland-server
1434 and store the resulting variables with the WAYLAND_ prefix. Because of this
1435 this line wasn't exporting anything useful.
1437 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1439 URTBF after r173574.
1441 * Source/cmake/WebKitMacros.cmake:
1443 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1445 [JavaScriptCore] Fix FTL on platform EFL.
1446 https://bugs.webkit.org/show_bug.cgi?id=133571
1448 Reviewed by Filip Pizlo.
1452 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1453 * Source/cmake/OptionsEfl.cmake:
1455 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1458 https://bugs.webkit.org/show_bug.cgi?id=136571
1460 Reviewed by Darin Adler.
1462 * Source/cmake/OptionsEfl.cmake:
1463 * Source/cmake/OptionsGTK.cmake:
1464 * Source/cmake/OptionsMac.cmake:
1465 * Source/cmake/WebKitFeatures.cmake:
1466 * Source/cmakeconfig.h.cmake:
1468 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1470 Remove CSS_FILTERS flag
1471 https://bugs.webkit.org/show_bug.cgi?id=136529
1473 Reviewed by Dirk Schulze.
1475 * Source/cmake/OptionsEfl.cmake:
1476 * Source/cmake/OptionsGTK.cmake:
1477 * Source/cmake/OptionsMac.cmake:
1478 * Source/cmake/WebKitFeatures.cmake:
1479 * Source/cmakeconfig.h.cmake:
1481 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1483 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1484 https://bugs.webkit.org/show_bug.cgi?id=136194
1486 Reviewed by Csaba Osztrogonác.
1488 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1492 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1494 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1495 https://bugs.webkit.org/show_bug.cgi?id=135560
1497 Reviewed by Gyuyoung Kim.
1499 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1501 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1503 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1504 https://bugs.webkit.org/show_bug.cgi?id=136343
1506 Reviewed by David Kilzer.
1508 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1510 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1511 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1513 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1515 [EFL] Share fast/speechsynthesis/ with other ports
1516 https://bugs.webkit.org/show_bug.cgi?id=136224
1518 Reviewed by Chris Fleizach.
1520 Enable WebSpeech for EFL.
1522 * Source/cmake/OptionsEfl.cmake:
1524 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1526 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1527 https://bugs.webkit.org/show_bug.cgi?id=136127
1529 Reviewed by Gyuyoung Kim.
1531 Add build support for espeak.
1533 * Source/cmake/FindEspeak.cmake: Added.
1534 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1536 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1538 [EFL] Build break using clang
1539 https://bugs.webkit.org/show_bug.cgi?id=136245
1541 Reviewed by Gyuyoung Kim.
1543 * Source/cmake/OptionsEfl.cmake:
1544 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1545 Some warnings are from system libraries.
1547 2014-08-25 Alberto Garcia <berto@igalia.com>
1549 [GTK] Unify webkitgtk and webkit2gtk directories
1550 https://bugs.webkit.org/show_bug.cgi?id=136209
1552 Reviewed by Carlos Garcia Campos.
1554 Use webkit2gtk-X.X both for the process binaries and the injected
1557 * Source/cmake/OptionsGTK.cmake:
1559 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1561 [EFL] Move Efl specific code from Source/CMakeLists.txt
1562 https://bugs.webkit.org/show_bug.cgi?id=136206
1564 Reviewed by Gyuyoung Kim.
1566 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1567 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1569 * Source/CMakeLists.txt:
1570 * Source/cmake/OptionsEfl.cmake:
1572 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1574 [EFL] Introduce DEVELOPER_MODE
1575 https://bugs.webkit.org/show_bug.cgi?id=135884
1577 Reviewed by Gyuyoung Kim.
1579 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1580 instead of SHARED_CORE.
1581 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1582 from release binary.
1584 * Source/cmake/OptionsEfl.cmake:
1585 * Source/cmake/WebKitHelpers.cmake:
1586 Moved fvisibility=hidden to OptionsEfl.cmake
1588 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1590 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1591 https://bugs.webkit.org/show_bug.cgi?id=136110
1593 Reviewed by Gyuyoung Kim.
1595 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1597 * Source/cmake/OptionsEfl.cmake:
1599 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1601 [EFL] Apply eflsymbols.filter to WebKit2
1602 https://bugs.webkit.org/show_bug.cgi?id=136148
1604 Reviewed by Csaba Osztrogonác.
1606 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1607 in the eflsymbols.filter.
1609 * Source/cmake/OptionsEfl.cmake:
1610 * Source/cmake/eflsymbols.filter:
1612 2014-08-21 Zalan Bujtas <zalan@apple.com>
1614 Enable SATURATED_LAYOUT_ARITHMETIC.
1615 https://bugs.webkit.org/show_bug.cgi?id=136106
1617 Reviewed by Simon Fraser.
1619 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1620 (No measurable performance regression on Mac.)
1622 * Source/cmake/OptionsMac.cmake:
1623 * Source/cmake/WebKitFeatures.cmake:
1624 * Source/cmakeconfig.h.cmake:
1626 2014-08-19 Zalan Bujtas <zalan@apple.com>
1628 Remove ENABLE(SUBPIXEL_LAYOUT).
1629 https://bugs.webkit.org/show_bug.cgi?id=136077
1631 Reviewed by Simon Fraser.
1633 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
1635 * Source/cmake/OptionsEfl.cmake:
1636 * Source/cmake/OptionsGTK.cmake:
1637 * Source/cmake/OptionsMac.cmake:
1638 * Source/cmake/WebKitFeatures.cmake:
1639 * Source/cmakeconfig.h.cmake:
1641 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
1643 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1644 https://bugs.webkit.org/show_bug.cgi?id=135980
1646 Reviewed by Martin Robinson.
1648 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1649 overrides any other disabled optimization that was prepended to these
1650 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1651 lists first in the final list of compilation flags.
1653 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1654 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1656 * Source/cmake/OptionsCommon.cmake:
1657 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1658 * Source/cmake/OptionsGTK.cmake:
1660 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1662 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1664 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1666 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1668 [GTK] Disable memory sampler on non-Linux system
1669 https://bugs.webkit.org/show_bug.cgi?id=134483
1671 Reviewed by Philippe Normand.
1673 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1674 Linux because it uses many Linux-specific features, so we should disable
1675 memory sampler on other systems by default.
1677 * Source/cmake/OptionsGTK.cmake:
1679 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1681 [GTK] HTML API documentation should also be installed versioned
1682 https://bugs.webkit.org/show_bug.cgi?id=135970
1684 Reviewed by Philippe Normand.
1686 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1689 2014-08-14 Tomas Popela <tpopela@redhat.com>
1691 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1692 https://bugs.webkit.org/show_bug.cgi?id=135937
1694 Reviewed by Carlos Garcia Campos.
1698 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1700 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1701 https://bugs.webkit.org/show_bug.cgi?id=135934
1703 Reviewed by Gustavo Noronha Silva.
1705 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1706 The gir files should installed in $datadir/gir-1.0/ together with all other
1707 gir files. We don't need to install introspection files in a versioned
1708 directory because their filenames already contain the binary version. But before
1709 r171598, the files were only installed to the right directory if the
1710 gobject-instrospection pkg-config file was in the same prefix than the one we
1711 wanted to install, because the gir and typelibs directories were extracted from
1712 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1713 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1714 like we do in the autotools build.
1716 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1717 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1718 * Source/cmake/OptionsGTK.cmake: Define
1719 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1721 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1723 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1724 https://bugs.webkit.org/show_bug.cgi?id=135836
1726 Reviewed by Philippe Normand.
1728 * Source/PlatformGTK.cmake: Add install command to also install
1729 the GObject DOM bindings API docs.
1731 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1733 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1734 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1735 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1736 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1739 * Source/cmake/OptionsCommon.cmake:
1741 2014-08-13 Alex Christensen <achristensen@webkit.org>
1743 Progress towards CMake on Mac.
1744 https://bugs.webkit.org/show_bug.cgi?id=135819
1746 Reviewed by Laszlo Gombos.
1748 * Source/cmake/OptionsMac.cmake:
1749 Disable some more features temporarily to get CMake working.
1750 * Source/cmake/WebKitMacros.cmake:
1751 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1753 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1755 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1756 https://bugs.webkit.org/show_bug.cgi?id=135798
1758 Reviewed by Philippe Normand.
1760 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1762 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1763 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1764 https://bugs.webkit.org/show_bug.cgi?id=133317
1766 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1768 Reviewed by Philippe Normand.
1770 No new tests since no new functionality has been added.
1772 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1774 2014-08-11 Commit Queue <commit-queue@webkit.org>
1776 Unreviewed, rolling out r172393.
1777 https://bugs.webkit.org/show_bug.cgi?id=135796
1779 discussion needed about GnuTLS version bump on the bots
1780 (Requested by philn on #webkit).
1784 https://bugs.webkit.org/show_bug.cgi?id=133317
1785 http://trac.webkit.org/changeset/172393
1787 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1788 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1789 https://bugs.webkit.org/show_bug.cgi?id=133317
1791 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1793 Reviewed by Philippe Normand.
1795 No new tests since no new functionality has been added.
1797 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1799 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1801 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1802 https://bugs.webkit.org/show_bug.cgi?id=133316
1804 Reviewed by Philippe Normand.
1806 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1807 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1808 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1810 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1812 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1814 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1816 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1818 [GTK] REGRESSION(r166239): The ld version script is not being used
1819 https://bugs.webkit.org/show_bug.cgi?id=135694
1821 Reviewed by Martin Robinson.
1823 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1824 it as gtksymbols.filter. Also updated it, since some of the symbols
1825 exported were renamed.
1827 * Source/cmake/OptionsGTK.cmake:
1828 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1830 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1832 [GTK] Child processes should be installed in a versioned directory
1833 https://bugs.webkit.org/show_bug.cgi?id=135754
1835 Reviewed by Gustavo Noronha Silva.
1837 Define LIBEXEC_INSTALL_DIR as
1838 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1839 so that the child processes are installed in $libexec/webkitgtk-4.0.
1840 This makes it possible to install 2.6 in parallel to older versions.
1842 * Source/cmake/OptionsGTK.cmake:
1844 2014-08-08 Alex Christensen <achristensen@webkit.org>
1846 Progress towards using CMake on Mac.
1847 https://bugs.webkit.org/show_bug.cgi?id=135662
1849 Reviewed by Laszlo Gombos.
1852 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1853 * Source/cmake/WebKitFeatures.cmake:
1854 * Source/cmakeconfig.h.cmake:
1855 Added features that are needed by the Mac port.
1856 * Source/cmake/OptionsMac.cmake:
1857 Enable CSS_IMAGE_SET based on FeatureDefines.h.
1858 Disable the FTL with CMake for now.
1859 * Source/cmake/OptionsEFL.cmake:
1860 * Source/cmake/OptionsGTK.cmake:
1861 Enable subpixel layout to not conflict with FeatureDefines.h
1863 2014-08-08 Simon Fraser <simon.fraser@apple.com>
1865 Undo some erroneous changes to the Xcode scheme files from r172259.
1867 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1868 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1870 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
1872 [CMake] Drop the required version of CMake down to 2.8.8
1873 https://bugs.webkit.org/show_bug.cgi?id=135713
1875 Reviewed by Alex Christensen.
1877 * CMakeLists.txt: Require CMake 2.8.8.
1879 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
1881 Get rid of INPUT_SPEECH
1882 https://bugs.webkit.org/show_bug.cgi?id=135672
1884 Reviewed by Andreas Kling.
1886 * Source/cmake/OptionsMac.cmake:
1887 * Source/cmake/WebKitFeatures.cmake:
1888 * Source/cmakeconfig.h.cmake:
1890 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
1892 [GTK] Disable IndexedDB
1893 https://bugs.webkit.org/show_bug.cgi?id=135692
1895 Reviewed by Carlos Garcia Campos.
1897 * Source/cmake/OptionsGTK.cmake:
1899 2014-08-06 Dean Jackson <dino@apple.com>
1901 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
1902 https://bugs.webkit.org/show_bug.cgi?id=135675
1904 Reviewed by Sam Weinig.
1906 * Source/cmake/OptionsGTK.cmake:
1907 * Source/cmake/OptionsMac.cmake:
1908 * Source/cmake/WebKitFeatures.cmake:
1909 * Source/cmakeconfig.h.cmake:
1911 2014-08-06 David Farler <dfarler@apple.com>
1913 Unreviewed build fix: Make includes semicolon in assignment.
1915 * Makefile.shared: Remove a ;
1917 2014-08-06 David Farler <dfarler@apple.com>
1919 Set DSYMUTIL_NUM_THREADS to the number of logical cores
1920 https://bugs.webkit.org/show_bug.cgi?id=135655
1922 Reviewed by Mark Rowe.
1924 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
1926 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1928 [GTK] Be able to disable gtk2 dependency
1929 https://bugs.webkit.org/show_bug.cgi?id=135505
1931 Reviewed by Gustavo Noronha Silva.
1933 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
1934 required when it's enabled. It's enabled by default.
1936 * Source/cmake/OptionsGTK.cmake:
1938 2014-08-05 Alex Christensen <achristensen@webkit.org>
1941 https://bugs.webkit.org/show_bug.cgi?id=135620
1943 Reviewed by Laszlo Gombos.
1945 * Source/cmake/OptionsMac.cmake:
1946 Use UDIS86 by default on Mac.
1948 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
1950 Add a flag for the CSS Selectors level 4 implementation
1951 https://bugs.webkit.org/show_bug.cgi?id=135535
1953 Reviewed by Andreas Kling.
1955 * Source/cmake/OptionsEfl.cmake:
1956 * Source/cmake/OptionsGTK.cmake:
1957 * Source/cmake/WebKitFeatures.cmake:
1958 * Source/cmakeconfig.h.cmake:
1960 2014-08-04 Alex Christensen <achristensen@webkit.org>
1962 Progress towards CMake on Mac.
1963 https://bugs.webkit.org/show_bug.cgi?id=135528
1965 Reviewed by Gyuyoung Kim.
1967 * Source/cmake/OptionsMac.cmake:
1968 Made options list based on FeatureDefines.xcconfig files.
1970 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1972 [GTK] Windowing target support should reflect the support in the GTK+ dependency
1973 https://bugs.webkit.org/show_bug.cgi?id=134736
1975 Reviewed by Martin Robinson.
1977 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
1978 support the X11 or Wayland windowing targets -- instead, if there's no support
1979 the specific target is disabled, and an error is thrown only if neither of the
1980 backends is enabled at the end..
1981 For now the X11 target remains enabled by default, and the Wayland target is
1982 kept disabled. Once it's possible to have both targets enabled at runtime in
1983 WebKit, the Wayland target will be enabled as well and we'll leave it to the
1984 GTK+ dependency to determine which targets can be enabled.
1986 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1988 [CMake] Add FindWayland.cmake
1989 https://bugs.webkit.org/show_bug.cgi?id=135540
1991 Reviewed by Martin Robinson.
1993 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
1994 dependency. For now bundles the wayland-client, wayland-server and
1995 wayland-egl pkg-config targets into one dependency, but these could
1996 be split in the future if necessary.
1998 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
2000 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
2001 https://bugs.webkit.org/show_bug.cgi?id=135553
2003 Reviewed by Gyuyoung Kim.
2005 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
2006 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
2008 * Source/cmake/OptionsEfl.cmake:
2010 2014-08-01 Bear Travis <betravis@adobe.com>
2012 [Feature Queries] Enable Feature Queries on EFL/GTK
2013 https://bugs.webkit.org/show_bug.cgi?id=134902
2015 Reviewed by Benjamin Poulain.
2017 Enable CSS Feature Queries by default on the EFL and GTK
2020 * Source/cmake/OptionsEfl.cmake:
2021 * Source/cmake/OptionsGTK.cmake:
2023 2014-08-01 Alex Christensen <achristensen@webkit.org>
2025 Progress towards cmake on Windows.
2026 https://bugs.webkit.org/show_bug.cgi?id=135484
2028 Reviewed by Martin Robinson.
2031 Added Mac to list of ports, even though it is not done yet.
2032 Changed minimum bison version to version installed on Macs.
2033 * Source/cmake/OptionsAppleWin.cmake:
2034 Added some definitions.
2035 * Source/cmake/OptionsEfl.cmake:
2036 * Source/cmake/OptionsGTK.cmake:
2037 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2038 * Source/cmake/OptionsMac.cmake: Added blank for now.
2039 * Source/cmake/OptionsWinCairo.cmake:
2040 * Source/cmake/OptionsWindows.cmake:
2041 Added some definitions.
2042 Removed /WX (warnings treated as error while compiling).
2043 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2045 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2047 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2048 https://bugs.webkit.org/show_bug.cgi?id=135501
2050 Reviewed by Gyuyoung Kim.
2052 Use PROJECT_VERSION_MICRO instead.
2054 * Source/cmake/OptionsEfl.cmake:
2055 * Source/cmake/OptionsGTK.cmake:
2056 * Source/cmake/WebKitHelpers.cmake:
2058 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2060 [EFL] Bump ewebkit version to 1.11
2061 https://bugs.webkit.org/show_bug.cgi?id=135487
2063 Reviewed by Gyuyoung Kim.
2065 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2067 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2069 [EFL] Add support for building with Geoclue2.
2070 https://bugs.webkit.org/show_bug.cgi?id=135455
2072 Reviewed by Gyuyoung Kim.
2074 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2077 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2079 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2081 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2083 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2085 [GTK] Bump binary version for 2.6
2086 https://bugs.webkit.org/show_bug.cgi?id=133724
2088 Reviewed by Philippe Normand.
2090 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
2091 update library version numbers.
2093 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
2095 [CMake] Bump the minimum required version
2096 https://bugs.webkit.org/show_bug.cgi?id=135382
2098 Reviewed by Gyuyoung Kim.
2100 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
2101 we introduced usage of target_include_directories().
2103 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
2105 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
2106 https://bugs.webkit.org/show_bug.cgi?id=135376
2108 Reviewed by Gyuyoung Kim.
2110 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
2112 * Source/cmake/OptionsEfl.cmake:
2113 * Source/cmake/OptionsGTK.cmake:
2115 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
2117 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
2118 https://bugs.webkit.org/show_bug.cgi?id=135288
2120 Reviewed by Martin Robinson.
2122 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
2123 datadir to pkgconfig
2124 * Source/cmake/OptionsGTK.cmake: define install directories early
2125 enough to be used in FindGObjectIntrospection.cmake
2127 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
2129 Remove CSS_EXCLUSIONS compile flag and leftover code
2130 https://bugs.webkit.org/show_bug.cgi?id=135175
2132 Reviewed by Zoltan Horvath.
2134 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
2135 stubs. This removes the flag and the useless code.
2137 * Source/cmake/WebKitFeatures.cmake:
2138 * Source/cmakeconfig.h.cmake:
2140 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2142 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2143 https://bugs.webkit.org/show_bug.cgi?id=135114
2145 Fix build with GStreamer 1.4
2147 Reviewed by Philippe Normand.
2149 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2150 gst-mpegts component instead of the unstable 1.3.x verstions.
2152 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2154 [GTK] Simplify make-dist command line arguments
2155 https://bugs.webkit.org/show_bug.cgi?id=134832
2157 Reviewed by Martin Robinson.
2159 * Source/PlatformGTK.cmake: Use --version instead of
2160 --tarball-root when running make-dist.py.
2162 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2164 Add a manual test for r135044
2166 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2168 Rubber-stamped by Andy Estes.
2170 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2172 2014-07-18 Dana Burkart <dburkart@apple.com>
2174 Add a new 'analyze' target to the makefile. This will make use of a new
2175 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2177 https://bugs.webkit.org/show_bug.cgi?id=135057
2178 <rdar://problem/10193187>
2180 Reviewed by David Kilzer.
2186 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2188 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2189 https://bugs.webkit.org/show_bug.cgi?id=134963
2191 Reviewed by Gyuyoung Kim.
2193 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2195 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2197 2014-07-14 Daniel Bates <dabates@apple.com>
2199 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2200 https://bugs.webkit.org/show_bug.cgi?id=134905
2201 <rdar://problem/16602779>
2203 Reviewed by Simon Fraser.
2205 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2206 on the tapped element when processing a touchend as a result of finger pressing and releasing
2207 on the same element that is initially positioned outside the visible content area.
2209 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2211 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2213 [GTK] Enable VIDEO_TRACK by default
2214 https://bugs.webkit.org/show_bug.cgi?id=134801
2216 Reviewed by Philippe Normand.
2218 * Source/cmake/OptionsGTK.cmake:
2220 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2222 [GTK][CMake] Add a 'distcheck' target
2223 https://bugs.webkit.org/show_bug.cgi?id=130675
2225 Reviewed by Gustavo Noronha Silva.
2227 * Source/PlatformGTK.cmake: Add distcheck target.
2229 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2231 [GTK] Use the same default options for production builds that previous stable releases
2232 https://bugs.webkit.org/show_bug.cgi?id=134589
2234 Reviewed by Martin Robinson.
2236 Change the default value of some features to match our stable releases.
2237 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2238 canvas depend on whether cairo-gl is found.
2240 * Source/cmake/FindCairoGL.cmake: Added.
2241 * Source/cmake/OptionsGTK.cmake:
2243 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2245 [EFL] Support Encrypted Media Extensions.
2246 https://bugs.webkit.org/show_bug.cgi?id=134750
2248 Reviewed by Gyuyoung Kim.
2250 Webkit needs to play encrypted media contents when media player
2251 is played by Media source extensions and normal video procedure.
2253 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2255 2014-07-08 Alex Christensen <achristensen@webkit.org>
2257 Steps towards CMake on Windows.
2258 https://bugs.webkit.org/show_bug.cgi?id=134716
2260 Reviewed by Martin Robinson.
2263 Added AppleWin and WinCairo to list of CMake ports.
2264 * Source/cmake/OptionsAppleWin.cmake: Added.
2265 * Source/cmake/OptionsWinCairo.cmake: Added.
2266 * Source/cmake/OptionsWindows.cmake:
2267 Windows needs to use the system malloc. Other options to come.
2269 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2271 [EFL] Support Geolocation
2272 https://bugs.webkit.org/show_bug.cgi?id=134439
2274 Reviewed by Antonio Gomes.
2276 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2278 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2280 Broken build with build-webkit --no-video
2281 https://bugs.webkit.org/show_bug.cgi?id=134587
2283 Reviewed by Darin Adler.
2285 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2287 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2289 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2291 [GTK] The list of features shown by cmake is not accurate
2292 https://bugs.webkit.org/show_bug.cgi?id=134588
2294 Reviewed by Gustavo Noronha Silva.
2296 The problem is that some options might change after the feature
2297 list has been printed.
2299 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2300 setting the default values of features and set WEBGL value
2301 depending on the dependencies, and API_TEST depending on whether
2302 developer mode is enabled or not.
2304 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2306 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2307 https://bugs.webkit.org/show_bug.cgi?id=134578
2309 Reviewed by Gyuyoung Kim.
2311 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2312 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2313 disable related option if it is not ON.
2315 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2316 * Source/cmake/OptionsGTK.cmake: Ditto.
2317 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2319 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2321 [GTK] make dist is broken
2322 https://bugs.webkit.org/show_bug.cgi?id=134542
2324 Reviewed by Martin Robinson.
2326 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2328 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2330 [CMake] Add necessary support for building for the Wayland target
2331 https://bugs.webkit.org/show_bug.cgi?id=134160
2333 Reviewed by Darin Adler.
2335 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2336 is enabled, and that its version matches the version of the generic package. Same
2337 for the gtk+-wayland-3.0 package and the Wayland target.
2338 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2339 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2340 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2341 so they keep building the TestNetscapePlugin target.
2342 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2343 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2344 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2345 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2346 the minimum required version as soon as that target is enabled. Only search for GLX
2347 if the X11 target is enabled.
2349 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2351 Add support for HTMLImageElement's sizes attribute
2352 https://bugs.webkit.org/show_bug.cgi?id=133620
2354 Reviewed by Dean Jackson.
2356 Added an ENABLE_PICTURE_SIZES compile flag.
2358 * Source/cmake/WebKitFeatures.cmake:
2359 * Source/cmakeconfig.h.cmake:
2361 2014-06-26 Daniel Bates <dabates@apple.com>
2363 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2364 https://bugs.webkit.org/show_bug.cgi?id=134309
2365 <rdar://problem/17427385>
2367 Reviewed by Darin Adler.
2369 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2372 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2374 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2376 Remove build guard for progress element
2377 https://bugs.webkit.org/show_bug.cgi?id=134292
2379 Reviewed by Benjamin Poulain.
2381 The build flag is no longer needed as it is always on.
2383 * Source/cmake/WebKitFeatures.cmake:
2384 * Source/cmakeconfig.h.cmake:
2386 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2388 [EFL] Platform support for WebSpeech feature.
2389 https://bugs.webkit.org/show_bug.cgi?id=116438
2391 Reviewed by Csaba Osztrogonác.
2393 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2395 * Source/cmake/OptionsEfl.cmake:
2396 * Source/cmake/WebKitFeatures.cmake:
2398 2014-06-23 Philippe Normand <pnormand@igalia.com>
2400 Unreviewed, GTK build fix after r170266.
2402 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2404 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2406 Disable gamepad feature on EFL and GTK ports by default
2407 https://bugs.webkit.org/show_bug.cgi?id=134169
2409 Reviewed by Brady Eidson.
2411 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
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 Commit Queue <commit-queue@webkit.org>
2430 Unreviewed, rolling out r170244.
2431 https://bugs.webkit.org/show_bug.cgi?id=134157
2433 GTK/EFL bindings generator works differently, making this
2434 patch not work there. Will fix entire patch after a rollout.
2435 (Requested by bradee-oh on #webkit).
2439 "Gamepad API - Deprecate the existing implementation"
2440 https://bugs.webkit.org/show_bug.cgi?id=134108
2441 http://trac.webkit.org/changeset/170244
2443 2014-06-21 Brady Eidson <beidson@apple.com>
2445 Gamepad API - Deprecate the existing implementation
2446 https://bugs.webkit.org/show_bug.cgi?id=134108
2448 Reviewed by Timothy Hatcher.
2450 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2451 -Add the "Deprecated" suffix to some implementation files
2453 * Source/cmake/OptionsEfl.cmake:
2454 * Source/cmake/OptionsGTK.cmake:
2455 * Source/cmake/WebKitFeatures.cmake:
2456 * Source/cmakeconfig.h.cmake:
2458 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2460 Removing PAGE_VISIBILITY_API compile guard.
2461 https://bugs.webkit.org/show_bug.cgi?id=133844
2463 Reviewed by Gavin Barraclough.
2465 * Source/cmake/OptionsEfl.cmake:
2466 * Source/cmake/OptionsGTK.cmake:
2467 * Source/cmake/WebKitFeatures.cmake:
2468 * Source/cmakeconfig.h.cmake:
2470 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2472 [EFL][CMAKE] Disable WebKit1 build as a default
2473 https://bugs.webkit.org/show_bug.cgi?id=134093
2475 Reviewed by Gyuyoung Kim.
2477 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2479 * Source/cmake/OptionsEfl.cmake:
2481 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2483 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2484 https://bugs.webkit.org/show_bug.cgi?id=130389
2486 Reviewed by Mark Lam.
2488 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2489 into !ENABLE(JIT) since they are mutually exclusive.
2491 * Source/cmake/OptionsEfl.cmake:
2492 * Source/cmake/OptionsGTK.cmake:
2493 * Source/cmake/WebKitFeatures.cmake:
2494 * Source/cmakeconfig.h.cmake:
2496 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2498 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2499 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2500 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2501 by the plugin process, but it is searched and utilized separately.
2503 Rubber-stamped by Carlos Garcia Campos.
2505 * Source/cmake/OptionsGTK.cmake:
2507 2014-06-16 Commit Queue <commit-queue@webkit.org>
2509 Unreviewed, rolling out r170003.
2510 https://bugs.webkit.org/show_bug.cgi?id=133938
2512 This patch broke GTK build (Requested by kczech on #webkit).
2516 "[EFL] Platform support for WebSpeech feature."
2517 https://bugs.webkit.org/show_bug.cgi?id=116438
2518 http://trac.webkit.org/changeset/170003
2520 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2522 [EFL] Platform support for WebSpeech feature.
2523 https://bugs.webkit.org/show_bug.cgi?id=116438
2525 Reviewed by Gyuyoung Kim.
2527 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2529 * Source/cmake/OptionsEfl.cmake:
2530 * Source/cmake/WebKitFeatures.cmake:
2532 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2534 [EFL] Remove duplicated compiler flag
2535 https://bugs.webkit.org/show_bug.cgi?id=133838
2537 Reviewed by Anders Carlsson.
2539 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2540 it added to common compiler options. So, it is duplicated.
2542 * Source/cmake/WebKitHelpers.cmake:
2544 2014-06-11 Commit Queue <commit-queue@webkit.org>
2546 Unreviewed, rolling out r169877.
2547 https://bugs.webkit.org/show_bug.cgi?id=133784
2549 rollout wrong build fix approach for EFL port (Requested by
2550 gyuyoung on #webkit).
2554 "Unreviewed, EFL build fix since r169869."
2555 http://trac.webkit.org/changeset/169877
2557 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2559 Unreviewed, EFL build fix since r169869.
2561 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2563 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2565 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2567 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2569 * Source/cmake/WebKitHelpers.cmake:
2571 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2573 [GTK] Make it possible to build with FTL enabled
2574 https://bugs.webkit.org/show_bug.cgi?id=133219
2576 Reviewed by Philippe Normand.
2578 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2580 * Source/cmake/OptionsGTK.cmake:
2582 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2584 [CMake] Clean up FAST_MOBILE_SCROLLING
2585 https://bugs.webkit.org/show_bug.cgi?id=133342
2587 Reviewed by Gyuyoung Kim.
2589 FAST_MOBILE_SCROLLING was removed in r168726.
2591 * Source/cmake/OptionsEfl.cmake:
2592 * Source/cmake/OptionsGTK.cmake:
2593 * Source/cmake/WebKitFeatures.cmake:
2594 * Source/cmakeconfig.h.cmake:
2596 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2599 https://bugs.webkit.org/show_bug.cgi?id=132863
2601 Reviewed by Csaba Osztrogonác.
2603 * Source/cmake/OptionsEfl.cmake:
2604 * Source/cmake/OptionsGTK.cmake:
2605 * Source/cmake/WebKitFeatures.cmake:
2606 * Source/cmakeconfig.h.cmake:
2608 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2610 Allow building CMake based ports with WEB_REPLAY
2611 https://bugs.webkit.org/show_bug.cgi?id=133154
2613 Reviewed by Csaba Osztrogonác.
2615 * Source/cmake/WebKitFeatures.cmake:
2616 * Source/cmakeconfig.h.cmake:
2618 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2620 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2621 https://bugs.webkit.org/show_bug.cgi?id=132907
2623 Reviewed by Gyuyoung Kim.
2625 * Source/cmake/FindLIBCXXABI.cmake: Added.
2626 * Source/cmake/OptionsEfl.cmake:
2628 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2630 [EFL] Turn on ENABLE_CSS_FILTERS
2631 https://bugs.webkit.org/show_bug.cgi?id=133153
2633 Reviewed by Gyuyoung Kim.
2635 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2637 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2639 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2640 https://bugs.webkit.org/show_bug.cgi?id=132819
2642 Reviewed by Carlos Garcia Campos.
2644 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2646 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2647 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2649 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2651 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2653 [CMake] Support building with Debug Fission
2654 https://bugs.webkit.org/show_bug.cgi?id=131177
2656 Reviewed by Philippe Normand.
2658 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2659 of http://gcc.gnu.org/wiki/DebugFission.
2661 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2663 [GTK] Rename translation domain as WebKit2GTK-3.0
2664 https://bugs.webkit.org/show_bug.cgi?id=132953
2666 Reviewed by Gustavo Noronha Silva.
2668 * Source/cmake/OptionsGTK.cmake:
2670 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2672 support for navigator.hardwareConcurrency
2673 https://bugs.webkit.org/show_bug.cgi?id=132588
2675 Reviewed by Filip Pizlo.
2677 * Source/cmake/OptionsEfl.cmake:
2678 * Source/cmake/OptionsGTK.cmake:
2679 * Source/cmake/WebKitFeatures.cmake:
2680 * Source/cmakeconfig.h.cmake:
2682 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2684 Remove CSS_STICKY_POSITION guards
2685 https://bugs.webkit.org/show_bug.cgi?id=132676
2687 Reviewed by Simon Fraser.
2689 * Source/cmake/OptionsEfl.cmake:
2690 * Source/cmake/OptionsGTK.cmake:
2691 * Source/cmake/WebKitFeatures.cmake:
2692 * Source/cmakeconfig.h.cmake:
2694 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2696 Unreviewed. Bump version numbers.
2698 * Source/cmake/OptionsGTK.cmake:
2700 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2702 [GTK][CMake] Unable to do make install
2703 https://bugs.webkit.org/show_bug.cgi?id=130188
2705 Reviewed by Carlos Garcia Campos.
2707 Only try to install the HTML documentation if the build is configured to generate it via
2708 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2709 to keep the HTML documentation directory as an installation source.
2711 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2712 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2713 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2714 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2715 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2717 2014-05-09 Anders Carlsson <andersca@apple.com>
2719 Rename WebKit2.framework to WebKit.framework
2720 https://bugs.webkit.org/show_bug.cgi?id=132743
2721 <rdar://problem/15920046>
2723 Reviewed by Dan Bernstein.
2726 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2728 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2731 2014-05-06 David Kilzer <ddkilzer@apple.com>
2733 Add Makefile targets for copying static libraries (LLVM and WKSI)
2734 <http://webkit.org/b/132619>
2736 Reviewed by Mark Rowe.
2739 (MODULES): Add WebKitLibraries.
2741 2014-05-06 Commit Queue <commit-queue@webkit.org>
2743 Unreviewed, rolling out r168304.
2744 https://bugs.webkit.org/show_bug.cgi?id=132607
2746 Broke the build (Requested by KaL on #webkit).
2750 "[GTK][CMake] Unable to do make install"
2751 https://bugs.webkit.org/show_bug.cgi?id=130188
2752 http://trac.webkit.org/changeset/168304
2754 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2756 [GTK][CMake] Unable to do make install
2757 https://bugs.webkit.org/show_bug.cgi?id=130188
2759 Reviewed by Carlos Garcia Campos.
2761 Only try to install the HTML documentation if the build is configured to generate it via
2762 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2763 to keep the HTML documentation directory as an installation source.
2765 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2766 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2767 never added to the default target, but will be triggered by build-webkit, so that
2768 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2769 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2771 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2773 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2774 https://bugs.webkit.org/show_bug.cgi?id=132525
2776 Reviewed by Martin Robinson.
2778 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2779 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2780 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2782 2014-05-01 David Kilzer <ddkilzer@apple.com>
2784 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2785 <http://webkit.org/b/132432>
2787 Reviewed by Tim Horton.
2789 * Source/cmake/WebKitFeatures.cmake:
2790 * Source/cmakeconfig.h.cmake:
2791 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2793 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2795 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2797 Reviewed by Dan Bernstein/Anders Carlsson.
2799 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2800 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2802 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2804 Let Xcode have its way with the WebKit workspace.
2806 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2807 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2809 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2811 [GTK] Make it easier to run CMake for downstreams
2812 https://bugs.webkit.org/show_bug.cgi?id=132370
2814 Reviewed by Carlos Garcia Campos.
2816 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2818 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2820 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2821 https://bugs.webkit.org/show_bug.cgi?id=132176
2823 Reviewed by Gyuyoung Kim.
2825 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2827 * Source/cmake/OptionsEfl.cmake:
2829 2014-04-22 Alex Christensen <achristensen@webkit.org>
2831 Removed old stdbool and inttypes headers.
2832 https://bugs.webkit.org/show_bug.cgi?id=131966
2834 Reviewed by Brent Fulgham.
2836 * Source/cmake/OptionsWindows.cmake:
2837 * Source/cmake/WebKitPackaging.cmake:
2838 Removed references to os-win32 directory.
2840 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2842 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2844 Rubber-stamped by Carlos Garcia Campos.
2846 * Source/cmake/WebKitFeatures.cmake:
2848 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2850 Empty RenderInline objects should not be line break objects.
2852 https://bugs.webkit.org/show_bug.cgi?id=131861
2853 <rdar://problem/15663617>
2855 Reviewed by David Hyatt.
2857 * ManualTests/empty-inline-as-line-break-position.html: Added.
2858 This issue wouldn't reproduce in WebKitTestRunner.
2860 2014-04-19 Brent Fulgham <bfulgham@apple.com>
2862 Revert unintended workspace change in my last commit.
2864 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
2865 Scheme type back to Debug.
2867 2014-04-18 Philippe Normand <pnormand@igalia.com>
2869 Remove NETWORK_INFO support
2870 https://bugs.webkit.org/show_bug.cgi?id=131841
2872 Reviewed by Gyuyoung Kim.
2874 * Source/cmake/OptionsEfl.cmake:
2875 * Source/cmake/OptionsGTK.cmake:
2876 * Source/cmake/WebKitFeatures.cmake:
2877 * Source/cmakeconfig.h.cmake:
2879 2014-04-17 Darin Adler <darin@apple.com>
2881 Try to fix EFL and GTK builds.
2883 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
2884 * Source/cmake/OptionsGTK.cmake: Ditto.
2885 * Source/cmakeconfig.h.cmake: Ditto.
2887 2014-04-16 Brendan Long <b.long@cablelabs.com>
2889 [GTK][CMAKE] build-webkit doesn't detect when the build fails
2890 https://bugs.webkit.org/show_bug.cgi?id=130148
2892 Reviewed by Martin Robinson.
2894 * 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.
2896 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
2898 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
2899 https://bugs.webkit.org/show_bug.cgi?id=131725
2901 Reviewed by Philippe Normand.
2903 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
2904 instead of GTK_UNIX_PRINTING_FOUND and set the macro
2905 HAVE_GTK_UNIX_PRINTING to 1 when found.
2907 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
2909 Web Replay: memoize nondeterministic attributes of the Navigator interface
2910 https://bugs.webkit.org/show_bug.cgi?id=131340
2912 Reviewed by Timothy Hatcher.
2914 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
2916 2014-04-09 Brendan Long <b.long@cablelabs.com>
2918 [GStreamer] Expose MPEG-TS metadata
2919 https://bugs.webkit.org/show_bug.cgi?id=122001
2921 Reviewed by Eric Carlson.
2923 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
2924 * Source/cmake/OptionsEfl.cmake: Same.
2925 * Source/cmake/OptionsGTK.cmake: Same.
2927 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
2929 Web Replay: memoize nondeterministic attributes of the Screen interface
2930 https://bugs.webkit.org/show_bug.cgi?id=131339
2932 Reviewed by Timothy Hatcher.
2934 * ManualTests/inspector/replay-window-screen.html: Added.
2936 2014-04-08 Martin Robinson <mrobinson@igalia.com>
2938 [GTK] Remove the WebKitGTK+ WebKit 1 code
2939 https://bugs.webkit.org/show_bug.cgi?id=131399
2941 Reviewed by Anders Carlsson.
2943 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
2944 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
2946 2014-04-08 Dan Bernstein <mitz@apple.com>
2948 Added bmalloc to the WebKit workspace.
2949 https://bugs.webkit.org/show_bug.cgi?id=131362
2951 Reviewed by Geoff Garen.
2953 * WebKit.xcworkspace/contents.xcworkspacedata:
2954 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2955 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2957 2014-04-08 Geoffrey Garen <ggaren@apple.com>
2959 Build bmalloc on iOS too
2960 https://bugs.webkit.org/show_bug.cgi?id=131381
2962 Reviewed by Andreas Kling.
2964 * Source/Makefile: Build it.
2966 2014-04-07 Geoffrey Garen <ggaren@apple.com>
2968 Build bmalloc on Mac
2969 https://bugs.webkit.org/show_bug.cgi?id=131333
2971 Reviewed by Mark Rowe.
2974 * WebKitBuild: Added.
2975 * WebKitBuild/Debug: Added.
2977 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
2979 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
2980 https://bugs.webkit.org/show_bug.cgi?id=131257
2982 Reviewed by Gyuyoung Kim.
2984 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
2986 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2988 [GTK] Stop trying to install WebKit1 documentation
2989 https://bugs.webkit.org/show_bug.cgi?id=131278
2991 Reviewed by Martin Robinson.
2993 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
2994 built anymore since r166584. This fixes `make install'.
2996 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
2998 Web Replay: capture and replay wheel events and scroll commands
2999 https://bugs.webkit.org/show_bug.cgi?id=129402
3001 Reviewed by Timothy Hatcher.
3003 * ManualTests/inspector/replay-wheel-events.html: Added.
3005 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3007 [GTK][CMake] Remove FindXt.cmake.
3008 https://bugs.webkit.org/show_bug.cgi?id=131227
3010 Reviewed by Anders Carlsson.
3012 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
3014 * Source/cmake/FindXt.cmake: Removed.
3015 * Source/cmake/OptionsGTK.cmake:
3017 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3019 [EFL] Build error due to changed path of generated js files.
3020 https://bugs.webkit.org/show_bug.cgi?id=131215
3022 Reviewed by Gyuyoung Kim.
3024 r166648 fixed the generation of some .js files on GTK. Due to some
3025 changes in the paths it causes a build error on EFL.
3027 * Source/PlatformEfl.cmake:
3028 Replaced path for two derived source files.
3030 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3032 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
3033 https://bugs.webkit.org/show_bug.cgi?id=131095
3035 Reviewed by Martin Robinson.
3037 One needs to take into account OpenGL's include directory found via
3038 find_package() when looking for glx.h, since if the former is a
3039 non-standard location the latter will also be. If this is not it is
3040 possible that OpenGL is found but GLX support is not properly detected.
3042 * Source/cmake/OptionsGTK.cmake:
3044 2014-04-02 Martin Robinson <mrobinson@igalia.com>
3046 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
3047 https://bugs.webkit.org/show_bug.cgi?id=130343
3049 Reviewed by Gustavo Noronha Silva.
3051 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
3053 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
3055 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3057 [CMake] Drop port check from FindEGL.cmake.
3058 https://bugs.webkit.org/show_bug.cgi?id=131091
3060 Reviewed by Gyuyoung Kim.
3062 There is no reason to mark some variables as advanced only for the
3065 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
3066 as advanced regardless of the port.
3068 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3070 Fix the !ENABLE(BATTERY_STATUS) build
3071 https://bugs.webkit.org/show_bug.cgi?id=130183
3073 Reviewed by Anders Carlsson.
3075 * Source/cmake/OptionsEfl.cmake:
3077 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3079 [CMake][GTK] Do not expand variables twice in if() checks.
3080 https://bugs.webkit.org/show_bug.cgi?id=130964
3082 Reviewed by Martin Robinson.
3084 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
3085 to be checked by the if clause. This is not what we want, and
3086 configuration fails when, say, GLX support wasn't found as the if
3087 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
3089 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
3092 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3094 [GTK] Remove scripts code only applicable to autotools
3095 https://bugs.webkit.org/show_bug.cgi?id=130841
3097 Reviewed by Anders Carlsson.
3099 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
3101 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3103 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
3104 https://bugs.webkit.org/show_bug.cgi?id=130936
3106 Reviewed by Carlos Garcia Campos.
3108 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
3110 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
3112 [GTK] Add support for GTK3 plugins
3113 https://bugs.webkit.org/show_bug.cgi?id=130599
3115 Reviewed by Martin Robinson.
3117 * Source/cmake/OptionsGTK.cmake:
3119 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3121 [EFL] Bump glib version from 2.36 to 2.38
3122 https://bugs.webkit.org/show_bug.cgi?id=130886
3124 Reviewed by Csaba Osztrogonác.
3126 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
3128 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
3130 [CSS Shapes] Remove shape-inside support
3131 https://bugs.webkit.org/show_bug.cgi?id=130698
3133 Reviewed by David Hyatt.
3135 * Source/cmake/WebKitFeatures.cmake:
3136 * Source/cmakeconfig.h.cmake:
3138 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3140 [GTK] Remove the autotools build
3141 https://bugs.webkit.org/show_bug.cgi?id=130717
3143 Reviewed by Anders Carlsson.
3145 * .gitignore: Remove references to autotools files.
3146 * GNUmakefile.am: Removed.
3147 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3148 * Source/autotools/CustomMacros.m4: Removed.
3149 * Source/autotools/FindDependencies.m4: Removed.
3150 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3151 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3152 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3153 * Source/autotools/SetupAutomake.m4: Removed.
3154 * Source/autotools/SetupCompilerFlags.m4: Removed.
3155 * Source/autotools/SetupLibtool.m4: Removed.
3156 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3157 * Source/autotools/Versions.m4: Removed.
3158 * Source/autotools/acinclude.m4: Removed.
3159 * Source/autotools/dolt.m4: Removed.
3160 * Source/autotools/gsettings.m4: Removed.
3161 * Source/cmake/OptionsGTK.cmake:
3162 * autogen.sh: Removed.
3163 * configure.ac: Removed.
3165 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3167 [EFL] Add ARM64 build support
3168 https://bugs.webkit.org/show_bug.cgi?id=130506
3170 Rubber stamped by Gyuyoung Kim.
3172 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3174 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3176 [EFL][WK2] Add NETWORK_PROCESS build option
3177 https://bugs.webkit.org/show_bug.cgi?id=130131
3179 Reviewed by Gyuyoung Kim.
3181 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3184 * Source/cmake/OptionsEfl.cmake:
3186 2014-03-24 Brian Burg <bburg@apple.com>
3188 Web Replay: capture and replay keyboard events
3189 https://bugs.webkit.org/show_bug.cgi?id=130314
3191 Reviewed by Joseph Pecoraro.
3193 * ManualTests/inspector/replay-keyboard-events.html: Added.
3195 2014-03-24 Sangyong Park <sy302.park@gmail.com>
3197 [EFL] Inspector page is not loaded.
3198 https://bugs.webkit.org/show_bug.cgi?id=130661
3200 Reviewed by Gyuyoung Kim.
3202 Inspector page is not loaded, because some javascript files are not installed.
3203 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
3205 * Source/PlatformEfl.cmake:
3207 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3209 [EFL][GTK] Get CMake to find Freetype2 properly
3210 https://bugs.webkit.org/show_bug.cgi?id=130150
3212 Reviewed by Martin Robinson.
3214 Newer versions of CMake are not able to find Freetype2 correctly.
3215 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3216 freetype2 repo, because a completely different version number is found in freetype2.pc.
3218 * Source/cmake/FindFreetype2.cmake: Added.
3219 * Source/cmake/OptionsEfl.cmake:
3220 * Source/cmake/OptionsGTK.cmake:
3222 2014-03-20 Brian Burg <bburg@apple.com>
3224 Web Replay: capture and replay mouse events
3225 https://bugs.webkit.org/show_bug.cgi?id=129395
3227 Reviewed by Joseph Pecoraro.
3229 Create a manual test for capture/replay of mouse events.
3230 Copy over the crypto-md5.js library from SunSpider.
3232 * ManualTests/inspector/replay-mouse-events.html: Added.
3233 * ManualTests/inspector/resources/crypto-md5.js: Added.
3235 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
3237 [GTK][CMake] Add support for building with Clang
3238 https://bugs.webkit.org/show_bug.cgi?id=130260
3240 Reviewed by Martin Robinson.
3242 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
3243 to the list C compiler flags as constructed by CMake.
3244 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
3245 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3246 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3247 -fno-tree-dce should be used only for GCC.
3248 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3249 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3251 2014-03-20 Commit Queue <commit-queue@webkit.org>
3253 Unreviewed, rolling out r165962.
3254 https://bugs.webkit.org/show_bug.cgi?id=130512
3256 It broke the build (Requested by Ossy on #webkit).
3260 "[EFL][GTK] Get CMake to find Freetype2 properly"
3261 https://bugs.webkit.org/show_bug.cgi?id=130150
3262 http://trac.webkit.org/changeset/165962
3264 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3266 [EFL][GTK] Get CMake to find Freetype2 properly
3267 https://bugs.webkit.org/show_bug.cgi?id=130150
3269 Reviewed by Csaba Osztrogonác.
3271 Newer versions of CMake are not able to find Freetype2 correctly.
3272 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3273 freetype2 repo, because a completely different version number is found in freetype2.pc.
3275 * Source/cmake/FindFreetype2.cmake: Added.
3276 * Source/cmake/OptionsEfl.cmake:
3277 * Source/cmake/OptionsGTK.cmake:
3279 2014-03-17 Brendan Long <b.long@cablelabs.com>
3281 [GStreamer] human readable language code for tracks
3282 https://bugs.webkit.org/show_bug.cgi?id=124514
3284 Reviewed by Martin Robinson.
3286 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3287 * Source/cmake/FindGStreamer.cmake: Same.
3288 * Source/cmake/OptionsEfl.cmake: Same.
3289 * Source/cmake/OptionsGTK.cmake: Same.
3291 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3293 [GTK][CMake] Credential storage is not enabled
3294 https://bugs.webkit.org/show_bug.cgi?id=130149
3296 Reviewed by Philippe Normand.
3298 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3299 and look libsecret when it's enabled.
3300 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3302 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3304 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3305 https://bugs.webkit.org/show_bug.cgi?id=130155
3307 Reviewed by Philippe Normand.
3309 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3310 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3311 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3313 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3315 [EFL] Enable TOUCH_SLIDER macro.
3316 https://bugs.webkit.org/show_bug.cgi?id=130186
3318 Reviewed by Gyuyoung Kim.
3320 * Source/cmake/OptionsEfl.cmake:
3322 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3324 [GTK][CMake] Build with -fno-rtti
3325 https://bugs.webkit.org/show_bug.cgi?id=130261
3327 Reviewed by Martin Robinson.
3329 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3330 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3331 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3332 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3333 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3334 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3335 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3337 2014-03-16 Brendan Long <b.long@cablelabs.com>
3339 [GStreamer] CMake doesn't find the include path for gstreamer-base
3340 https://bugs.webkit.org/show_bug.cgi?id=130098
3342 Reviewed by Philippe Normand.
3344 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3346 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3348 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3349 https://bugs.webkit.org/show_bug.cgi?id=130276
3350 <rdar://problem/16266927>
3352 Reviewed by Simon Fraser.
3354 * ManualTests/NPN_Invoke/Info.plist:
3355 * ManualTests/NPN_Invoke/main.c:
3356 * ManualTests/accessibility/resources/AppletTest.java:
3358 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3360 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3361 https://bugs.webkit.org/show_bug.cgi?id=130258
3363 Reviewed by Martin Robinson.
3365 GCC compilers 4.7 and later are supported, so there's no need for disabling
3366 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3368 * Source/cmake/WebKitHelpers.cmake:
3370 2014-03-14 Landry Breuil <landry@openbsd.org>
3372 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3373 https://bugs.webkit.org/show_bug.cgi?id=129966
3375 Reviewed by Andreas Kling.
3377 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3378 * Source/autotools/SetupAutomake.m4:
3380 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3382 [CMake] Failure to link with older installations of WebP
3383 https://bugs.webkit.org/show_bug.cgi?id=130195
3385 Reviewed by Gustavo Noronha Silva.
3387 Fix the issue by using a temporary variable as the output parameter
3388 to check_include_files(), setting WEBP_FOUND accordingly later.
3390 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3391 variable in check_include_files(), as it will lead to misleading
3392 results (will always be FALSE). Use a temporary variable instead
3393 and explicitly set WEBP_FOUND to TRUE later if needed.
3395 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3397 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3398 https://bugs.webkit.org/show_bug.cgi?id=130170
3400 Reviewed by Daniel Bates.
3402 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3403 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3404 fake "TestRunner" generator.
3406 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3408 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3409 https://bugs.webkit.org/show_bug.cgi?id=130014
3411 Reviewed by Martin Robinson.
3413 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3415 * Source/cmake/OptionsGTK.cmake:
3416 * Source/cmakeconfig.h.cmake:
3418 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3420 [GTK][CMAKE] Too verbose build output
3421 https://bugs.webkit.org/show_bug.cgi?id=130076
3423 Reviewed by Carlos Garcia Campos.
3425 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3426 works around an issue where cmake --build doesn't support ninja's pretty printing.
3428 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3430 [GTK] Add support for Geoclue2
3431 https://bugs.webkit.org/show_bug.cgi?id=120185
3433 Reviewed by Carlos Garcia Campos.
3435 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3437 Add support for Geoclue2 using autotools.
3439 * Source/autotools/FindDependencies.m4: Add support for handling
3440 both Geoclue 1.0 and 2.0.
3441 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3442 of geoclue that is being used.
3443 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3444 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3445 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3447 Add support for Geoclue2 using CMake.
3449 * Source/cmake/FindGeoClue2.cmake: Added.
3450 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3451 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3453 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3455 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3456 https://bugs.webkit.org/show_bug.cgi?id=130016
3458 Reviewed by Carlos Garcia Campos.
3460 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3461 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3462 HTML version will still run when building the distribution tarball.
3464 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3466 [GTK] [CMake] Clean up library linking
3467 https://bugs.webkit.org/show_bug.cgi?id=129782
3469 Reviewed by Philippe Normand.
3471 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3472 so that unused symbols are not dropped. This is useful when building up shared libraries
3473 from convenience libraries.
3475 2014-03-08 Landry Breuil <landry@openbsd.org>
3477 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3478 https://bugs.webkit.org/show_bug.cgi?id=129973
3480 Reviewed by Martin Robinson.
3482 * Source/autotools/FindDependencies.m4:
3484 2014-03-06 Anders Carlsson <andersca@apple.com>
3486 Build WebKit2 before building WebKit
3487 https://bugs.webkit.org/show_bug.cgi?id=129831
3488 <rdar://problem/15920020>
3490 Reviewed by Dan Bernstein.
3493 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3494 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3496 2014-03-06 Commit Queue <commit-queue@webkit.org>
3498 Unreviewed, rolling out r165193.
3499 http://trac.webkit.org/changeset/165193
3500 https://bugs.webkit.org/show_bug.cgi?id=129823
3502 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3503 env confuses libtool (Requested by zdobersek on #webkit).
3505 * Source/autotools/SetupCompilerFlags.m4:
3507 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3509 [GTK][Autotools] Default to libc++ when compiling with Clang
3510 https://bugs.webkit.org/show_bug.cgi?id=129798
3512 Reviewed by Anders Carlsson.
3514 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3515 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3516 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3518 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3520 [CMake] Ninja generator builds fail with "Argument list too long"
3521 https://bugs.webkit.org/show_bug.cgi?id=129771
3523 Reviewed by Daniel Bates.
3525 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3526 by forcing the use of response files.
3528 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3530 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3531 https://bugs.webkit.org/show_bug.cgi?id=108330
3533 Reviewed by Martin Robinson.
3535 In order to get non-shared debug builds, this patch applied T option for
3536 thin archives to the flags passed to ar when cmake based ports build on linux.
3537 In addition, applied u option which avoids adding a file twice.
3539 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
3540 * Source/cmake/OptionsEfl.cmake:
3541 Removed error messages for non-shared-core debug builds.
3542 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
3544 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
3546 [GTK] Build the Udis86 disassembler
3547 https://bugs.webkit.org/show_bug.cgi?id=129679
3549 Reviewed by Michael Saboff.
3551 * GNUmakefile.am: Add the Udis86_nosources variable.
3552 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
3554 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3556 [GTK] Simplify the GObject DOM bindings API break check into one step
3557 https://bugs.webkit.org/show_bug.cgi?id=129571
3559 Reviewed by Carlos Garcia Campos.
3561 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
3562 Add the check to 'make check.'
3564 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3566 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
3567 https://bugs.webkit.org/show_bug.cgi?id=129502
3569 Reviewed by Carlos Garcia Campos.
3571 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
3573 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
3575 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
3576 https://bugs.webkit.org/show_bug.cgi?id=129031
3578 Reviewed by Csaba Osztrogonác.
3580 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
3582 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
3584 [GTK] WebKit2WebExtension GIR can't be used in vala
3585 https://bugs.webkit.org/show_bug.cgi?id=127179
3587 Reviewed by Martin Robinson.
3589 Add a different pkg-config file for the web extensions API.
3591 * Source/cmake/OptionsGTK.cmake:
3594 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
3596 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
3597 https://bugs.webkit.org/show_bug.cgi?id=129575
3599 Reviewed by Philippe Normand.
3601 * Source/cmake/OptionsEfl.cmake:
3602 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3603 * Source/cmake/OptionsGTK.cmake:
3604 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3605 * Source/cmake/WebKitFeatures.cmake:
3606 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3607 * Source/cmakeconfig.h.cmake:
3608 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
3610 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3612 Enable support of X-Content-Type-Options: nosniff header for EFL
3613 https://bugs.webkit.org/show_bug.cgi?id=128673
3615 Reviewed by Gyuyoung Kim.
3617 * Source/cmake/OptionsEfl.cmake:
3618 Enabled NOSNIFF feature flag for EFL.
3620 2014-02-27 Koop Mast <kwm@FreeBSD.org>
3622 Fallback on checking for libz manualy if zlib.pc isn't available.
3623 https://bugs.webkit.org/show_bug.cgi?id=127061
3625 Reviewed by Gustavo Noronha Silva.
3627 * Source/autotools/FindDependencies.m4:
3629 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
3631 [CSS Grid Layout] Add ENABLE flag
3632 https://bugs.webkit.org/show_bug.cgi?id=129153
3634 Reviewed by Simon Fraser.
3636 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
3637 autotools build systems. The feature is disabled by default for
3640 * Source/autotools/SetupWebKitFeatures.m4:
3641 * Source/cmake/OptionsEfl.cmake:
3642 * Source/cmake/OptionsGTK.cmake:
3643 * Source/cmake/WebKitFeatures.cmake:
3644 * Source/cmakeconfig.h.cmake:
3646 2014-02-24 Martin Robinson <mrobinson@igalia.com>
3648 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
3649 https://bugs.webkit.org/show_bug.cgi?id=128417
3651 Reviewed by Carlos Garcia Campos.
3653 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
3654 may one day be used in the webkitdom config file generation.
3656 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3658 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
3659 https://bugs.webkit.org/show_bug.cgi?id=128961
3661 Reviewed by Ryosuke Niwa.
3663 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
3664 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
3665 EFL port needs not to check "uninitialized" build warning as error in order to
3666 adjust the option to EFL port. This patch don't take it as error temporarily.
3668 * Source/cmake/OptionsEfl.cmake:
3669 * Source/cmake/WebKitHelpers.cmake:
3671 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3673 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3674 https://bugs.webkit.org/show_bug.cgi?id=128434
3676 Reviewed by Anders Carlsson.
3678 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3679 port as well as -fno-tree-dce, like it is used in the autotools build.
3681 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3683 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3684 https://bugs.webkit.org/show_bug.cgi?id=128799
3686 Reviewed by Philippe Normand.
3688 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3689 if building with autotools. cmake system has enabled it as default. So I propose
3690 enabling VIDEO_TRACK as well.
3692 * Source/autotools/SetupWebKitFeatures.m4:
3694 2014-02-14 Commit Queue <commit-queue@webkit.org>
3696 Unreviewed, rolling out r164090.
3697 http://trac.webkit.org/changeset/164090
3698 https://bugs.webkit.org/show_bug.cgi?id=128807
3700 It broke the EFL build (Requested by Ossy on #webkit).
3702 * Source/cmake/OptionsCommon.cmake:
3703 * Source/cmake/OptionsEfl.cmake:
3705 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3707 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3708 https://bugs.webkit.org/show_bug.cgi?id=128434
3710 Extend a fix for EFL to all ports that use GCC. Also include further fixes
3711 that were applied only to the autotools build.
3713 Reviewed by Gyuyoung Kim.
3715 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
3716 as -fno-tree-dce, which is necessary for GTK+.
3717 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
3719 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
3721 [GTK][CMake] Generate GObject DOM bindings .symbols files
3722 https://bugs.webkit.org/show_bug.cgi?id=126210
3724 Reviewed by Martin Robinson.
3726 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
3727 for documentation generation.
3729 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3731 [GTK] MEDIA_CONTROLS_SCRIPT support
3732 https://bugs.webkit.org/show_bug.cgi?id=123097
3734 Reviewed by Jer Noble.
3736 Part of the Autotools and CMake structure to build the media
3739 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
3740 controls script by default.
3741 * Source/cmake/OptionsGTK.cmake: Activated the media controls
3743 * Source/cmake/WebKitFeatures.cmake: Created the option to
3744 activate the controls script.
3745 * Source/cmakeconfig.h.cmake: Created the define template the the
3746 media controls script.
3748 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
3750 [GDB] Add .gdbinit to the list of files ignored by Git
3751 https://bugs.webkit.org/show_bug.cgi?id=128455
3753 Reviewed by Anders Carlsson.
3755 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
3756 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
3757 that covers already removed entries.
3759 2014-02-11 Oliver Hunt <oliver@apple.com>
3761 Make it possible to implement JS builtins in JS
3762 https://bugs.webkit.org/show_bug.cgi?id=127887
3764 Reviewed by Michael Saboff.
3767 * Source/cmake/gtest/CMakeLists.txt:
3769 2014-02-12 Ryan Lortie <desrt@desrt.ca>
3771 'ar T' is not portable and breaks the build on FreeBSD
3772 https://bugs.webkit.org/show_bug.cgi?id=128596
3774 Reviewed by Gustavo Noronha Silva.
3776 Create thin archives only if we are using GNU ar.
3778 * Source/autotools/SetupLibtool.m4:
3780 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
3782 Add the CSS_SHAPE_INSIDE to CMake feature list
3783 https://bugs.webkit.org/show_bug.cgi?id=128530
3785 Reviewed by Gyuyoung Kim.
3787 CSS_SHAPE_INSIDE flag was added in r163333,
3788 this patch is adding this flag to CMake feature list.
3790 * Source/cmake/WebKitFeatures.cmake:
3791 * Source/cmakeconfig.h.cmake:
3793 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
3795 [GTK] Enable touch features
3796 https://bugs.webkit.org/show_bug.cgi?id=98931
3798 Reviewed by Carlos Garcia Campos.
3800 * Source/autotools/SetupWebKitFeatures.m4:
3801 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
3803 2014-02-06 Andreas Kling <akling@apple.com>
3805 Remove unused ENABLE(REPAINT_THROTTLING) flag.
3806 <https://webkit.org/b/128329>
3808 Reviewed by Antti Koivisto.
3810 * Source/cmake/WebKitFeatures.cmake:
3811 * Source/cmakeconfig.h.cmake:
3813 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
3815 [iOS] make should build WebKit2
3816 https://bugs.webkit.org/show_bug.cgi?id=128351
3818 Reviewed by Daniel Bates.
3822 2014-02-05 Andreas Kling <akling@apple.com>
3824 Remove ENABLE(DIRECTORY_UPLOAD).
3825 <https://webkit.org/b/128275>
3827 Rubber-stamped by Ryosuke Niwa.
3829 * Source/autotools/SetupWebKitFeatures.m4:
3830 * Source/cmake/WebKitFeatures.cmake:
3832 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
3834 Remove ENABLE(SVG) guards
3835 https://bugs.webkit.org/show_bug.cgi?id=127991
3837 Reviewed by Sam Weinig.
3839 * Source/autotools/FindDependencies.m4:
3840 * Source/autotools/PrintBuildConfiguration.m4:
3841 * Source/autotools/ReadCommandLineArguments.m4:
3842 * Source/autotools/SetupAutomake.m4:
3843 * Source/autotools/SetupWebKitFeatures.m4:
3844 * Source/cmake/OptionsEfl.cmake:
3845 * Source/cmake/OptionsGTK.cmake:
3846 * Source/cmake/WebKitFeatures.cmake:
3847 * Source/cmakeconfig.h.cmake:
3849 2014-02-04 Andreas Kling <akling@apple.com>
3851 Remove <iframe seamless> support.
3852 <https://webkit.org/b/128213>
3854 Rubber-stamped by Antti Koivisto.
3856 * Source/autotools/SetupWebKitFeatures.m4:
3857 * Source/cmake/WebKitFeatures.cmake:
3858 * Source/cmakeconfig.h.cmake:
3860 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
3862 Remove LEGACY_VIEWPORT_ADAPTION
3863 https://bugs.webkit.org/show_bug.cgi?id=128028
3865 Reviewed by Anders Carlsson.
3867 * Source/cmake/WebKitFeatures.cmake:
3868 * Source/cmakeconfig.h.cmake:
3870 2014-01-31 Oliver Hunt <oliver@apple.com>
3872 Rollout r163195 and related patches
3875 * Source/cmake/gtest/CMakeLists.txt:
3877 2014-01-29 Oliver Hunt <oliver@apple.com>
3879 Make it possible to implement JS builtins in JS
3880 https://bugs.webkit.org/show_bug.cgi?id=127887
3882 Reviewed by Michael Saboff.
3886 * Source/cmake/gtest/CMakeLists.txt:
3888 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3890 [GTK] [CMake] Add support for building against GTK+ 2
3891 https://bugs.webkit.org/show_bug.cgi?id=127959
3893 Reviewed by Anders Carlsson.
3895 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
3896 library API version. When using GTK 2 do not build WebKit 2.
3898 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3900 [GTK] [CMake] Add a "make dist" target
3901 https://bugs.webkit.org/show_bug.cgi?id=116378
3903 Reviewed by Gustavo Noronha Silva.
3905 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
3906 script and then turning the tarfile into a LZMA compressed file.
3908 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
3910 [GTK] Only disable -ftree-dce optimization when compiling with GCC
3911 https://bugs.webkit.org/show_bug.cgi?id=127911
3913 Reviewed by Carlos Garcia Campos.
3915 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
3916 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
3917 at the moment, but is added for the sake of completeness.
3919 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
3921 [EFL] Fix the regression caused by the jsCStack branch merge
3922 https://bugs.webkit.org/show_bug.cgi?id=127898
3924 Reviewed by Zoltan Herczeg.
3926 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
3928 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3930 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
3931 https://bugs.webkit.org/show_bug.cgi?id=127845
3933 Reviewed by Joseph Pecoraro.
3935 * Source/autotools/SetupWebKitFeatures.m4:
3937 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3939 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
3940 https://bugs.webkit.org/show_bug.cgi?id=127840
3942 Reviewed by Mark Lam.
3944 * Source/cmake/WebKitFeatures.cmake:
3945 * Source/cmakeconfig.h.cmake:
3947 2014-01-25 Darin Adler <darin@apple.com>
3949 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
3950 https://bugs.webkit.org/show_bug.cgi?id=127623
3952 Reviewed by Anders Carlsson.
3954 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
3955 * Source/cmake/OptionsGTK.cmake: Ditto.
3956 * Source/cmake/OptionsWinCE.cmake: Ditto.
3958 2014-01-23 Max Vujovic <mvujovic@adobe.com>
3960 Remove CSS Custom Filters code and tests
3961 https://bugs.webkit.org/show_bug.cgi?id=127382
3963 Reviewed by Simon Fraser.
3965 * Source/autotools/FindDependencies.m4:
3966 * Source/autotools/SetupWebKitFeatures.m4:
3967 * Source/cmake/WebKitFeatures.cmake:
3968 * Source/cmakeconfig.h.cmake:
3970 2014-01-22 Martin Robinson <mrobinson@igalia.com>
3972 [GTK][CMake] Add support for building the NetworkProcess
3973 https://bugs.webkit.org/show_bug.cgi?id=127195
3975 Reviewed by Daniel Bates.
3977 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
3978 a name like the WebProcess.
3980 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
3982 [CMAKE] Remove Nix from CMake scripts
3983 https://bugs.webkit.org/show_bug.cgi?id=127264
3985 Reviewed by Anders Carlsson.
3988 * Source/CMakeLists.txt:
3989 * Source/cmake/FindEGL.cmake:
3990 * Source/cmake/OptionsCommon.cmake:
3992 2014-01-18 Anders Carlsson <andersca@apple.com>
3994 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
3995 https://bugs.webkit.org/show_bug.cgi?id=127225
3997 Reviewed by Andreas Kling.
3999 This concludes the removal of over 8.8 million lines of threaded parser code.
4001 * Source/autotools/SetupWebKitFeatures.m4:
4002 * Source/cmake/WebKitFeatures.cmake:
4003 * Source/cmakeconfig.h.cmake:
4005 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
4007 Remove Nix files from WebCore
4008 https://bugs.webkit.org/show_bug.cgi?id=127176
4010 Reviewed by Anders Carlsson.
4012 * Source/cmake/OptionsNix.cmake: Removed.
4014 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
4016 [GTK] Bump the minimum required Clang version to 3.3
4017 https://bugs.webkit.org/show_bug.cgi?id=127178
4019 Reviewed by Martin Robinson.
4021 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
4022 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
4023 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
4025 2014-01-14 Dan Bernstein <mitz@apple.com>
4027 Only use color in make output when it’s going to a terminal.
4029 Reviewed by Mark Rowe.
4033 2014-01-13 Martin Robinson <mrobinson@igalia.com>
4035 [CMake] Mark all dependency include paths and libraries as advanced variables
4036 https://bugs.webkit.org/show_bug.cgi?id=126504
4038 Reviewed by Daniel Bates.
4040 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
4041 * Source/cmake/FindCairo.cmake: Ditto.
4042 * Source/cmake/FindEGL.cmake: Ditto.
4043 * Source/cmake/FindEnchant.cmake: Ditto.
4044 * Source/cmake/FindGLIB.cmake: Ditto.
4045 * Source/cmake/FindGStreamer.cmake: Ditto.
4046 * Source/cmake/FindHarfBuzz.cmake: Ditto.
4047 * Source/cmake/FindLibSoup.cmake: Ditto.
4049 2014-01-13 Martin Robinson <mrobinson@igalia.com>
4051 [GTK][CMake] Add a 'check' target
4052 https://bugs.webkit.org/show_bug.cgi?id=126770
4054 Reviewed by Daniel Bates.
4056 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
4058 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
4060 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
4062 * Source/autotools/Versions.m4: Bump version numbers.
4064 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
4066 [EFL][WK2] Make API tests work again
4067 https://bugs.webkit.org/show_bug.cgi?id=126769
4069 Reviewed by Gyuyoung Kim.
4071 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
4072 [E]WebKit2, respectively, and this causes problems because the logic to find
4073 where WebProcess is to look in the same directory of the running process and
4074 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
4076 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
4077 Gtk port, which allows us to look for WebProcess initially in this directory,
4080 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
4083 2014-01-11 Dan Bernstein <mitz@apple.com>
4085 [Mac] xcodebuild color output is suppressed when using make
4086 https://bugs.webkit.org/show_bug.cgi?id=126815
4088 Reviewed by Anders Carlsson.
4090 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
4091 format its output with color and emphasis.
4093 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
4094 xcodebuild limitations, this restores some of the formatting, but not all of it.
4096 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
4098 Remove the BlackBerry port from trunk
4099 https://bugs.webkit.org/show_bug.cgi?id=126715
4101 Reviewed by Anders Carlsson.
4104 * Source/cmake/OptionsCommon.cmake:
4106 2014-01-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
4108 [EFL][JSC] Enable udis86 disassembler on efl.
4109 https://bugs.webkit.org/show_bug.cgi?id=125502
4111 Reviewed by Michael Saboff.
4113 Enable udis86 disassembler on efl and fix build warnings.
4115 * Source/cmake/OptionsEfl.cmake:
4116 Enable udis86 disassembler.
4118 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
4120 Remove the BlackBerry port from trunk
4121 https://bugs.webkit.org/show_bug.cgi?id=126715
4123 Reviewed by Anders Carlsson.
4127 2014-01-09 Benjamin Poulain <bpoulain@apple.com>
4129 Remove the BlackBerry files outside WebCore
4130 https://bugs.webkit.org/show_bug.cgi?id=126715
4132 Reviewed by Anders Carlsson.
4134 * ManualTests/blackberry: Removed.
4135 * Source/cmake/OptionsBlackBerry.cmake: Removed.
4137 2014-01-08 Martin Robinson <mrobinson@igalia.com>
4139 [GTK] [CMake] Specify the executable and library output locations in the build
4140 https://bugs.webkit.org/show_bug.cgi?id=126671
4142 Reviewed by Gustavo Noronha Silva.
4144 * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
4146 2014-01-08 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
4148 [EFL] Make FTL buildable
4149 https://bugs.webkit.org/show_bug.cgi?id=125777
4151 Reviewed by Csaba Osztrogonác.
4153 * Source/cmake/OptionsEfl.cmake:
4154 * Source/cmakeconfig.h.cmake:
4156 2014-01-08 Alberto Garcia <berto@igalia.com>
4158 REGRESSION(r160304): [GTK] Disable libtool fast install
4159 https://bugs.webkit.org/show_bug.cgi?id=126381
4161 Reviewed by Gustavo Noronha Silva.
4163 Don't disable the libtool fast-install mode unconditionally by
4166 If the fast-install mode is disabled, binaries are generated ready
4167 to use the libraries directly from the build tree. If we use the
4168 GNU linker, those binaries are then relinked when they are
4171 However, libtool fails to do it properly when an installation
4172 prefix is set with DESTDIR, and ends up installing the libtool
4173 wrappers instead of the actual binaries.
4175 * Source/autotools/SetupLibtool.m4:
4177 2014-01-07 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
4179 Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
4180 in output and dependencies declarations, so docs are not built needlessly
4183 * Source/PlatformGTK.cmake:
4185 2014-01-04 Carlos Garcia Campos <cgarcia@igalia.com>
4187 [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI
4188 https://bugs.webkit.org/show_bug.cgi?id=126342
4190 Reviewed by Gustavo Noronha Silva.
4192 * GNUmakefile.am: Remove unused variable.
4193 * Source/PlatformGTK.cmake: No longer include the old unit tests directories.
4195 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
4197 [GTK] configure errors out when building with libc++
4198 https://bugs.webkit.org/show_bug.cgi?id=126431
4200 Reviewed by Martin Robinson.
4202 Ease up the Clang and libstdc++ combination test to only fail if libstdc++ < 4.8.1 is actually used.
4203 This allows for libc++ to be used as well. The test is moved into SetupCompilerFlags.m4 and is done
4204 after the CXXFLAGS variable is properly set up, that is when all the C++ compiler options are determined.
4206 * Source/autotools/CheckSystemAndBasicDependencies.m4:
4207 * Source/autotools/SetupCompilerFlags.m4:
4209 2014-01-06 Martin Robinson <mrobinson@igalia.com>
4211 [CMake] [GTK] Fix the build for the WebKitGTK+ developer configuration
4212 https://bugs.webkit.org/show_bug.cgi?id=126505
4214 Reviewed by Gustavo Noronha Silva.
4216 * Source/cmake/FindGLIB.cmake: Add support for finding the gio-unix include directory location.
4217 * Source/cmake/FindGUdev.cmake: Added.
4218 * Source/cmake/FindGeoClue.cmake: Added.
4219 * Source/cmake/OptionsGTK.cmake: When gamepad is enabled look for gio-unix and GUdev. When
4220 geolocation is enabled look for GeoClue.
4222 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
4224 [GTK] Use libc++ for C++11 on darwin
4225 https://bugs.webkit.org/show_bug.cgi?id=126325
4227 Reviewed by Martin Robinson.
4229 * Source/autotools/SetupCompilerFlags.m4: Don't default to libstdc++ when compiling with Clang.
4230 Instead, the compiler should determine itself what standard library to use, except on Darwin,
4231 where libc++ should be enforced. The standard library of user's choosing can still be enforced
4232 through the CXXFLAGS environment variable.
4234 2014-01-05 Martin Robinson <mrobinson@igalia.com>
4236 [GTK] [CMake] Ensure that the autotools build and the CMake install the same files
4237 https://bugs.webkit.org/show_bug.cgi?id=116379
4239 Reviewed by Gustavo Noronha Silva.
4241 * Source/PlatformGTK.cmake: Install the documentation.
4242 * Source/cmake/OptionsCommon.cmake: Add a LIBEXEC variable for WebKit2 executables, and
4243 don't use the default locations on GTK+. We will get them from the CMake-provided GNU installation
4245 * Source/cmake/OptionsGTK.cmake: Setup the installation variables using the ones provided
4246 by CMake's GNU installation directory support. Fix the definition of DATADIR. Always install
4249 2014-01-05 Carlos Garcia Campos <cgarcia@igalia.com>
4251 [GTK] Stop installing WebKit2 C API headers
4252 https://bugs.webkit.org/show_bug.cgi?id=126489
4254 Reviewed by Martin Robinson.
4258 2014-01-04 Martin Robinson <mrobinson@igalia.com>
4260 [GTK] [CMake] Improve the way we locate gobject-introspection
4261 https://bugs.webkit.org/show_bug.cgi?id=126452
4263 Reviewed by Philippe Normand.
4265 * Source/cmake/FindGObjectIntrospection.cmake: Added.
4266 * Source/cmake/OptionsGTK.cmake: Load the new FindGObjectIntrospection file.
4268 2014-01-04 Martin Robinson <mrobinson@igalia.com>
4270 [GTK] [CMake] Fix the video and audio build
4271 https://bugs.webkit.org/show_bug.cgi?id=126464
4273 Reviewed by Philippe Normand.
4275 * Source/cmake/OptionsGTK.cmake: GStreamer files look for USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER),
4276 so define those when appropriate. Web audio is one by default in autotools, so turn it on for cmake
4279 2014-01-03 Martin Robinson <mrobinson@igalia.com>
4281 [CMake] The forwarding headers generated by WebKitMacros.m4 are incompatible with the headers generated by generate-forwarding-headers.pl
4282 https://bugs.webkit.org/show_bug.cgi?id=126361
4284 Reviewed by Philippe Normand.
4286 Make the forwarding headers generated by WebKitMacros.m4 compatible with the headers
4287 generated by the WebKit2 forwarding headers generation script.
4289 * Source/cmake/WebKitMacros.cmake: Try to convert absolute paths in the forwarding headers
4290 to ones that are relative to the Source directory.
4292 2014-01-02 Carlos Garcia Campos <cgarcia@igalia.com>
4294 REGRESSION(r160304): [GTK] Disable libtool fast install
4295 https://bugs.webkit.org/show_bug.cgi?id=126381
4297 Reviewed by Martin Robinson.
4299 After r160304 we are building some of our binaries that are
4300 installed with the -no-fast-install ld flag. This makes that the
4301 binaries are installed with the source code path hardcoded in
4302 binary RPATH. Disabling fast install globally, the libtool script
4303 always relinks the binaries right before being installed.
4305 * Source/autotools/SetupLibtool.m4: Add AC_DISABLE_FAST_INSTALL.
4307 2014-01-02 Jaehun Lim <ljaehun.lim@samsung.com>
4309 [CMake][EFL] Fix some typos in OptionsEfl.cmake
4310 https://bugs.webkit.org/show_bug.cgi?id=126376
4312 Reviewed by Gyuyoung Kim.
4314 * Source/cmake/WebKitFeatures.cmake: Correct a wrong word and remove comma(,).
4316 2013-12-30 Martin Robinson <mrobinson@igalia.com>
4318 [CMake] [GTK] Add support for GObject introspection
4319 https://bugs.webkit.org/show_bug.cgi?id=126162
4321 Reviewed by Daniel Bates.
4323 * Source/PlatformGTK.cmake: Add a 'gir' target that builds all GIR files.
4324 * Source/cmake/OptionsGTK.cmake: Add a macro for propagating typelib
4325 targets to the Source level of the build.
4327 2013-12-29 Martin Robinson <mrobinson@igalia.com>
4329 [GTK][CMake] Translations must be built
4330 https://bugs.webkit.org/show_bug.cgi?id=125513
4332 Reviewed by Gustavo Noronha Silva.
4334 * Source/PlatformGTK.cmake: Add the po subdirectory.
4336 2013-12-28 Giovanni Campagna <gcampagna@src.gnome.org>
4338 [GTK] Fix release builds with NetworkProcess enabled
4339 https://bugs.webkit.org/show_bug.cgi?id=126247
4341 Reviewed by Carlos Garcia Campos.
4343 * Source/autotools/symbols.filter:
4345 2013-12-26 Martin Robinson <mrobinson@igalia.com>
4347 [GTK] [CMake] Add a production build type
4348 https://bugs.webkit.org/show_bug.cgi?id=126179
4350 Reviewed by Daniel Bates.
4352 * Source/PlatformGTK.cmake: When the API tests are enabled compile the WebKit GObject
4353 API unit tests. The inclusion of these build files was inadvertently removed in an earlier
4355 * Source/cmake/OptionsGTK.cmake: When in production mode turn off all tools and tests and
4356 use the autotools linker script.
4358 2013-12-25 Martin Robinson <mrobinson@igalia.com>
4360 [GTK] [CMake] Properly name the JavaScriptCore library
4361 https://bugs.webkit.org/show_bug.cgi?id=126220
4363 Reviewed by Gustavo Noronha Silva.
4365 * Source/cmake/OptionsGTK.cmake: Set the JSC library name properly.
4367 2013-12-25 Martin Robinson <mrobinson@igalia.com>
4369 [GTK] [CMake] Clean up generated sources directories
4370 https://bugs.webkit.org/show_bug.cgi?id=126216
4372 Reviewed by Gustavo Noronha Silva.
4374 * Source/cmake/OptionsGTK.cmake: Pre-define the main derived sources directories
4375 so that they definitions can be shared easily throughout the build system.
4377 2013-12-23 Jinwoo Song <jinwoo7.song@samsung.com>
4379 [EFL][CMAKE] Case insensitive string comparison of build type
4380 https://bugs.webkit.org/show_bug.cgi?id=126153
4382 Reviewed by Daniel Bates.
4384 Compare CMAKE_BUILD_TYPE with "debug" ignoring case.
4386 * Source/cmake/OptionsEfl.cmake:
4388 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
4390 [GTK] [CMake] Add support for generating gtkdoc
4391 https://bugs.webkit.org/show_bug.cgi?id=116376
4393 Reviewed by Martin Robinson.
4395 * Source/PlatformGTK.cmake: Added. New custom target that depends on a custom command
4396 which calls our generate-gtkdoc script. It uses a docs-build.stamp for simplicity,
4397 like the autotools build.
4399 2013-12-23 Martin Robinson <mrobinson@igalia.com>
4401 [GTK] [CMake] Build the WebKit2 GObject API tests
4402 https://bugs.webkit.org/show_bug.cgi?id=125683
4404 Reviewed by Daniel Bates.
4406 * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
4407 * Source/cmake/FindATSPI.cmake: Added.
4408 * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
4410 2013-12-23 Martin Robinson <mrobinson@igalia.com>
4412 [GTK] [CMake] Build the WebKit1 GObject API tests
4413 https://bugs.webkit.org/show_bug.cgi?id=125684
4415 Reviewed by Daniel Bates.
4417 * Source/PlatformGTK.cmake: Added.
4419 2013-12-22 Martin Robinson <mrobinson@igalia.com>
4421 https://bugs.webkit.org/show_bug.cgi?id=125511
4423 [GTK][CMake] libtool-compatible soversion calculation
4424 Reviewed by Gustavo Noronha Silva.
4426 * Source/cmake/OptionsGTK.cmake: Specify the appropriate libtool triples and use
4427 the CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE macro to specify the library-specific
4428 version information.
4429 * Source/cmake/WebKitHelpers.cmake: Add some helpful macros.
4431 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
4433 [GTK] [CMake] Generate pkg-config files
4434 https://bugs.webkit.org/show_bug.cgi?id=125685
4436 Reviewed by Martin Robinson.
4438 * Source/cmake/OptionsGTK.cmake: set variables used for filling in the values in the
4441 2013-12-23 Carlos Garcia Campos <cgarcia@igalia.com>
4443 [GTK] Build with network process unconditionally
4444 https://bugs.webkit.org/show_bug.cgi?id=126128
4446 Reviewed by Martin Robinson.
4448 * Source/autotools/SetupAutomake.m4: Remove network process
4449 conditional for Makefiles.
4450 * Source/autotools/SetupWebKitFeatures.m4: Remove network process
4453 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
4455 [GTK][CMake] make libjavascriptcoregtk a public shared library again
4456 https://bugs.webkit.org/show_bug.cgi?id=125512
4458 Reviewed by Martin Robinson.
4460 * CMakeLists.txt: make JavaScriptCore always be a shared library for the GTK+ port.
4461 * Source/cmake/WebKitHelpers.cmake: make -fvisibility=hidden not be applied for GTK+,
4462 visibility of some symbols is required for threading to be initialized properly by
4463 WebKit2 processes, and we will rely on a linker script that will be added later on,
4464 for production builds.
4466 2013-12-16 Martin Robinson <mrobinson@igalia.com>
4468 [GTK] [CMake] Add support for building WebKit1
4469 https://bugs.webkit.org/show_bug.cgi?id=116377
4471 Reviewed by Gustavo Noronha Silva.
4473 * Source/cmake/OptionsGTK.cmake: Turn off some features that do not build properly
4474 for WebKit1 and stop using the version script which we haven't implemented yet. Turn
4477 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
4479 [GTK][CMake] Use thin archives if building on Linux, only way to get non-shared-core debug builds
4480 https://bugs.webkit.org/show_bug.cgi?id=125951
4482 Reviewed by Martin Robinson.
4484 * Source/cmake/OptionsGTK.cmake: append T for thin archives to the flags passed to ar,
4485 also use u, which is used in the autotools build (it avoids adding a file twice).
4487 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
4489 [GTK][CMake] Remove binary size optimizations we do not use in the autotools build
4490 https://bugs.webkit.org/show_bug.cgi?id=125947
4492 Reviewed by Martin Robinson.
4494 * Source/cmake/OptionsGTK.cmake: remove the relevant flags.
4496 2013-12-18 Carlos Garcia Campos <cgarcia@igalia.com>
4498 Unreviewed. Update NEWS and Versions.m4 for 2.3.3 release.
4500 * Source/autotools/Versions.m4: Bump version numbers.
4502 2013-12-12 Martin Robinson <mrobinson@igalia.com>
4504 [GTK] [CMake] Build the plugin process against GTK+ 2
4505 https://bugs.webkit.org/show_bug.cgi?id=116374
4507 Reviewed by Gustavo Noronha Silva.
4509 * Source/cmake/FindGDK2.cmake: Added.
4510 * Source/cmake/FindGTK2.cmake: Added.
4511 * Source/cmake/OptionsGTK.cmake: Look for GTK2 and GDK2.
4512 * Source/cmake/WebKitMacros.cmake: Abstract WebKit2 IPC generation here so it
4513 can be shared between the WebKit2 library and the plugin process.
4515 2013-12-17 Simon Pena <simon.pena@samsung.com>
4517 [NIX] Enable full debug builds by having ar creating thin archives
4518 https://bugs.webkit.org/show_bug.cgi?id=125850
4520 Reviewed by Csaba Osztrogonác.
4522 By default, CMake uses ar to generate libWebCore.a with cr parameters
4523 (do not warn if the library has to be created, and replace existing
4524 files in the archive). That results in a very large file, and ar fails
4525 with sizes over 4GB.
4527 Previously, debug builds on NIX were overriding CFLAGS in order to reduce
4528 the size of the WebCore library. Once that ar creates thin archives, overriding
4529 CFLAGS is no longer needed.
4531 * Source/cmake/OptionsNix.cmake: Remove CFLAGS override for debug builds.
4533 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
4535 [GTK] Remove Warnings in building about duplicate INSPECTOR variables
4536 https://bugs.webkit.org/show_bug.cgi?id=125710
4538 Reviewed by Tim Horton.
4542 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
4544 Web Inspector: Add Inspector Code Generation to JavaScriptCore for Runtime Domain
4545 https://bugs.webkit.org/show_bug.cgi?id=125595
4547 Reviewed by Timothy Hatcher.
4551 2013-12-13 Zan Dobersek <zdobersek@igalia.com>
4553 [GTK] Remove the -Wno-c++11-extensions compiler option for Clang builds
4554 https://bugs.webkit.org/show_bug.cgi?id=125639
4556 Reviewed by Anders Carlsson.
4558 * Source/autotools/SetupCompilerFlags.m4: The -Wno-c++11-extensions compiler option was in use
4559 when building with Clang. It is now removed as the C++11 standard is enabled throughout the project.
4561 2013-12-11 Martin Robinson <mrobinson@igalia.com> and Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
4563 Adding a .ycm_extra_conf file for webkitGtk
4564 https://bugs.webkit.org/show_bug.cgi?id=119618
4566 Reviewed by Gustavo Noronha Silva.
4568 Added a YouCompleteMe flag discovery script for Vim and the GTK+ port. The script
4569 read the GTK+ build files to determine dynamically what flags to compile a source
4570 file with. This allows Vim to provide auto-complete for C++/C language. See