1 2015-04-01 Alex Christensen <achristensen@webkit.org>
3 Progress towards CMake on Windows and Mac.
4 https://bugs.webkit.org/show_bug.cgi?id=143293
6 Reviewed by Filip Pizlo.
9 Set DERIVED_SOURCES_WTF_DIR for Windows.
10 * Source/CMakeLists.txt:
11 Don't compile bmalloc on Windows.
12 * Source/cmake/OptionsCommon.cmake:
13 Use the absolute path of the C preprocessor.
14 * Source/cmake/OptionsWinCairo.cmake:
15 Added needed definitions.
16 * Source/cmake/OptionsWindows.cmake:
17 Set some default values and removed support for old Visual Studio versions before /MP.
18 * Source/cmake/WebKitFS.cmake:
19 Make WTF DerivedSources directory.
20 * Source/cmake/WebKitMacros.cmake:
21 Added ADD_PRECOMPILED_HEADER macro based on
22 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
24 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
26 Use colored diagnostics when building with cmake + ninja + clang
27 https://bugs.webkit.org/show_bug.cgi?id=143297
29 Reviewed by Žan Doberšek.
31 Because that ninja sets subprocess stdout/stderr to a pipe, clang
32 disables colored output.
33 This patch forces clang to use colored diagnostics when we are using
36 * Source/cmake/OptionsCommon.cmake:
38 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
40 [CMake] Update old CMakeList.txt in gtest
41 https://bugs.webkit.org/show_bug.cgi?id=143192
43 Reviewed by Darin Adler.
45 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
46 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
47 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
49 * Source/CMakeLists.txt:
50 * Source/cmake/gtest/CMakeLists.txt: Removed.
52 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
54 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
55 https://bugs.webkit.org/show_bug.cgi?id=143138
57 Reviewed by Csaba Osztrogonác.
59 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
60 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
62 * Source/cmake/OptionsWindows.cmake:
63 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
64 * Source/cmake/WebKitMacros.cmake:
66 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
68 [GStreamer] share GL context in pipeline, part 2
69 https://bugs.webkit.org/show_bug.cgi?id=143049
71 Reviewed by Carlos Garcia Campos.
73 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
74 OpenGL/ES2 is found and GLX/EGL is found too.
76 2015-03-26 Alex Christensen <achristensen@webkit.org>
78 Progress towards CMake on Mac.
79 https://bugs.webkit.org/show_bug.cgi?id=143112
81 Reviewed by Chris Dumez.
83 * Source/cmake/OptionsMac.cmake:
85 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
87 [EFL] Add OpenWebRTC in jhbuild
88 https://bugs.webkit.org/show_bug.cgi?id=142778
90 Reviewed by Gyuyoung Kim.
92 Original patch by Philippe Normand <pnormand@igalia.com>
94 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
95 mediastream build is enabled.
97 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
99 [GTK] Add a configure option to build without Redirected XComposite Window
100 https://bugs.webkit.org/show_bug.cgi?id=142865
102 Reviewed by Žan Doberšek.
104 The Redirected XComposite Window was added to support some
105 features like GtkOverlay, but in cases where we don't need such
106 features, it's more efficient to use the XID of the WebKitWebView
107 window as the native surface handle for the accelerated
108 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
109 that is enabled by default for X11 target when OpenGL is enabled.
111 * Source/cmake/OptionsGTK.cmake:
113 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
115 [GTK] Search for the Wayland dependency when enabling Wayland target
116 https://bugs.webkit.org/show_bug.cgi?id=142876
118 Reviewed by Carlos Garcia Campos.
120 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
121 requirement of either the GTK+ or GDK pkg-config files, so we have to
122 search for it ourselves when WebKitGTK+ has been configured to support
123 the Wayland windowing target.
125 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
127 Unreviewed, kick the GTK bots to regenerate makefile.
128 https://bugs.webkit.org/show_bug.cgi?id=137394
130 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
131 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
133 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
135 Unreviewed, kick the GTK bots to regenerate makefile.
136 https://bugs.webkit.org/show_bug.cgi?id=137394
138 * Source/cmake/OptionsEfl.cmake:
140 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
142 [GTK] Fix inspector userinterface related incremental build issue
143 https://bugs.webkit.org/show_bug.cgi?id=142849
145 Reviewed by Carlos Garcia Campos.
147 * Source/cmake/OptionsGTK.cmake: Revert r181733.
149 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
151 Unreviewed, kick the GTK bots to regenerate makefile.
153 * Source/cmake/OptionsGTK.cmake:
155 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
157 [EFL] Expose JavaScript binding interface through ewk_extension
158 https://bugs.webkit.org/show_bug.cgi?id=142033
160 Reviewed by Gyuyoung Kim.
162 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
164 2015-03-17 Philippe Normand <pnormand@igalia.com>
166 [GTK] basic OpenWebRTC build support
167 https://bugs.webkit.org/show_bug.cgi?id=142393
169 Reviewed by Carlos Garcia Campos.
171 * Source/cmake/FindOpenWebRTC.cmake: Added.
172 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
173 mediastream build is enabled.
175 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
177 [CMake][EFL] Build test tools only for developer mode
178 https://bugs.webkit.org/show_bug.cgi?id=142761
180 Reviewed by Csaba Osztrogonác.
182 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
184 * Source/cmake/OptionsEfl.cmake:
185 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
186 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
187 * Source/cmakeconfig.h.cmake:
189 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
191 Enable ES6 classes by default
192 https://bugs.webkit.org/show_bug.cgi?id=142774
194 Reviewed by Gavin Barraclough.
196 * Source/cmake/WebKitFeatures.cmake:
198 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
200 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
201 https://bugs.webkit.org/show_bug.cgi?id=142722
203 Reviewed by Csaba Osztrogonác.
205 Categorize to define cmake variables, to find necessary packages,
206 use upper case for "glib_conponents" cmake variable name, re-arrange
207 wrong alphabet sorting, and so on.
209 * CMakeLists.txt: Remove WinCE port.
210 * Source/cmake/OptionsEfl.cmake:
212 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
214 [GStreamer] share GL context in pipeline
215 https://bugs.webkit.org/show_bug.cgi?id=142693
217 Reviewed by Philippe Normand.
219 Add search of gstreamer-gl library in the GStreamer installation. If
220 it is found, WTF_USE_GSTREAMER_GL macro is defined.
222 * Source/cmake/FindGStreamer.cmake:
223 * Source/cmake/OptionsGTK.cmake:
225 2015-03-13 Alex Christensen <achristensen@webkit.org>
227 Progress towards CMake on Mac.
228 https://bugs.webkit.org/show_bug.cgi?id=142680
230 Reviewed by Gyuyoung Kim.
233 * Source/PlatformMac.cmake: Added stub.
234 * Source/cmake/OptionsMac.cmake:
235 Change defines to get CMake working.
237 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
239 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
240 https://bugs.webkit.org/show_bug.cgi?id=126688
242 Reviewed by Gustavo Noronha Silva.
244 Add ENABLE_MINIBROWSER option, enabled by default for development
245 builds and disabled for production builds unless explicilty enabled.
247 * Source/cmake/OptionsGTK.cmake:
249 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
251 [GTK] Do not look for child processes in the UI process binary path
252 https://bugs.webkit.org/show_bug.cgi?id=135752
254 Reviewed by Gustavo Noronha Silva.
256 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
257 build for development builds.
259 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
261 [GTK] Add a configure option to build with OpenGL ES 2
262 https://bugs.webkit.org/show_bug.cgi?id=142498
264 Reviewed by Martin Robinson.
266 Add ENABLE_GLES2 option. It's disabled by default, but if passed
267 GLES2 is required and OpenGL is not even searched. Otherwise we
268 search for OpenGL as usual, using it only if present.
270 * Source/cmake/OptionsGTK.cmake:
272 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
274 [cmake] Handle unused parameter warnings as build errors except in WebKit2
275 https://bugs.webkit.org/show_bug.cgi?id=142338
277 Reviewed by Gyuyoung Kim.
279 * Source/cmake/WebKitHelpers.cmake:
281 2015-03-03 Daniel Bates <dabates@apple.com>
283 Convert ManualTests/svg-tooltip.svg to a DRT test
284 https://bugs.webkit.org/show_bug.cgi?id=140480
286 Reviewed by Alex Christensen.
288 * ManualTests/svg-tooltip.svg: Removed.
290 2015-03-02 Debarshi Ray <debarshir@gnome.org>
292 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
293 https://bugs.webkit.org/show_bug.cgi?id=142165
295 Reviewed by Carlos Garcia Campos.
297 * Source/cmake/gtksymbols.filter:
299 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
301 [EFL] Remove unnecessary comment after r179110
302 https://bugs.webkit.org/show_bug.cgi?id=142042
304 Reviewed by Gyuyoung Kim.
306 * Source/cmake/OptionsEfl.cmake:
308 2015-02-23 Tomas Popela <tpopela@redhat.com>
310 [GTK] Fails to compile with cmake 3.2.x
311 https://bugs.webkit.org/show_bug.cgi?id=141796
313 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
314 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
315 added and the build will fail.
317 Reviewed by Martin Robinson.
319 * Source/cmake/OptionsGTK.cmake:
321 2015-02-20 Alexey Proskuryakov <ap@apple.com>
323 Remove svn:keywords property.
325 As far as I can tell, the property had no effect on any of these files, but also,
326 when it has effect it's likely harmful.
328 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
329 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
330 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
331 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
332 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
333 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
334 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
335 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
336 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
337 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
338 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
339 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
340 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
341 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
343 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
345 [CMAKE] Remove CMakeLists.txt in WK1 port
346 https://bugs.webkit.org/show_bug.cgi?id=141617
348 Reviewed by Anders Carlsson.
350 Nobody uses CMake in WK1 port. Remove it.
354 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
356 Unreviewed, remove empty directories.
358 * ManualTests/qt: Removed.
360 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
362 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
363 https://bugs.webkit.org/show_bug.cgi?id=141481
365 Reviewed by Csaba Osztrogonác.
367 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
369 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
371 [EFL][GTK] Use bmalloc instead of tcmalloc
372 https://bugs.webkit.org/show_bug.cgi?id=140162
374 Reviewed by Carlos Garcia Campos.
376 Add bmalloc directory to build list.
378 * CMakeLists.txt: Define BMALLOC_DIR directory.
379 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
381 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
383 [GTK] Add default color chooser implementation using GtkColorChooserDialog
384 https://bugs.webkit.org/show_bug.cgi?id=141392
386 Reviewed by Gustavo Noronha Silva.
388 Enable INPUT_TYPE_COLOR by default for GTK+ port.
390 * Source/cmake/OptionsGTK.cmake:
392 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
394 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
395 https://bugs.webkit.org/show_bug.cgi?id=141328
397 Reviewed by Darin Adler.
399 Added as manual test because it involves a huge grid allocation
400 which is very slow on Debug bots, the only ones capable to trigger
403 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
405 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
407 [Streams API] Implement a barebone ReadableStream interface
408 https://bugs.webkit.org/show_bug.cgi?id=141045
410 Reviewed by Benjamin Poulain.
412 * Source/cmake/WebKitFeatures.cmake:
413 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
415 2015-02-02 Filip Pizlo <fpizlo@apple.com>
417 Revert accidental change in r179490.
421 2015-02-02 Filip Pizlo <fpizlo@apple.com>
423 Unreviewed, revert accidental change to Makefile.shared in r179478
427 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
429 [CMake] Minimum python version should be 2.7.
430 https://bugs.webkit.org/show_bug.cgi?id=140997
432 Reviewed by Csaba Osztrogonác.
436 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
438 Apply feTurbulence spec change to fix zero length vector generation
439 https://bugs.webkit.org/show_bug.cgi?id=140812
441 Reviewed by Darin Adler.
443 Recently a bug with the turbulence algorithm was corrected in the
444 Filter Effects specification.
445 For some seed values this bug allowed zero length vectors to be generated.
446 This resulted in large solid color squares being present in the generated image.
447 The feTurbulence algorithm was updated to reject zero length vectors. This patch
448 applies that change in WebCore.
450 Test: svg/filters/feTurbulence_bad_seeds.html
452 * platform/graphics/filters/FETurbulence.cpp:
453 (WebCore::FETurbulence::initPaint):
454 Added rejection sampling during vector generation to avoid zero length vectors.
456 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
458 [cmake] Remove compiler version calculate cruft
459 https://bugs.webkit.org/show_bug.cgi?id=140885
461 Reviewed by Darin Adler.
463 * Source/cmake/WebKitHelpers.cmake:
465 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
467 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
468 https://bugs.webkit.org/show_bug.cgi?id=140886
470 Reviewed by Žan Doberšek.
472 * Source/cmake/WebKitHelpers.cmake:
474 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
476 [GTK] gtkdoc does not appear in DevHelp
477 https://bugs.webkit.org/show_bug.cgi?id=139369
479 Reviewed by Philippe Normand.
481 Expect the gtkdoc to be generated in folders named with the API version.
483 * Source/PlatformGTK.cmake:
485 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
487 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
488 https://bugs.webkit.org/show_bug.cgi?id=140609
490 Reviewed by Csaba Osztrogonác.
492 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
493 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
494 compilation flags. Those were added after the jsCStack branch merge, but
495 can now be removed since the -ftree-dce issues were fixed in GCC, and
496 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
498 * Source/cmake/OptionsEfl.cmake:
499 * Source/cmake/OptionsGTK.cmake:
501 2015-01-26 Commit Queue <commit-queue@webkit.org>
503 Unreviewed, rolling out r179107.
504 https://bugs.webkit.org/show_bug.cgi?id=140880
506 The GCC in the bots doesn't support the AsyncTask
507 implementation (Requested by KaL on #webkit).
511 "[GTK] Enable IndexedDB"
512 https://bugs.webkit.org/show_bug.cgi?id=98932
513 http://trac.webkit.org/changeset/179107
515 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
517 [GTK] Enable IndexedDB
518 https://bugs.webkit.org/show_bug.cgi?id=98932
520 Reviewed by Žan Doberšek.
522 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
523 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
525 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
527 [GTK] Add initial database process support
528 https://bugs.webkit.org/show_bug.cgi?id=139491
530 Reviewed by Sergio Villar Senin.
532 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
534 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
536 Add a build flag for ES6 class syntax
537 https://bugs.webkit.org/show_bug.cgi?id=140760
539 Reviewed by Michael Saboff.
541 * Source/cmake/WebKitFeatures.cmake:
542 * Source/cmakeconfig.h.cmake:
544 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
546 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
547 https://bugs.webkit.org/show_bug.cgi?id=140049
549 Reviewed by Gyuyoung Kim.
551 * Source/cmake/OptionsCommon.cmake:
553 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
555 Remove ENABLE(INSPECTOR) ifdef guards
556 https://bugs.webkit.org/show_bug.cgi?id=140668
558 Reviewed by Darin Adler.
560 * Source/PlatformEfl.cmake:
561 * Source/cmake/OptionsEfl.cmake:
562 * Source/cmake/OptionsGTK.cmake:
563 * Source/cmake/OptionsMac.cmake:
564 * Source/cmake/WebKitFeatures.cmake:
565 * Source/cmakeconfig.h.cmake:
567 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
569 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
571 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
573 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
575 [CMAKE] Fix cmake warning
576 https://bugs.webkit.org/show_bug.cgi?id=140497
578 Reviewed by Gustavo Noronha Silva.
580 r173155 already tried to fix cmake warning though, the warning is still exist.
581 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
582 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
583 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
584 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
585 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
589 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
591 [GTK] Generate the make dist manifest from a CMake template file
592 https://bugs.webkit.org/show_bug.cgi?id=139387
594 Reviewed by Martin Robinson.
596 Generate manifest.txt from manifest.txt.in. Only expose the dist and
597 distcheck targets for developer builds, as they won't work when
598 building from a tarball because the manifest is not distributed.
600 * Source/PlatformGTK.cmake:
602 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
604 Remove ENABLE(SQL_DATABASE) guards
605 https://bugs.webkit.org/show_bug.cgi?id=140434
607 Reviewed by Darin Adler.
609 * Source/cmake/OptionsMac.cmake:
610 * Source/cmake/WebKitFeatures.cmake:
611 * Source/cmakeconfig.h.cmake:
613 2015-01-11 Sam Weinig <sam@webkit.org>
615 Remove support for SharedWorkers
616 https://bugs.webkit.org/show_bug.cgi?id=140344
618 Reviewed by Anders Carlsson.
620 * Source/cmake/OptionsEfl.cmake:
621 * Source/cmake/OptionsGTK.cmake:
622 * Source/cmake/OptionsMac.cmake:
623 * Source/cmake/WebKitFeatures.cmake:
624 * Source/cmakeconfig.h.cmake:
626 2015-01-10 Dan Bernstein <mitz@apple.com>
628 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
629 https://bugs.webkit.org/show_bug.cgi?id=140339
631 Reviewed by Mark Rowe.
633 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
634 prevents unnecessary rebuilding due to PATH differences.
636 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
638 [GTK][ThreadedCompositor] Add support for threaded compositor.
639 https://bugs.webkit.org/show_bug.cgi?id=118265
641 Reviewed by Martin Robinson.
643 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
644 autotools build systems. The feature is disabled by default.
645 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
646 from the feature flags.
648 * Source/cmake/OptionsEfl.cmake:
649 * Source/cmake/OptionsGTK.cmake:
650 * Source/cmake/WebKitFeatures.cmake:
651 * Source/cmakeconfig.h.cmake:
653 2014-12-23 Alexey Proskuryakov <ap@apple.com>
655 Simplify building with ASan
656 https://bugs.webkit.org/show_bug.cgi?id=139916
658 Reviewed by Mark Rowe.
660 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
662 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
664 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
666 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
668 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
670 Null dereference performing a "TapAndAHalf" gesture in Google search field
672 <https://bugs.webkit.org/show_bug.cgi?id=139506>
673 <rdar://problem/19028828>
675 Reviewed by Darin Adler.
677 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
679 2014-12-10 Dean Jackson <dino@apple.com>
681 Blur filter performance test doesn't provide results
682 https://bugs.webkit.org/show_bug.cgi?id=139462
684 Reviewed by Sam Weinig.
686 This can't currently work under our performance test
687 infrastructure. Move it to a manual test to avoid
688 putting FAILures into the results.
690 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
692 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
694 [GTK][WK2] Add HTML5 Notifications support
695 https://bugs.webkit.org/show_bug.cgi?id=61140
697 Reviewed by Carlos Garcia Campos.
699 * Source/cmake/FindLibNotify.cmake: Added.
700 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
701 libnotify and use it for a default implementation when found.
703 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
705 REGRESSION(r155906): Page content disappears on Tuaw article after loading
706 https://bugs.webkit.org/show_bug.cgi?id=138100
708 Reviewed by Simon Fraser.
710 DRT causes an extra paint which makes it impossible to test this with
713 * ManualTests/float-layer-not-painting.html: Added.
715 2014-12-07 Alberto Garcia <berto@igalia.com>
717 [GTK] WebKit has a new required dependency on GnuTLS
718 https://bugs.webkit.org/show_bug.cgi?id=136158
720 Reviewed by Martin Robinson.
722 Detect if GnuTLS is installed and enable or disable subtle crypto
725 * Source/cmake/OptionsGTK.cmake:
727 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
729 [GTK] Missing API detected in GObject DOM bindings after r176630
730 https://bugs.webkit.org/show_bug.cgi?id=139201
732 Reviewed by Gustavo Noronha Silva.
734 Change GENERATE_BINDINGS macro to receive a list of optional
735 additional dependencies, so that we can add more dependecies
736 without having to change the macro.
738 * Source/cmake/WebKitMacros.cmake:
740 2014-12-05 Simon Fraser <simon.fraser@apple.com>
742 Programmatic scrolling and content changes are not always synchronized
743 https://bugs.webkit.org/show_bug.cgi?id=139245
744 rdar://problem/18833612
746 Reviewed by Anders Carlsson.
748 Manual test that tries to sync layout with programmatic scrolling.
750 * ManualTests/programmatic-scroll-flicker.html: Added.
752 2014-12-04 Alberto Garcia <berto@igalia.com>
754 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
755 https://bugs.webkit.org/show_bug.cgi?id=136576
757 Reviewed by Carlos Garcia Campos.
759 CMake should complain if Accelerated 2D Canvas is explicitly
760 enabled but cairo-gl is not found.
762 * Source/cmake/OptionsGTK.cmake:
764 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
766 [EFL] Add subtle crypto to the build system
767 https://bugs.webkit.org/show_bug.cgi?id=138612
769 Reviewed by Csaba Osztrogonác.
771 * Source/cmake/OptionsEfl.cmake:
773 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
775 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
776 https://bugs.webkit.org/show_bug.cgi?id=139085
778 Reviewed by Andreas Kling.
780 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
781 * Source/cmake/WebKitFeatures.cmake: ditto.
782 * Source/cmakeconfig.h.cmake: ditto.
784 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
786 [EFL] Drop support for the EFL 1.7
787 https://bugs.webkit.org/show_bug.cgi?id=139114
789 Reviewed by Gyuyoung Kim.
791 * Source/cmake/EFLHelpers.cmake: Removed.
792 * Source/cmake/FindEcore.cmake: Removed.
793 * Source/cmake/FindEdje.cmake: Removed.
794 * Source/cmake/FindEet.cmake: Removed.
795 * Source/cmake/FindEeze.cmake: Removed.
796 * Source/cmake/FindEfreet.cmake: Removed.
797 * Source/cmake/FindEina.cmake: Removed.
798 * Source/cmake/FindElementary.cmake: Removed.
799 * Source/cmake/FindEvas.cmake: Removed.
800 * Source/cmake/OptionsEfl.cmake:
802 2014-11-28 Philippe Normand <pnormand@igalia.com>
804 [CMake] Build failure against GStreamer git master
805 https://bugs.webkit.org/show_bug.cgi?id=138872
807 Reviewed by Csaba Osztrogon.
809 * Source/cmake/FindGStreamer.cmake: Simplified the
810 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
811 headers lookup, there's no need to do this manually. Also
812 explicitely check the version specified in GStreamer_FIND_VERSION.
814 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
816 [EFL] Remove E_Dbus dependency
817 https://bugs.webkit.org/show_bug.cgi?id=136355
819 Reviewed by Gyuyoung Kim.
821 * Source/cmake/FindE_DBus.cmake: Removed.
822 * Source/cmake/OptionsEfl.cmake:
824 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
826 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
828 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
830 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
832 [CMake] Use ld.gold if it is available to speedup builds
833 https://bugs.webkit.org/show_bug.cgi?id=137953
835 Reviewed by Carlos Garcia Campos.
837 * Source/cmake/OptionsCommon.cmake:
839 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
841 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
842 https://bugs.webkit.org/show_bug.cgi?id=138840
844 Reviewed by Csaba Osztrogonác.
846 * Source/cmake/OptionsCommon.cmake:
848 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
850 Remove Source/Platform cruft
851 https://bugs.webkit.org/show_bug.cgi?id=138658
853 Reviewed by Anders Carlsson.
856 * Source/Platform: Removed.
858 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
860 Enable Cortex-A53-specific code paths by default if core is detected.
861 https://bugs.webkit.org/show_bug.cgi?id=138499
863 Reviewed by Csaba Osztrogonác.
865 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
866 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
869 Since on ARM64/Linux the part number that cpuinfo reports depends on
870 the core the query is run on, the check is bound to and executed on the
871 available cores one by one.
873 * Source/cmake/OptionsCommon.cmake:
875 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
877 [EFL] Remove unnecessary version check from OptionsEfl.cmake
878 https://bugs.webkit.org/show_bug.cgi?id=138498
880 Reviewed by Csaba Osztrogonác.
882 * Source/cmake/OptionsEfl.cmake:
884 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
886 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
887 https://bugs.webkit.org/show_bug.cgi?id=138465
889 Reviewed by Gyuyoung Kim.
891 * Source/cmake/OptionsEfl.cmake:
893 2014-11-03 Dean Jackson <dino@apple.com>
895 Add ENABLE_FILTERS_LEVEL_2 feature guard.
896 https://bugs.webkit.org/show_bug.cgi?id=138362
898 Reviewed by Tim Horton.
900 Add a new feature define for Level 2 of CSS Filters.
901 http://dev.w3.org/fxtf/filters-2/
903 * Source/cmake/OptionsEfl.cmake:
904 * Source/cmake/OptionsGTK.cmake:
905 * Source/cmake/OptionsMac.cmake:
906 * Source/cmake/WebKitFeatures.cmake:
907 * Source/cmakeconfig.h.cmake:
909 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
911 Workaround for Cortex-A53 erratum 835769
912 https://bugs.webkit.org/show_bug.cgi?id=138315
914 Reviewed by Filip Pizlo.
916 This patch introduces CMake variable and preprocessor macro
917 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
918 code paths, if set true.
920 * Source/cmake/OptionsCommon.cmake:
921 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
923 * Source/cmakeconfig.h.cmake:
924 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
926 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
928 [GTK] Fix the build of FTL JIT
929 https://bugs.webkit.org/show_bug.cgi?id=138298
931 Reviewed by Carlos Garcia Campos.
933 * Source/cmake/OptionsGTK.cmake:
934 Remove the need for the LIBCXXABI package.
936 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
938 REGRESSION(CMake): Make it possible to build without introspection
939 https://bugs.webkit.org/show_bug.cgi?id=138006
941 Reviewed by Philippe Normand.
943 Add ENABLE_INTROSPECTION option.
945 * Source/PlatformGTK.cmake: Dot not add gir global target if
946 introspection is disabled.
947 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
948 introspection is disabled.
950 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
952 [GTK] Support script message handlers WebKitUserContentManager
953 https://bugs.webkit.org/show_bug.cgi?id=133730
955 Reviewed by Carlos Garcia Campos.
957 Support user script message handlers in WebKitUserContentManager.
958 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
959 an option is added to the CMake build files. The option is disabled
960 globally by default, and the WebKitGTK port enables it. On the API
961 level, two new methods to register and unregister names are provided
962 in the "window.webkit" namespace, and on message reception the
963 "WebKitUserContentManager::script-message-received" signal is
964 emitted, using the registered names as signal detail.
966 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
967 ENABLE_USER_MESSAGE_HANDLERS feature by default.
968 * Source/cmake/WebKitFeatures.cmake: Add feature description for
969 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
971 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
973 [GTK] Bump libsoup's minimum version to 2.42.0.
974 https://bugs.webkit.org/show_bug.cgi?id=138086
976 Reviewed by Martin Robinson.
978 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
979 soup-version.h header was added to soup.h in 2.41.4, which then becomes
980 the minimum version required to build the port these days.
982 In addition, since the autotools build system required 2.42.0 before
983 being retired, require the same version here. Version 2.42.0 was also
985 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
987 * Source/cmake/OptionsGTK.cmake:
989 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
991 [EFL] Remove unnecessary defines from OptionsEfl.cmake
992 https://bugs.webkit.org/show_bug.cgi?id=138132
994 Reviewed by Csaba Osztrogonác.
996 * Source/cmake/OptionsEfl.cmake:
998 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1000 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1002 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1004 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1006 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1007 https://bugs.webkit.org/show_bug.cgi?id=137946
1009 Reviewed by Gyuyoung Kim.
1011 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1013 * Source/cmake/OptionsEfl.cmake:
1015 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1017 Fix FTL Native Inlining for EFL
1018 https://bugs.webkit.org/show_bug.cgi?id=137774
1020 Reviewed by Michael Saboff.
1022 Updated CMake for FTL Native Inlining.
1025 * Source/cmake/FindClang.cmake: Added.
1026 * Source/cmake/OptionsEfl.cmake:
1027 * Source/cmakeconfig.h.cmake:
1029 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1031 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1032 https://bugs.webkit.org/show_bug.cgi?id=137748
1034 Reviewed by Brian Burg.
1036 * Source/PlatformEfl.cmake:
1038 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1040 [GTK] Add initial gestures support
1041 https://bugs.webkit.org/show_bug.cgi?id=137812
1043 Reviewed by Sergio Villar Senin.
1045 Check if the GTK+ version supports gestures or not.
1047 * Source/cmake/FindGTK3.cmake:
1048 * Source/cmake/OptionsGTK.cmake:
1050 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1052 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1053 https://bugs.webkit.org/show_bug.cgi?id=137781
1055 Reviewed by Martin Robinson.
1057 We used to enable smooth scrolling unconditionally in autotools
1058 (via WebKitFeatures.m4), but since the switch to CMake it's
1059 unconditionally disabled, so changing the setting doesn't have any
1062 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1064 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1066 Removing CUSTOM_PROTOCOLS guard
1067 https://bugs.webkit.org/show_bug.cgi?id=137741
1069 Reviewed by Benjamin Poulain.
1071 * Source/cmake/OptionsEfl.cmake:
1073 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1075 [EFL] Enable WebP support.
1076 https://bugs.webkit.org/show_bug.cgi?id=136156
1078 Reviewed by Gyuyoung Kim.
1080 Add WebP package finding rule.
1082 * Source/cmake/OptionsEfl.cmake:
1084 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1086 [EFL] Enable custom URI schemes with CustomProtocols
1087 https://bugs.webkit.org/show_bug.cgi?id=128177
1089 Reviewed by Gyuyoung Kim.
1091 Fixing ewk_context_url_scheme_register() ewebkit2 API
1092 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1094 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1096 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1098 Bump version to 2.7.0
1099 https://bugs.webkit.org/show_bug.cgi?id=137301
1101 Rubber-stamped by Carlos Garcia Campos.
1103 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1105 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1107 [EFL] Rename TEST_THEME_DIR macro
1108 https://bugs.webkit.org/show_bug.cgi?id=137244
1110 Reviewed by Csaba Osztrogonác.
1112 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1114 2014-09-27 Dan Bernstein <mitz@apple.com>
1116 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1117 https://bugs.webkit.org/show_bug.cgi?id=137053
1119 Reviewed by Mark Rowe.
1121 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1122 In the build pre-action, pass the --wksi and --llvm options to
1123 copy-webkitlibraries-to-product-directory.
1124 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1126 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1128 [GTK] Enable CSS_IMAGE_SET in production builds
1129 https://bugs.webkit.org/show_bug.cgi?id=137142
1131 Reviewed by Alejandro G. Castro.
1133 This is required by the inspector to show some of the icons that
1134 has a HiDPI variant.
1136 * Source/cmake/OptionsGTK.cmake:
1138 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1140 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1141 https://bugs.webkit.org/show_bug.cgi?id=136377
1143 Reviewed by Philippe Normand.
1145 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1146 for CMake versions less than 3.
1148 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1150 Remove WinCE port from trunk
1151 https://bugs.webkit.org/show_bug.cgi?id=136951
1153 Reviewed by Alex Christensen.
1155 * Source/cmake/OptionsWinCE.cmake: Removed.
1156 * Source/cmake/WebKitPackaging.cmake:
1158 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1160 [EFL][GTK] Remove WebKit1 related codes
1161 https://bugs.webkit.org/show_bug.cgi?id=136853
1163 Reviewed by Csaba Osztrogonác.
1165 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1168 * Source/PlatformGTK.cmake:
1170 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1173 https://bugs.webkit.org/show_bug.cgi?id=136820
1175 Reviewed by Csaba Osztrogonác.
1177 * Source/cmake/FindICU.cmake:
1179 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1181 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1182 https://bugs.webkit.org/show_bug.cgi?id=136814
1184 Reviewed by Philippe Normand.
1186 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1187 We bundle the wayland-egl dependency with wayland-client and wayland-server
1188 and store the resulting variables with the WAYLAND_ prefix. Because of this
1189 this line wasn't exporting anything useful.
1191 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1193 URTBF after r173574.
1195 * Source/cmake/WebKitMacros.cmake:
1197 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1199 [JavaScriptCore] Fix FTL on platform EFL.
1200 https://bugs.webkit.org/show_bug.cgi?id=133571
1202 Reviewed by Filip Pizlo.
1206 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1207 * Source/cmake/OptionsEfl.cmake:
1209 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1212 https://bugs.webkit.org/show_bug.cgi?id=136571
1214 Reviewed by Darin Adler.
1216 * Source/cmake/OptionsEfl.cmake:
1217 * Source/cmake/OptionsGTK.cmake:
1218 * Source/cmake/OptionsMac.cmake:
1219 * Source/cmake/WebKitFeatures.cmake:
1220 * Source/cmakeconfig.h.cmake:
1222 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1224 Remove CSS_FILTERS flag
1225 https://bugs.webkit.org/show_bug.cgi?id=136529
1227 Reviewed by Dirk Schulze.
1229 * Source/cmake/OptionsEfl.cmake:
1230 * Source/cmake/OptionsGTK.cmake:
1231 * Source/cmake/OptionsMac.cmake:
1232 * Source/cmake/WebKitFeatures.cmake:
1233 * Source/cmakeconfig.h.cmake:
1235 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1237 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1238 https://bugs.webkit.org/show_bug.cgi?id=136194
1240 Reviewed by Csaba Osztrogonác.
1242 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1246 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1248 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1249 https://bugs.webkit.org/show_bug.cgi?id=135560
1251 Reviewed by Gyuyoung Kim.
1253 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1255 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1257 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1258 https://bugs.webkit.org/show_bug.cgi?id=136343
1260 Reviewed by David Kilzer.
1262 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1264 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1265 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1267 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1269 [EFL] Share fast/speechsynthesis/ with other ports
1270 https://bugs.webkit.org/show_bug.cgi?id=136224
1272 Reviewed by Chris Fleizach.
1274 Enable WebSpeech for EFL.
1276 * Source/cmake/OptionsEfl.cmake:
1278 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1280 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1281 https://bugs.webkit.org/show_bug.cgi?id=136127
1283 Reviewed by Gyuyoung Kim.
1285 Add build support for espeak.
1287 * Source/cmake/FindEspeak.cmake: Added.
1288 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1290 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1292 [EFL] Build break using clang
1293 https://bugs.webkit.org/show_bug.cgi?id=136245
1295 Reviewed by Gyuyoung Kim.
1297 * Source/cmake/OptionsEfl.cmake:
1298 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1299 Some warnings are from system libraries.
1301 2014-08-25 Alberto Garcia <berto@igalia.com>
1303 [GTK] Unify webkitgtk and webkit2gtk directories
1304 https://bugs.webkit.org/show_bug.cgi?id=136209
1306 Reviewed by Carlos Garcia Campos.
1308 Use webkit2gtk-X.X both for the process binaries and the injected
1311 * Source/cmake/OptionsGTK.cmake:
1313 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1315 [EFL] Move Efl specific code from Source/CMakeLists.txt
1316 https://bugs.webkit.org/show_bug.cgi?id=136206
1318 Reviewed by Gyuyoung Kim.
1320 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1321 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1323 * Source/CMakeLists.txt:
1324 * Source/cmake/OptionsEfl.cmake:
1326 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1328 [EFL] Introduce DEVELOPER_MODE
1329 https://bugs.webkit.org/show_bug.cgi?id=135884
1331 Reviewed by Gyuyoung Kim.
1333 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1334 instead of SHARED_CORE.
1335 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1336 from release binary.
1338 * Source/cmake/OptionsEfl.cmake:
1339 * Source/cmake/WebKitHelpers.cmake:
1340 Moved fvisibility=hidden to OptionsEfl.cmake
1342 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1344 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1345 https://bugs.webkit.org/show_bug.cgi?id=136110
1347 Reviewed by Gyuyoung Kim.
1349 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1351 * Source/cmake/OptionsEfl.cmake:
1353 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1355 [EFL] Apply eflsymbols.filter to WebKit2
1356 https://bugs.webkit.org/show_bug.cgi?id=136148
1358 Reviewed by Csaba Osztrogonác.
1360 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1361 in the eflsymbols.filter.
1363 * Source/cmake/OptionsEfl.cmake:
1364 * Source/cmake/eflsymbols.filter:
1366 2014-08-21 Zalan Bujtas <zalan@apple.com>
1368 Enable SATURATED_LAYOUT_ARITHMETIC.
1369 https://bugs.webkit.org/show_bug.cgi?id=136106
1371 Reviewed by Simon Fraser.
1373 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1374 (No measurable performance regression on Mac.)
1376 * Source/cmake/OptionsMac.cmake:
1377 * Source/cmake/WebKitFeatures.cmake:
1378 * Source/cmakeconfig.h.cmake:
1380 2014-08-19 Zalan Bujtas <zalan@apple.com>
1382 Remove ENABLE(SUBPIXEL_LAYOUT).
1383 https://bugs.webkit.org/show_bug.cgi?id=136077
1385 Reviewed by Simon Fraser.
1387 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
1389 * Source/cmake/OptionsEfl.cmake:
1390 * Source/cmake/OptionsGTK.cmake:
1391 * Source/cmake/OptionsMac.cmake:
1392 * Source/cmake/WebKitFeatures.cmake:
1393 * Source/cmakeconfig.h.cmake:
1395 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
1397 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1398 https://bugs.webkit.org/show_bug.cgi?id=135980
1400 Reviewed by Martin Robinson.
1402 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1403 overrides any other disabled optimization that was prepended to these
1404 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1405 lists first in the final list of compilation flags.
1407 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1408 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1410 * Source/cmake/OptionsCommon.cmake:
1411 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1412 * Source/cmake/OptionsGTK.cmake:
1414 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1416 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1418 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1420 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1422 [GTK] Disable memory sampler on non-Linux system
1423 https://bugs.webkit.org/show_bug.cgi?id=134483
1425 Reviewed by Philippe Normand.
1427 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1428 Linux because it uses many Linux-specific features, so we should disable
1429 memory sampler on other systems by default.
1431 * Source/cmake/OptionsGTK.cmake:
1433 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1435 [GTK] HTML API documentation should also be installed versioned
1436 https://bugs.webkit.org/show_bug.cgi?id=135970
1438 Reviewed by Philippe Normand.
1440 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1443 2014-08-14 Tomas Popela <tpopela@redhat.com>
1445 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1446 https://bugs.webkit.org/show_bug.cgi?id=135937
1448 Reviewed by Carlos Garcia Campos.
1452 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1454 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1455 https://bugs.webkit.org/show_bug.cgi?id=135934
1457 Reviewed by Gustavo Noronha Silva.
1459 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1460 The gir files should installed in $datadir/gir-1.0/ together with all other
1461 gir files. We don't need to install introspection files in a versioned
1462 directory because their filenames already contain the binary version. But before
1463 r171598, the files were only installed to the right directory if the
1464 gobject-instrospection pkg-config file was in the same prefix than the one we
1465 wanted to install, because the gir and typelibs directories were extracted from
1466 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1467 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1468 like we do in the autotools build.
1470 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1471 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1472 * Source/cmake/OptionsGTK.cmake: Define
1473 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1475 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1477 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1478 https://bugs.webkit.org/show_bug.cgi?id=135836
1480 Reviewed by Philippe Normand.
1482 * Source/PlatformGTK.cmake: Add install command to also install
1483 the GObject DOM bindings API docs.
1485 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1487 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1488 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1489 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1490 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1493 * Source/cmake/OptionsCommon.cmake:
1495 2014-08-13 Alex Christensen <achristensen@webkit.org>
1497 Progress towards CMake on Mac.
1498 https://bugs.webkit.org/show_bug.cgi?id=135819
1500 Reviewed by Laszlo Gombos.
1502 * Source/cmake/OptionsMac.cmake:
1503 Disable some more features temporarily to get CMake working.
1504 * Source/cmake/WebKitMacros.cmake:
1505 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1507 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1509 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1510 https://bugs.webkit.org/show_bug.cgi?id=135798
1512 Reviewed by Philippe Normand.
1514 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1516 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1517 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1518 https://bugs.webkit.org/show_bug.cgi?id=133317
1520 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1522 Reviewed by Philippe Normand.
1524 No new tests since no new functionality has been added.
1526 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1528 2014-08-11 Commit Queue <commit-queue@webkit.org>
1530 Unreviewed, rolling out r172393.
1531 https://bugs.webkit.org/show_bug.cgi?id=135796
1533 discussion needed about GnuTLS version bump on the bots
1534 (Requested by philn on #webkit).
1538 https://bugs.webkit.org/show_bug.cgi?id=133317
1539 http://trac.webkit.org/changeset/172393
1541 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1542 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1543 https://bugs.webkit.org/show_bug.cgi?id=133317
1545 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1547 Reviewed by Philippe Normand.
1549 No new tests since no new functionality has been added.
1551 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1553 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1555 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1556 https://bugs.webkit.org/show_bug.cgi?id=133316
1558 Reviewed by Philippe Normand.
1560 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1561 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1562 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1564 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1566 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1568 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1570 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1572 [GTK] REGRESSION(r166239): The ld version script is not being used
1573 https://bugs.webkit.org/show_bug.cgi?id=135694
1575 Reviewed by Martin Robinson.
1577 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1578 it as gtksymbols.filter. Also updated it, since some of the symbols
1579 exported were renamed.
1581 * Source/cmake/OptionsGTK.cmake:
1582 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1584 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1586 [GTK] Child processes should be installed in a versioned directory
1587 https://bugs.webkit.org/show_bug.cgi?id=135754
1589 Reviewed by Gustavo Noronha Silva.
1591 Define LIBEXEC_INSTALL_DIR as
1592 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1593 so that the child processes are installed in $libexec/webkitgtk-4.0.
1594 This makes it possible to install 2.6 in parallel to older versions.
1596 * Source/cmake/OptionsGTK.cmake:
1598 2014-08-08 Alex Christensen <achristensen@webkit.org>
1600 Progress towards using CMake on Mac.
1601 https://bugs.webkit.org/show_bug.cgi?id=135662
1603 Reviewed by Laszlo Gombos.
1606 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1607 * Source/cmake/WebKitFeatures.cmake:
1608 * Source/cmakeconfig.h.cmake:
1609 Added features that are needed by the Mac port.
1610 * Source/cmake/OptionsMac.cmake:
1611 Enable CSS_IMAGE_SET based on FeatureDefines.h.
1612 Disable the FTL with CMake for now.
1613 * Source/cmake/OptionsEFL.cmake:
1614 * Source/cmake/OptionsGTK.cmake:
1615 Enable subpixel layout to not conflict with FeatureDefines.h
1617 2014-08-08 Simon Fraser <simon.fraser@apple.com>
1619 Undo some erroneous changes to the Xcode scheme files from r172259.
1621 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1622 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1624 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
1626 [CMake] Drop the required version of CMake down to 2.8.8
1627 https://bugs.webkit.org/show_bug.cgi?id=135713
1629 Reviewed by Alex Christensen.
1631 * CMakeLists.txt: Require CMake 2.8.8.
1633 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
1635 Get rid of INPUT_SPEECH
1636 https://bugs.webkit.org/show_bug.cgi?id=135672
1638 Reviewed by Andreas Kling.
1640 * Source/cmake/OptionsMac.cmake:
1641 * Source/cmake/WebKitFeatures.cmake:
1642 * Source/cmakeconfig.h.cmake:
1644 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
1646 [GTK] Disable IndexedDB
1647 https://bugs.webkit.org/show_bug.cgi?id=135692
1649 Reviewed by Carlos Garcia Campos.
1651 * Source/cmake/OptionsGTK.cmake:
1653 2014-08-06 Dean Jackson <dino@apple.com>
1655 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
1656 https://bugs.webkit.org/show_bug.cgi?id=135675
1658 Reviewed by Sam Weinig.
1660 * Source/cmake/OptionsGTK.cmake:
1661 * Source/cmake/OptionsMac.cmake:
1662 * Source/cmake/WebKitFeatures.cmake:
1663 * Source/cmakeconfig.h.cmake:
1665 2014-08-06 David Farler <dfarler@apple.com>
1667 Unreviewed build fix: Make includes semicolon in assignment.
1669 * Makefile.shared: Remove a ;
1671 2014-08-06 David Farler <dfarler@apple.com>
1673 Set DSYMUTIL_NUM_THREADS to the number of logical cores
1674 https://bugs.webkit.org/show_bug.cgi?id=135655
1676 Reviewed by Mark Rowe.
1678 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
1680 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1682 [GTK] Be able to disable gtk2 dependency
1683 https://bugs.webkit.org/show_bug.cgi?id=135505
1685 Reviewed by Gustavo Noronha Silva.
1687 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
1688 required when it's enabled. It's enabled by default.
1690 * Source/cmake/OptionsGTK.cmake:
1692 2014-08-05 Alex Christensen <achristensen@webkit.org>
1695 https://bugs.webkit.org/show_bug.cgi?id=135620
1697 Reviewed by Laszlo Gombos.
1699 * Source/cmake/OptionsMac.cmake:
1700 Use UDIS86 by default on Mac.
1702 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
1704 Add a flag for the CSS Selectors level 4 implementation
1705 https://bugs.webkit.org/show_bug.cgi?id=135535
1707 Reviewed by Andreas Kling.
1709 * Source/cmake/OptionsEfl.cmake:
1710 * Source/cmake/OptionsGTK.cmake:
1711 * Source/cmake/WebKitFeatures.cmake:
1712 * Source/cmakeconfig.h.cmake:
1714 2014-08-04 Alex Christensen <achristensen@webkit.org>
1716 Progress towards CMake on Mac.
1717 https://bugs.webkit.org/show_bug.cgi?id=135528
1719 Reviewed by Gyuyoung Kim.
1721 * Source/cmake/OptionsMac.cmake:
1722 Made options list based on FeatureDefines.xcconfig files.
1724 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1726 [GTK] Windowing target support should reflect the support in the GTK+ dependency
1727 https://bugs.webkit.org/show_bug.cgi?id=134736
1729 Reviewed by Martin Robinson.
1731 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
1732 support the X11 or Wayland windowing targets -- instead, if there's no support
1733 the specific target is disabled, and an error is thrown only if neither of the
1734 backends is enabled at the end..
1735 For now the X11 target remains enabled by default, and the Wayland target is
1736 kept disabled. Once it's possible to have both targets enabled at runtime in
1737 WebKit, the Wayland target will be enabled as well and we'll leave it to the
1738 GTK+ dependency to determine which targets can be enabled.
1740 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1742 [CMake] Add FindWayland.cmake
1743 https://bugs.webkit.org/show_bug.cgi?id=135540
1745 Reviewed by Martin Robinson.
1747 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
1748 dependency. For now bundles the wayland-client, wayland-server and
1749 wayland-egl pkg-config targets into one dependency, but these could
1750 be split in the future if necessary.
1752 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
1754 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
1755 https://bugs.webkit.org/show_bug.cgi?id=135553
1757 Reviewed by Gyuyoung Kim.
1759 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
1760 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
1762 * Source/cmake/OptionsEfl.cmake:
1764 2014-08-01 Bear Travis <betravis@adobe.com>
1766 [Feature Queries] Enable Feature Queries on EFL/GTK
1767 https://bugs.webkit.org/show_bug.cgi?id=134902
1769 Reviewed by Benjamin Poulain.
1771 Enable CSS Feature Queries by default on the EFL and GTK
1774 * Source/cmake/OptionsEfl.cmake:
1775 * Source/cmake/OptionsGTK.cmake:
1777 2014-08-01 Alex Christensen <achristensen@webkit.org>
1779 Progress towards cmake on Windows.
1780 https://bugs.webkit.org/show_bug.cgi?id=135484
1782 Reviewed by Martin Robinson.
1785 Added Mac to list of ports, even though it is not done yet.
1786 Changed minimum bison version to version installed on Macs.
1787 * Source/cmake/OptionsAppleWin.cmake:
1788 Added some definitions.
1789 * Source/cmake/OptionsEfl.cmake:
1790 * Source/cmake/OptionsGTK.cmake:
1791 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
1792 * Source/cmake/OptionsMac.cmake: Added blank for now.
1793 * Source/cmake/OptionsWinCairo.cmake:
1794 * Source/cmake/OptionsWindows.cmake:
1795 Added some definitions.
1796 Removed /WX (warnings treated as error while compiling).
1797 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
1799 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
1801 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
1802 https://bugs.webkit.org/show_bug.cgi?id=135501
1804 Reviewed by Gyuyoung Kim.
1806 Use PROJECT_VERSION_MICRO instead.
1808 * Source/cmake/OptionsEfl.cmake:
1809 * Source/cmake/OptionsGTK.cmake:
1810 * Source/cmake/WebKitHelpers.cmake:
1812 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
1814 [EFL] Bump ewebkit version to 1.11
1815 https://bugs.webkit.org/show_bug.cgi?id=135487
1817 Reviewed by Gyuyoung Kim.
1819 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
1821 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
1823 [EFL] Add support for building with Geoclue2.
1824 https://bugs.webkit.org/show_bug.cgi?id=135455
1826 Reviewed by Gyuyoung Kim.
1828 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
1831 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1833 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
1835 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1837 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1839 [GTK] Bump binary version for 2.6
1840 https://bugs.webkit.org/show_bug.cgi?id=133724
1842 Reviewed by Philippe Normand.
1844 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
1845 update library version numbers.
1847 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
1849 [CMake] Bump the minimum required version
1850 https://bugs.webkit.org/show_bug.cgi?id=135382
1852 Reviewed by Gyuyoung Kim.
1854 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
1855 we introduced usage of target_include_directories().
1857 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
1859 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
1860 https://bugs.webkit.org/show_bug.cgi?id=135376
1862 Reviewed by Gyuyoung Kim.
1864 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
1866 * Source/cmake/OptionsEfl.cmake:
1867 * Source/cmake/OptionsGTK.cmake:
1869 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
1871 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
1872 https://bugs.webkit.org/show_bug.cgi?id=135288
1874 Reviewed by Martin Robinson.
1876 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
1877 datadir to pkgconfig
1878 * Source/cmake/OptionsGTK.cmake: define install directories early
1879 enough to be used in FindGObjectIntrospection.cmake
1881 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
1883 Remove CSS_EXCLUSIONS compile flag and leftover code
1884 https://bugs.webkit.org/show_bug.cgi?id=135175
1886 Reviewed by Zoltan Horvath.
1888 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
1889 stubs. This removes the flag and the useless code.
1891 * Source/cmake/WebKitFeatures.cmake:
1892 * Source/cmakeconfig.h.cmake:
1894 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
1896 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
1897 https://bugs.webkit.org/show_bug.cgi?id=135114
1899 Fix build with GStreamer 1.4
1901 Reviewed by Philippe Normand.
1903 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
1904 gst-mpegts component instead of the unstable 1.3.x verstions.
1906 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
1908 [GTK] Simplify make-dist command line arguments
1909 https://bugs.webkit.org/show_bug.cgi?id=134832
1911 Reviewed by Martin Robinson.
1913 * Source/PlatformGTK.cmake: Use --version instead of
1914 --tarball-root when running make-dist.py.
1916 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
1918 Add a manual test for r135044
1920 <https://bugs.webkit.org/show_bug.cgi?id=135044>
1922 Rubber-stamped by Andy Estes.
1924 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
1926 2014-07-18 Dana Burkart <dburkart@apple.com>
1928 Add a new 'analyze' target to the makefile. This will make use of a new
1929 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
1931 https://bugs.webkit.org/show_bug.cgi?id=135057
1932 <rdar://problem/10193187>
1934 Reviewed by David Kilzer.
1940 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
1942 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
1943 https://bugs.webkit.org/show_bug.cgi?id=134963
1945 Reviewed by Gyuyoung Kim.
1947 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
1949 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
1951 2014-07-14 Daniel Bates <dabates@apple.com>
1953 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
1954 https://bugs.webkit.org/show_bug.cgi?id=134905
1955 <rdar://problem/16602779>
1957 Reviewed by Simon Fraser.
1959 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
1960 on the tapped element when processing a touchend as a result of finger pressing and releasing
1961 on the same element that is initially positioned outside the visible content area.
1963 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
1965 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
1967 [GTK] Enable VIDEO_TRACK by default
1968 https://bugs.webkit.org/show_bug.cgi?id=134801
1970 Reviewed by Philippe Normand.
1972 * Source/cmake/OptionsGTK.cmake:
1974 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1976 [GTK][CMake] Add a 'distcheck' target
1977 https://bugs.webkit.org/show_bug.cgi?id=130675
1979 Reviewed by Gustavo Noronha Silva.
1981 * Source/PlatformGTK.cmake: Add distcheck target.
1983 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1985 [GTK] Use the same default options for production builds that previous stable releases
1986 https://bugs.webkit.org/show_bug.cgi?id=134589
1988 Reviewed by Martin Robinson.
1990 Change the default value of some features to match our stable releases.
1991 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
1992 canvas depend on whether cairo-gl is found.
1994 * Source/cmake/FindCairoGL.cmake: Added.
1995 * Source/cmake/OptionsGTK.cmake:
1997 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
1999 [EFL] Support Encrypted Media Extensions.
2000 https://bugs.webkit.org/show_bug.cgi?id=134750
2002 Reviewed by Gyuyoung Kim.
2004 Webkit needs to play encrypted media contents when media player
2005 is played by Media source extensions and normal video procedure.
2007 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2009 2014-07-08 Alex Christensen <achristensen@webkit.org>
2011 Steps towards CMake on Windows.
2012 https://bugs.webkit.org/show_bug.cgi?id=134716
2014 Reviewed by Martin Robinson.
2017 Added AppleWin and WinCairo to list of CMake ports.
2018 * Source/cmake/OptionsAppleWin.cmake: Added.
2019 * Source/cmake/OptionsWinCairo.cmake: Added.
2020 * Source/cmake/OptionsWindows.cmake:
2021 Windows needs to use the system malloc. Other options to come.
2023 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2025 [EFL] Support Geolocation
2026 https://bugs.webkit.org/show_bug.cgi?id=134439
2028 Reviewed by Antonio Gomes.
2030 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2032 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2034 Broken build with build-webkit --no-video
2035 https://bugs.webkit.org/show_bug.cgi?id=134587
2037 Reviewed by Darin Adler.
2039 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2041 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2043 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2045 [GTK] The list of features shown by cmake is not accurate
2046 https://bugs.webkit.org/show_bug.cgi?id=134588
2048 Reviewed by Gustavo Noronha Silva.
2050 The problem is that some options might change after the feature
2051 list has been printed.
2053 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2054 setting the default values of features and set WEBGL value
2055 depending on the dependencies, and API_TEST depending on whether
2056 developer mode is enabled or not.
2058 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2060 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2061 https://bugs.webkit.org/show_bug.cgi?id=134578
2063 Reviewed by Gyuyoung Kim.
2065 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2066 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2067 disable related option if it is not ON.
2069 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2070 * Source/cmake/OptionsGTK.cmake: Ditto.
2071 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2073 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2075 [GTK] make dist is broken
2076 https://bugs.webkit.org/show_bug.cgi?id=134542
2078 Reviewed by Martin Robinson.
2080 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2082 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2084 [CMake] Add necessary support for building for the Wayland target
2085 https://bugs.webkit.org/show_bug.cgi?id=134160
2087 Reviewed by Darin Adler.
2089 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2090 is enabled, and that its version matches the version of the generic package. Same
2091 for the gtk+-wayland-3.0 package and the Wayland target.
2092 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2093 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2094 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2095 so they keep building the TestNetscapePlugin target.
2096 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2097 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2098 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2099 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2100 the minimum required version as soon as that target is enabled. Only search for GLX
2101 if the X11 target is enabled.
2103 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2105 Add support for HTMLImageElement's sizes attribute
2106 https://bugs.webkit.org/show_bug.cgi?id=133620
2108 Reviewed by Dean Jackson.
2110 Added an ENABLE_PICTURE_SIZES compile flag.
2112 * Source/cmake/WebKitFeatures.cmake:
2113 * Source/cmakeconfig.h.cmake:
2115 2014-06-26 Daniel Bates <dabates@apple.com>
2117 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2118 https://bugs.webkit.org/show_bug.cgi?id=134309
2119 <rdar://problem/17427385>
2121 Reviewed by Darin Adler.
2123 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2126 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2128 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2130 Remove build guard for progress element
2131 https://bugs.webkit.org/show_bug.cgi?id=134292
2133 Reviewed by Benjamin Poulain.
2135 The build flag is no longer needed as it is always on.
2137 * Source/cmake/WebKitFeatures.cmake:
2138 * Source/cmakeconfig.h.cmake:
2140 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2142 [EFL] Platform support for WebSpeech feature.
2143 https://bugs.webkit.org/show_bug.cgi?id=116438
2145 Reviewed by Csaba Osztrogonác.
2147 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2149 * Source/cmake/OptionsEfl.cmake:
2150 * Source/cmake/WebKitFeatures.cmake:
2152 2014-06-23 Philippe Normand <pnormand@igalia.com>
2154 Unreviewed, GTK build fix after r170266.
2156 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2158 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2160 Disable gamepad feature on EFL and GTK ports by default
2161 https://bugs.webkit.org/show_bug.cgi?id=134169
2163 Reviewed by Brady Eidson.
2165 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
2167 2014-06-21 Brady Eidson <beidson@apple.com>
2169 Gamepad API - Deprecate the existing implementation
2170 https://bugs.webkit.org/show_bug.cgi?id=134108
2172 Reviewed by Timothy Hatcher.
2174 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2175 -Add the "Deprecated" suffix to some implementation files
2177 * Source/cmake/OptionsEfl.cmake:
2178 * Source/cmake/OptionsGTK.cmake:
2179 * Source/cmake/WebKitFeatures.cmake:
2180 * Source/cmakeconfig.h.cmake:
2182 2014-06-21 Commit Queue <commit-queue@webkit.org>
2184 Unreviewed, rolling out r170244.
2185 https://bugs.webkit.org/show_bug.cgi?id=134157
2187 GTK/EFL bindings generator works differently, making this
2188 patch not work there. Will fix entire patch after a rollout.
2189 (Requested by bradee-oh on #webkit).
2193 "Gamepad API - Deprecate the existing implementation"
2194 https://bugs.webkit.org/show_bug.cgi?id=134108
2195 http://trac.webkit.org/changeset/170244
2197 2014-06-21 Brady Eidson <beidson@apple.com>
2199 Gamepad API - Deprecate the existing implementation
2200 https://bugs.webkit.org/show_bug.cgi?id=134108
2202 Reviewed by Timothy Hatcher.
2204 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2205 -Add the "Deprecated" suffix to some implementation files
2207 * Source/cmake/OptionsEfl.cmake:
2208 * Source/cmake/OptionsGTK.cmake:
2209 * Source/cmake/WebKitFeatures.cmake:
2210 * Source/cmakeconfig.h.cmake:
2212 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2214 Removing PAGE_VISIBILITY_API compile guard.
2215 https://bugs.webkit.org/show_bug.cgi?id=133844
2217 Reviewed by Gavin Barraclough.
2219 * Source/cmake/OptionsEfl.cmake:
2220 * Source/cmake/OptionsGTK.cmake:
2221 * Source/cmake/WebKitFeatures.cmake:
2222 * Source/cmakeconfig.h.cmake:
2224 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2226 [EFL][CMAKE] Disable WebKit1 build as a default
2227 https://bugs.webkit.org/show_bug.cgi?id=134093
2229 Reviewed by Gyuyoung Kim.
2231 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2233 * Source/cmake/OptionsEfl.cmake:
2235 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2237 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2238 https://bugs.webkit.org/show_bug.cgi?id=130389
2240 Reviewed by Mark Lam.
2242 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2243 into !ENABLE(JIT) since they are mutually exclusive.
2245 * Source/cmake/OptionsEfl.cmake:
2246 * Source/cmake/OptionsGTK.cmake:
2247 * Source/cmake/WebKitFeatures.cmake:
2248 * Source/cmakeconfig.h.cmake:
2250 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2252 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2253 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2254 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2255 by the plugin process, but it is searched and utilized separately.
2257 Rubber-stamped by Carlos Garcia Campos.
2259 * Source/cmake/OptionsGTK.cmake:
2261 2014-06-16 Commit Queue <commit-queue@webkit.org>
2263 Unreviewed, rolling out r170003.
2264 https://bugs.webkit.org/show_bug.cgi?id=133938
2266 This patch broke GTK build (Requested by kczech on #webkit).
2270 "[EFL] Platform support for WebSpeech feature."
2271 https://bugs.webkit.org/show_bug.cgi?id=116438
2272 http://trac.webkit.org/changeset/170003
2274 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2276 [EFL] Platform support for WebSpeech feature.
2277 https://bugs.webkit.org/show_bug.cgi?id=116438
2279 Reviewed by Gyuyoung Kim.
2281 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2283 * Source/cmake/OptionsEfl.cmake:
2284 * Source/cmake/WebKitFeatures.cmake:
2286 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2288 [EFL] Remove duplicated compiler flag
2289 https://bugs.webkit.org/show_bug.cgi?id=133838
2291 Reviewed by Anders Carlsson.
2293 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2294 it added to common compiler options. So, it is duplicated.
2296 * Source/cmake/WebKitHelpers.cmake:
2298 2014-06-11 Commit Queue <commit-queue@webkit.org>
2300 Unreviewed, rolling out r169877.
2301 https://bugs.webkit.org/show_bug.cgi?id=133784
2303 rollout wrong build fix approach for EFL port (Requested by
2304 gyuyoung on #webkit).
2308 "Unreviewed, EFL build fix since r169869."
2309 http://trac.webkit.org/changeset/169877
2311 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2313 Unreviewed, EFL build fix since r169869.
2315 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2317 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2319 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2321 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2323 * Source/cmake/WebKitHelpers.cmake:
2325 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2327 [GTK] Make it possible to build with FTL enabled
2328 https://bugs.webkit.org/show_bug.cgi?id=133219
2330 Reviewed by Philippe Normand.
2332 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2334 * Source/cmake/OptionsGTK.cmake:
2336 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2338 [CMake] Clean up FAST_MOBILE_SCROLLING
2339 https://bugs.webkit.org/show_bug.cgi?id=133342
2341 Reviewed by Gyuyoung Kim.
2343 FAST_MOBILE_SCROLLING was removed in r168726.
2345 * Source/cmake/OptionsEfl.cmake:
2346 * Source/cmake/OptionsGTK.cmake:
2347 * Source/cmake/WebKitFeatures.cmake:
2348 * Source/cmakeconfig.h.cmake:
2350 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2353 https://bugs.webkit.org/show_bug.cgi?id=132863
2355 Reviewed by Csaba Osztrogonác.
2357 * Source/cmake/OptionsEfl.cmake:
2358 * Source/cmake/OptionsGTK.cmake:
2359 * Source/cmake/WebKitFeatures.cmake:
2360 * Source/cmakeconfig.h.cmake:
2362 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2364 Allow building CMake based ports with WEB_REPLAY
2365 https://bugs.webkit.org/show_bug.cgi?id=133154
2367 Reviewed by Csaba Osztrogonác.
2369 * Source/cmake/WebKitFeatures.cmake:
2370 * Source/cmakeconfig.h.cmake:
2372 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2374 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2375 https://bugs.webkit.org/show_bug.cgi?id=132907
2377 Reviewed by Gyuyoung Kim.
2379 * Source/cmake/FindLIBCXXABI.cmake: Added.
2380 * Source/cmake/OptionsEfl.cmake:
2382 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2384 [EFL] Turn on ENABLE_CSS_FILTERS
2385 https://bugs.webkit.org/show_bug.cgi?id=133153
2387 Reviewed by Gyuyoung Kim.
2389 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2391 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2393 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2394 https://bugs.webkit.org/show_bug.cgi?id=132819
2396 Reviewed by Carlos Garcia Campos.
2398 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2400 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2401 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2403 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2405 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2407 [CMake] Support building with Debug Fission
2408 https://bugs.webkit.org/show_bug.cgi?id=131177
2410 Reviewed by Philippe Normand.
2412 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2413 of http://gcc.gnu.org/wiki/DebugFission.
2415 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2417 [GTK] Rename translation domain as WebKit2GTK-3.0
2418 https://bugs.webkit.org/show_bug.cgi?id=132953
2420 Reviewed by Gustavo Noronha Silva.
2422 * Source/cmake/OptionsGTK.cmake:
2424 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2426 support for navigator.hardwareConcurrency
2427 https://bugs.webkit.org/show_bug.cgi?id=132588
2429 Reviewed by Filip Pizlo.
2431 * Source/cmake/OptionsEfl.cmake:
2432 * Source/cmake/OptionsGTK.cmake:
2433 * Source/cmake/WebKitFeatures.cmake:
2434 * Source/cmakeconfig.h.cmake:
2436 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2438 Remove CSS_STICKY_POSITION guards
2439 https://bugs.webkit.org/show_bug.cgi?id=132676
2441 Reviewed by Simon Fraser.
2443 * Source/cmake/OptionsEfl.cmake:
2444 * Source/cmake/OptionsGTK.cmake:
2445 * Source/cmake/WebKitFeatures.cmake:
2446 * Source/cmakeconfig.h.cmake:
2448 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2450 Unreviewed. Bump version numbers.
2452 * Source/cmake/OptionsGTK.cmake:
2454 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2456 [GTK][CMake] Unable to do make install
2457 https://bugs.webkit.org/show_bug.cgi?id=130188
2459 Reviewed by Carlos Garcia Campos.
2461 Only try to install the HTML documentation if the build is configured to generate it via
2462 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2463 to keep the HTML documentation directory as an installation source.
2465 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2466 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2467 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2468 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2469 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2471 2014-05-09 Anders Carlsson <andersca@apple.com>
2473 Rename WebKit2.framework to WebKit.framework
2474 https://bugs.webkit.org/show_bug.cgi?id=132743
2475 <rdar://problem/15920046>
2477 Reviewed by Dan Bernstein.
2480 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2482 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2485 2014-05-06 David Kilzer <ddkilzer@apple.com>
2487 Add Makefile targets for copying static libraries (LLVM and WKSI)
2488 <http://webkit.org/b/132619>
2490 Reviewed by Mark Rowe.
2493 (MODULES): Add WebKitLibraries.
2495 2014-05-06 Commit Queue <commit-queue@webkit.org>
2497 Unreviewed, rolling out r168304.
2498 https://bugs.webkit.org/show_bug.cgi?id=132607
2500 Broke the build (Requested by KaL on #webkit).
2504 "[GTK][CMake] Unable to do make install"
2505 https://bugs.webkit.org/show_bug.cgi?id=130188
2506 http://trac.webkit.org/changeset/168304
2508 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2510 [GTK][CMake] Unable to do make install
2511 https://bugs.webkit.org/show_bug.cgi?id=130188
2513 Reviewed by Carlos Garcia Campos.
2515 Only try to install the HTML documentation if the build is configured to generate it via
2516 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2517 to keep the HTML documentation directory as an installation source.
2519 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2520 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2521 never added to the default target, but will be triggered by build-webkit, so that
2522 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2523 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2525 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2527 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2528 https://bugs.webkit.org/show_bug.cgi?id=132525
2530 Reviewed by Martin Robinson.
2532 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2533 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2534 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2536 2014-05-01 David Kilzer <ddkilzer@apple.com>
2538 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2539 <http://webkit.org/b/132432>
2541 Reviewed by Tim Horton.
2543 * Source/cmake/WebKitFeatures.cmake:
2544 * Source/cmakeconfig.h.cmake:
2545 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2547 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2549 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2551 Reviewed by Dan Bernstein/Anders Carlsson.
2553 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2554 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2556 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2558 Let Xcode have its way with the WebKit workspace.
2560 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2561 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2563 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2565 [GTK] Make it easier to run CMake for downstreams
2566 https://bugs.webkit.org/show_bug.cgi?id=132370
2568 Reviewed by Carlos Garcia Campos.
2570 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2572 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2574 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2575 https://bugs.webkit.org/show_bug.cgi?id=132176
2577 Reviewed by Gyuyoung Kim.
2579 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2581 * Source/cmake/OptionsEfl.cmake:
2583 2014-04-22 Alex Christensen <achristensen@webkit.org>
2585 Removed old stdbool and inttypes headers.
2586 https://bugs.webkit.org/show_bug.cgi?id=131966
2588 Reviewed by Brent Fulgham.
2590 * Source/cmake/OptionsWindows.cmake:
2591 * Source/cmake/WebKitPackaging.cmake:
2592 Removed references to os-win32 directory.
2594 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2596 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2598 Rubber-stamped by Carlos Garcia Campos.
2600 * Source/cmake/WebKitFeatures.cmake:
2602 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2604 Empty RenderInline objects should not be line break objects.
2606 https://bugs.webkit.org/show_bug.cgi?id=131861
2607 <rdar://problem/15663617>
2609 Reviewed by David Hyatt.
2611 * ManualTests/empty-inline-as-line-break-position.html: Added.
2612 This issue wouldn't reproduce in WebKitTestRunner.
2614 2014-04-19 Brent Fulgham <bfulgham@apple.com>
2616 Revert unintended workspace change in my last commit.
2618 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
2619 Scheme type back to Debug.
2621 2014-04-18 Philippe Normand <pnormand@igalia.com>
2623 Remove NETWORK_INFO support
2624 https://bugs.webkit.org/show_bug.cgi?id=131841
2626 Reviewed by Gyuyoung Kim.
2628 * Source/cmake/OptionsEfl.cmake:
2629 * Source/cmake/OptionsGTK.cmake:
2630 * Source/cmake/WebKitFeatures.cmake:
2631 * Source/cmakeconfig.h.cmake:
2633 2014-04-17 Darin Adler <darin@apple.com>
2635 Try to fix EFL and GTK builds.
2637 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
2638 * Source/cmake/OptionsGTK.cmake: Ditto.
2639 * Source/cmakeconfig.h.cmake: Ditto.
2641 2014-04-16 Brendan Long <b.long@cablelabs.com>
2643 [GTK][CMAKE] build-webkit doesn't detect when the build fails
2644 https://bugs.webkit.org/show_bug.cgi?id=130148
2646 Reviewed by Martin Robinson.
2648 * 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.
2650 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
2652 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
2653 https://bugs.webkit.org/show_bug.cgi?id=131725
2655 Reviewed by Philippe Normand.
2657 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
2658 instead of GTK_UNIX_PRINTING_FOUND and set the macro
2659 HAVE_GTK_UNIX_PRINTING to 1 when found.
2661 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
2663 Web Replay: memoize nondeterministic attributes of the Navigator interface
2664 https://bugs.webkit.org/show_bug.cgi?id=131340
2666 Reviewed by Timothy Hatcher.
2668 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
2670 2014-04-09 Brendan Long <b.long@cablelabs.com>
2672 [GStreamer] Expose MPEG-TS metadata
2673 https://bugs.webkit.org/show_bug.cgi?id=122001
2675 Reviewed by Eric Carlson.
2677 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
2678 * Source/cmake/OptionsEfl.cmake: Same.
2679 * Source/cmake/OptionsGTK.cmake: Same.
2681 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
2683 Web Replay: memoize nondeterministic attributes of the Screen interface
2684 https://bugs.webkit.org/show_bug.cgi?id=131339
2686 Reviewed by Timothy Hatcher.
2688 * ManualTests/inspector/replay-window-screen.html: Added.
2690 2014-04-08 Martin Robinson <mrobinson@igalia.com>
2692 [GTK] Remove the WebKitGTK+ WebKit 1 code
2693 https://bugs.webkit.org/show_bug.cgi?id=131399
2695 Reviewed by Anders Carlsson.
2697 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
2698 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
2700 2014-04-08 Dan Bernstein <mitz@apple.com>
2702 Added bmalloc to the WebKit workspace.
2703 https://bugs.webkit.org/show_bug.cgi?id=131362
2705 Reviewed by Geoff Garen.
2707 * WebKit.xcworkspace/contents.xcworkspacedata:
2708 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2709 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2711 2014-04-08 Geoffrey Garen <ggaren@apple.com>
2713 Build bmalloc on iOS too
2714 https://bugs.webkit.org/show_bug.cgi?id=131381
2716 Reviewed by Andreas Kling.
2718 * Source/Makefile: Build it.
2720 2014-04-07 Geoffrey Garen <ggaren@apple.com>
2722 Build bmalloc on Mac
2723 https://bugs.webkit.org/show_bug.cgi?id=131333
2725 Reviewed by Mark Rowe.
2728 * WebKitBuild: Added.
2729 * WebKitBuild/Debug: Added.
2731 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
2733 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
2734 https://bugs.webkit.org/show_bug.cgi?id=131257
2736 Reviewed by Gyuyoung Kim.
2738 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
2740 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2742 [GTK] Stop trying to install WebKit1 documentation
2743 https://bugs.webkit.org/show_bug.cgi?id=131278
2745 Reviewed by Martin Robinson.
2747 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
2748 built anymore since r166584. This fixes `make install'.
2750 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
2752 Web Replay: capture and replay wheel events and scroll commands
2753 https://bugs.webkit.org/show_bug.cgi?id=129402
2755 Reviewed by Timothy Hatcher.
2757 * ManualTests/inspector/replay-wheel-events.html: Added.
2759 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2761 [GTK][CMake] Remove FindXt.cmake.
2762 https://bugs.webkit.org/show_bug.cgi?id=131227
2764 Reviewed by Anders Carlsson.
2766 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
2768 * Source/cmake/FindXt.cmake: Removed.
2769 * Source/cmake/OptionsGTK.cmake:
2771 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
2773 [EFL] Build error due to changed path of generated js files.
2774 https://bugs.webkit.org/show_bug.cgi?id=131215
2776 Reviewed by Gyuyoung Kim.
2778 r166648 fixed the generation of some .js files on GTK. Due to some
2779 changes in the paths it causes a build error on EFL.
2781 * Source/PlatformEfl.cmake:
2782 Replaced path for two derived source files.
2784 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2786 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
2787 https://bugs.webkit.org/show_bug.cgi?id=131095
2789 Reviewed by Martin Robinson.
2791 One needs to take into account OpenGL's include directory found via
2792 find_package() when looking for glx.h, since if the former is a
2793 non-standard location the latter will also be. If this is not it is
2794 possible that OpenGL is found but GLX support is not properly detected.
2796 * Source/cmake/OptionsGTK.cmake:
2798 2014-04-02 Martin Robinson <mrobinson@igalia.com>
2800 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
2801 https://bugs.webkit.org/show_bug.cgi?id=130343
2803 Reviewed by Gustavo Noronha Silva.
2805 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
2807 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
2809 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2811 [CMake] Drop port check from FindEGL.cmake.
2812 https://bugs.webkit.org/show_bug.cgi?id=131091
2814 Reviewed by Gyuyoung Kim.
2816 There is no reason to mark some variables as advanced only for the
2819 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
2820 as advanced regardless of the port.
2822 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2824 Fix the !ENABLE(BATTERY_STATUS) build
2825 https://bugs.webkit.org/show_bug.cgi?id=130183
2827 Reviewed by Anders Carlsson.
2829 * Source/cmake/OptionsEfl.cmake:
2831 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2833 [CMake][GTK] Do not expand variables twice in if() checks.
2834 https://bugs.webkit.org/show_bug.cgi?id=130964
2836 Reviewed by Martin Robinson.
2838 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
2839 to be checked by the if clause. This is not what we want, and
2840 configuration fails when, say, GLX support wasn't found as the if
2841 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
2843 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
2846 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2848 [GTK] Remove scripts code only applicable to autotools
2849 https://bugs.webkit.org/show_bug.cgi?id=130841
2851 Reviewed by Anders Carlsson.
2853 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
2855 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2857 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
2858 https://bugs.webkit.org/show_bug.cgi?id=130936
2860 Reviewed by Carlos Garcia Campos.
2862 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
2864 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
2866 [GTK] Add support for GTK3 plugins
2867 https://bugs.webkit.org/show_bug.cgi?id=130599
2869 Reviewed by Martin Robinson.
2871 * Source/cmake/OptionsGTK.cmake:
2873 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2875 [EFL] Bump glib version from 2.36 to 2.38
2876 https://bugs.webkit.org/show_bug.cgi?id=130886
2878 Reviewed by Csaba Osztrogonác.
2880 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
2882 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
2884 [CSS Shapes] Remove shape-inside support
2885 https://bugs.webkit.org/show_bug.cgi?id=130698
2887 Reviewed by David Hyatt.
2889 * Source/cmake/WebKitFeatures.cmake:
2890 * Source/cmakeconfig.h.cmake:
2892 2014-03-25 Martin Robinson <mrobinson@igalia.com>
2894 [GTK] Remove the autotools build
2895 https://bugs.webkit.org/show_bug.cgi?id=130717
2897 Reviewed by Anders Carlsson.
2899 * .gitignore: Remove references to autotools files.
2900 * GNUmakefile.am: Removed.
2901 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
2902 * Source/autotools/CustomMacros.m4: Removed.
2903 * Source/autotools/FindDependencies.m4: Removed.
2904 * Source/autotools/PrintBuildConfiguration.m4: Removed.
2905 * Source/autotools/ReadCommandLineArguments.m4: Removed.
2906 * Source/autotools/SetupAutoconfHeader.m4: Removed.
2907 * Source/autotools/SetupAutomake.m4: Removed.
2908 * Source/autotools/SetupCompilerFlags.m4: Removed.
2909 * Source/autotools/SetupLibtool.m4: Removed.
2910 * Source/autotools/SetupWebKitFeatures.m4: Removed.
2911 * Source/autotools/Versions.m4: Removed.
2912 * Source/autotools/acinclude.m4: Removed.
2913 * Source/autotools/dolt.m4: Removed.
2914 * Source/autotools/gsettings.m4: Removed.
2915 * Source/cmake/OptionsGTK.cmake:
2916 * autogen.sh: Removed.
2917 * configure.ac: Removed.
2919 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
2921 [EFL] Add ARM64 build support
2922 https://bugs.webkit.org/show_bug.cgi?id=130506
2924 Rubber stamped by Gyuyoung Kim.
2926 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
2928 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2930 [EFL][WK2] Add NETWORK_PROCESS build option
2931 https://bugs.webkit.org/show_bug.cgi?id=130131
2933 Reviewed by Gyuyoung Kim.
2935 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
2938 * Source/cmake/OptionsEfl.cmake:
2940 2014-03-24 Brian Burg <bburg@apple.com>
2942 Web Replay: capture and replay keyboard events
2943 https://bugs.webkit.org/show_bug.cgi?id=130314
2945 Reviewed by Joseph Pecoraro.
2947 * ManualTests/inspector/replay-keyboard-events.html: Added.
2949 2014-03-24 Sangyong Park <sy302.park@gmail.com>
2951 [EFL] Inspector page is not loaded.
2952 https://bugs.webkit.org/show_bug.cgi?id=130661
2954 Reviewed by Gyuyoung Kim.
2956 Inspector page is not loaded, because some javascript files are not installed.
2957 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
2959 * Source/PlatformEfl.cmake:
2961 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
2963 [EFL][GTK] Get CMake to find Freetype2 properly
2964 https://bugs.webkit.org/show_bug.cgi?id=130150
2966 Reviewed by Martin Robinson.
2968 Newer versions of CMake are not able to find Freetype2 correctly.
2969 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
2970 freetype2 repo, because a completely different version number is found in freetype2.pc.
2972 * Source/cmake/FindFreetype2.cmake: Added.
2973 * Source/cmake/OptionsEfl.cmake:
2974 * Source/cmake/OptionsGTK.cmake:
2976 2014-03-20 Brian Burg <bburg@apple.com>
2978 Web Replay: capture and replay mouse events
2979 https://bugs.webkit.org/show_bug.cgi?id=129395
2981 Reviewed by Joseph Pecoraro.
2983 Create a manual test for capture/replay of mouse events.
2984 Copy over the crypto-md5.js library from SunSpider.
2986 * ManualTests/inspector/replay-mouse-events.html: Added.
2987 * ManualTests/inspector/resources/crypto-md5.js: Added.
2989 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
2991 [GTK][CMake] Add support for building with Clang
2992 https://bugs.webkit.org/show_bug.cgi?id=130260
2994 Reviewed by Martin Robinson.
2996 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
2997 to the list C compiler flags as constructed by CMake.
2998 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
2999 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3000 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3001 -fno-tree-dce should be used only for GCC.
3002 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3003 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3005 2014-03-20 Commit Queue <commit-queue@webkit.org>
3007 Unreviewed, rolling out r165962.
3008 https://bugs.webkit.org/show_bug.cgi?id=130512
3010 It broke the build (Requested by Ossy on #webkit).
3014 "[EFL][GTK] Get CMake to find Freetype2 properly"
3015 https://bugs.webkit.org/show_bug.cgi?id=130150
3016 http://trac.webkit.org/changeset/165962
3018 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3020 [EFL][GTK] Get CMake to find Freetype2 properly
3021 https://bugs.webkit.org/show_bug.cgi?id=130150
3023 Reviewed by Csaba Osztrogonác.
3025 Newer versions of CMake are not able to find Freetype2 correctly.
3026 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3027 freetype2 repo, because a completely different version number is found in freetype2.pc.
3029 * Source/cmake/FindFreetype2.cmake: Added.
3030 * Source/cmake/OptionsEfl.cmake:
3031 * Source/cmake/OptionsGTK.cmake:
3033 2014-03-17 Brendan Long <b.long@cablelabs.com>
3035 [GStreamer] human readable language code for tracks
3036 https://bugs.webkit.org/show_bug.cgi?id=124514
3038 Reviewed by Martin Robinson.
3040 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3041 * Source/cmake/FindGStreamer.cmake: Same.
3042 * Source/cmake/OptionsEfl.cmake: Same.
3043 * Source/cmake/OptionsGTK.cmake: Same.
3045 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3047 [GTK][CMake] Credential storage is not enabled
3048 https://bugs.webkit.org/show_bug.cgi?id=130149
3050 Reviewed by Philippe Normand.
3052 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3053 and look libsecret when it's enabled.
3054 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3056 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3058 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3059 https://bugs.webkit.org/show_bug.cgi?id=130155
3061 Reviewed by Philippe Normand.
3063 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3064 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3065 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3067 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3069 [EFL] Enable TOUCH_SLIDER macro.
3070 https://bugs.webkit.org/show_bug.cgi?id=130186
3072 Reviewed by Gyuyoung Kim.
3074 * Source/cmake/OptionsEfl.cmake:
3076 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3078 [GTK][CMake] Build with -fno-rtti
3079 https://bugs.webkit.org/show_bug.cgi?id=130261
3081 Reviewed by Martin Robinson.
3083 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3084 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3085 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3086 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3087 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3088 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3089 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3091 2014-03-16 Brendan Long <b.long@cablelabs.com>
3093 [GStreamer] CMake doesn't find the include path for gstreamer-base
3094 https://bugs.webkit.org/show_bug.cgi?id=130098
3096 Reviewed by Philippe Normand.
3098 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3100 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3102 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3103 https://bugs.webkit.org/show_bug.cgi?id=130276
3104 <rdar://problem/16266927>
3106 Reviewed by Simon Fraser.
3108 * ManualTests/NPN_Invoke/Info.plist:
3109 * ManualTests/NPN_Invoke/main.c:
3110 * ManualTests/accessibility/resources/AppletTest.java:
3112 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3114 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3115 https://bugs.webkit.org/show_bug.cgi?id=130258
3117 Reviewed by Martin Robinson.
3119 GCC compilers 4.7 and later are supported, so there's no need for disabling
3120 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3122 * Source/cmake/WebKitHelpers.cmake:
3124 2014-03-14 Landry Breuil <landry@openbsd.org>
3126 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3127 https://bugs.webkit.org/show_bug.cgi?id=129966
3129 Reviewed by Andreas Kling.
3131 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3132 * Source/autotools/SetupAutomake.m4:
3134 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3136 [CMake] Failure to link with older installations of WebP
3137 https://bugs.webkit.org/show_bug.cgi?id=130195
3139 Reviewed by Gustavo Noronha Silva.
3141 Fix the issue by using a temporary variable as the output parameter
3142 to check_include_files(), setting WEBP_FOUND accordingly later.
3144 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3145 variable in check_include_files(), as it will lead to misleading
3146 results (will always be FALSE). Use a temporary variable instead
3147 and explicitly set WEBP_FOUND to TRUE later if needed.
3149 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3151 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3152 https://bugs.webkit.org/show_bug.cgi?id=130170
3154 Reviewed by Daniel Bates.
3156 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3157 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3158 fake "TestRunner" generator.
3160 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3162 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3163 https://bugs.webkit.org/show_bug.cgi?id=130014
3165 Reviewed by Martin Robinson.
3167 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3169 * Source/cmake/OptionsGTK.cmake:
3170 * Source/cmakeconfig.h.cmake:
3172 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3174 [GTK][CMAKE] Too verbose build output
3175 https://bugs.webkit.org/show_bug.cgi?id=130076
3177 Reviewed by Carlos Garcia Campos.
3179 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3180 works around an issue where cmake --build doesn't support ninja's pretty printing.
3182 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3184 [GTK] Add support for Geoclue2
3185 https://bugs.webkit.org/show_bug.cgi?id=120185
3187 Reviewed by Carlos Garcia Campos.
3189 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3191 Add support for Geoclue2 using autotools.
3193 * Source/autotools/FindDependencies.m4: Add support for handling
3194 both Geoclue 1.0 and 2.0.
3195 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3196 of geoclue that is being used.
3197 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3198 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3199 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3201 Add support for Geoclue2 using CMake.
3203 * Source/cmake/FindGeoClue2.cmake: Added.
3204 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3205 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3207 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3209 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3210 https://bugs.webkit.org/show_bug.cgi?id=130016
3212 Reviewed by Carlos Garcia Campos.
3214 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3215 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3216 HTML version will still run when building the distribution tarball.
3218 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3220 [GTK] [CMake] Clean up library linking
3221 https://bugs.webkit.org/show_bug.cgi?id=129782
3223 Reviewed by Philippe Normand.
3225 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3226 so that unused symbols are not dropped. This is useful when building up shared libraries
3227 from convenience libraries.
3229 2014-03-08 Landry Breuil <landry@openbsd.org>
3231 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3232 https://bugs.webkit.org/show_bug.cgi?id=129973
3234 Reviewed by Martin Robinson.
3236 * Source/autotools/FindDependencies.m4:
3238 2014-03-06 Anders Carlsson <andersca@apple.com>
3240 Build WebKit2 before building WebKit
3241 https://bugs.webkit.org/show_bug.cgi?id=129831
3242 <rdar://problem/15920020>
3244 Reviewed by Dan Bernstein.
3247 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3248 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3250 2014-03-06 Commit Queue <commit-queue@webkit.org>
3252 Unreviewed, rolling out r165193.
3253 http://trac.webkit.org/changeset/165193
3254 https://bugs.webkit.org/show_bug.cgi?id=129823
3256 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3257 env confuses libtool (Requested by zdobersek on #webkit).
3259 * Source/autotools/SetupCompilerFlags.m4:
3261 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3263 [GTK][Autotools] Default to libc++ when compiling with Clang
3264 https://bugs.webkit.org/show_bug.cgi?id=129798
3266 Reviewed by Anders Carlsson.
3268 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3269 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3270 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3272 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3274 [CMake] Ninja generator builds fail with "Argument list too long"
3275 https://bugs.webkit.org/show_bug.cgi?id=129771
3277 Reviewed by Daniel Bates.
3279 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3280 by forcing the use of response files.
3282 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3284 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3285 https://bugs.webkit.org/show_bug.cgi?id=108330
3287 Reviewed by Martin Robinson.
3289 In order to get non-shared debug builds, this patch applied T option for
3290 thin archives to the flags passed to ar when cmake based ports build on linux.
3291 In addition, applied u option which avoids adding a file twice.
3293 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
3294 * Source/cmake/OptionsEfl.cmake:
3295 Removed error messages for non-shared-core debug builds.
3296 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
3298 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
3300 [GTK] Build the Udis86 disassembler
3301 https://bugs.webkit.org/show_bug.cgi?id=129679
3303 Reviewed by Michael Saboff.
3305 * GNUmakefile.am: Add the Udis86_nosources variable.
3306 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
3308 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3310 [GTK] Simplify the GObject DOM bindings API break check into one step
3311 https://bugs.webkit.org/show_bug.cgi?id=129571
3313 Reviewed by Carlos Garcia Campos.
3315 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
3316 Add the check to 'make check.'
3318 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3320 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
3321 https://bugs.webkit.org/show_bug.cgi?id=129502
3323 Reviewed by Carlos Garcia Campos.
3325 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
3327 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
3329 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
3330 https://bugs.webkit.org/show_bug.cgi?id=129031
3332 Reviewed by Csaba Osztrogonác.
3334 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
3336 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
3338 [GTK] WebKit2WebExtension GIR can't be used in vala
3339 https://bugs.webkit.org/show_bug.cgi?id=127179
3341 Reviewed by Martin Robinson.
3343 Add a different pkg-config file for the web extensions API.
3345 * Source/cmake/OptionsGTK.cmake:
3348 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
3350 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
3351 https://bugs.webkit.org/show_bug.cgi?id=129575
3353 Reviewed by Philippe Normand.
3355 * Source/cmake/OptionsEfl.cmake:
3356 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3357 * Source/cmake/OptionsGTK.cmake:
3358 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3359 * Source/cmake/WebKitFeatures.cmake:
3360 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3361 * Source/cmakeconfig.h.cmake:
3362 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
3364 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3366 Enable support of X-Content-Type-Options: nosniff header for EFL
3367 https://bugs.webkit.org/show_bug.cgi?id=128673
3369 Reviewed by Gyuyoung Kim.
3371 * Source/cmake/OptionsEfl.cmake:
3372 Enabled NOSNIFF feature flag for EFL.
3374 2014-02-27 Koop Mast <kwm@FreeBSD.org>
3376 Fallback on checking for libz manualy if zlib.pc isn't available.
3377 https://bugs.webkit.org/show_bug.cgi?id=127061
3379 Reviewed by Gustavo Noronha Silva.
3381 * Source/autotools/FindDependencies.m4:
3383 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
3385 [CSS Grid Layout] Add ENABLE flag
3386 https://bugs.webkit.org/show_bug.cgi?id=129153
3388 Reviewed by Simon Fraser.
3390 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
3391 autotools build systems. The feature is disabled by default for
3394 * Source/autotools/SetupWebKitFeatures.m4:
3395 * Source/cmake/OptionsEfl.cmake:
3396 * Source/cmake/OptionsGTK.cmake:
3397 * Source/cmake/WebKitFeatures.cmake:
3398 * Source/cmakeconfig.h.cmake:
3400 2014-02-24 Martin Robinson <mrobinson@igalia.com>
3402 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
3403 https://bugs.webkit.org/show_bug.cgi?id=128417
3405 Reviewed by Carlos Garcia Campos.
3407 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
3408 may one day be used in the webkitdom config file generation.
3410 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3412 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
3413 https://bugs.webkit.org/show_bug.cgi?id=128961
3415 Reviewed by Ryosuke Niwa.
3417 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
3418 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
3419 EFL port needs not to check "uninitialized" build warning as error in order to
3420 adjust the option to EFL port. This patch don't take it as error temporarily.
3422 * Source/cmake/OptionsEfl.cmake:
3423 * Source/cmake/WebKitHelpers.cmake:
3425 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3427 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3428 https://bugs.webkit.org/show_bug.cgi?id=128434
3430 Reviewed by Anders Carlsson.
3432 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3433 port as well as -fno-tree-dce, like it is used in the autotools build.
3435 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3437 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3438 https://bugs.webkit.org/show_bug.cgi?id=128799
3440 Reviewed by Philippe Normand.
3442 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3443 if building with autotools. cmake system has enabled it as default. So I propose
3444 enabling VIDEO_TRACK as well.
3446 * Source/autotools/SetupWebKitFeatures.m4:
3448 2014-02-14 Commit Queue <commit-queue@webkit.org>
3450 Unreviewed, rolling out r164090.
3451 http://trac.webkit.org/changeset/164090
3452 https://bugs.webkit.org/show_bug.cgi?id=128807
3454 It broke the EFL build (Requested by Ossy on #webkit).
3456 * Source/cmake/OptionsCommon.cmake:
3457 * Source/cmake/OptionsEfl.cmake:
3459 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3461 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3462 https://bugs.webkit.org/show_bug.cgi?id=128434
3464 Extend a fix for EFL to all ports that use GCC. Also include further fixes
3465 that were applied only to the autotools build.
3467 Reviewed by Gyuyoung Kim.
3469 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
3470 as -fno-tree-dce, which is necessary for GTK+.
3471 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
3473 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
3475 [GTK][CMake] Generate GObject DOM bindings .symbols files
3476 https://bugs.webkit.org/show_bug.cgi?id=126210
3478 Reviewed by Martin Robinson.
3480 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
3481 for documentation generation.
3483 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3485 [GTK] MEDIA_CONTROLS_SCRIPT support
3486 https://bugs.webkit.org/show_bug.cgi?id=123097
3488 Reviewed by Jer Noble.
3490 Part of the Autotools and CMake structure to build the media
3493 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
3494 controls script by default.
3495 * Source/cmake/OptionsGTK.cmake: Activated the media controls
3497 * Source/cmake/WebKitFeatures.cmake: Created the option to
3498 activate the controls script.
3499 * Source/cmakeconfig.h.cmake: Created the define template the the
3500 media controls script.
3502 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
3504 [GDB] Add .gdbinit to the list of files ignored by Git
3505 https://bugs.webkit.org/show_bug.cgi?id=128455
3507 Reviewed by Anders Carlsson.
3509 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
3510 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
3511 that covers already removed entries.
3513 2014-02-11 Oliver Hunt <oliver@apple.com>
3515 Make it possible to implement JS builtins in JS
3516 https://bugs.webkit.org/show_bug.cgi?id=127887
3518 Reviewed by Michael Saboff.
3521 * Source/cmake/gtest/CMakeLists.txt:
3523 2014-02-12 Ryan Lortie <desrt@desrt.ca>
3525 'ar T' is not portable and breaks the build on FreeBSD
3526 https://bugs.webkit.org/show_bug.cgi?id=128596
3528 Reviewed by Gustavo Noronha Silva.
3530 Create thin archives only if we are using GNU ar.
3532 * Source/autotools/SetupLibtool.m4:
3534 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
3536 Add the CSS_SHAPE_INSIDE to CMake feature list
3537 https://bugs.webkit.org/show_bug.cgi?id=128530
3539 Reviewed by Gyuyoung Kim.
3541 CSS_SHAPE_INSIDE flag was added in r163333,
3542 this patch is adding this flag to CMake feature list.
3544 * Source/cmake/WebKitFeatures.cmake:
3545 * Source/cmakeconfig.h.cmake:
3547 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
3549 [GTK] Enable touch features
3550 https://bugs.webkit.org/show_bug.cgi?id=98931
3552 Reviewed by Carlos Garcia Campos.
3554 * Source/autotools/SetupWebKitFeatures.m4:
3555 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
3557 2014-02-06 Andreas Kling <akling@apple.com>
3559 Remove unused ENABLE(REPAINT_THROTTLING) flag.
3560 <https://webkit.org/b/128329>
3562 Reviewed by Antti Koivisto.
3564 * Source/cmake/WebKitFeatures.cmake:
3565 * Source/cmakeconfig.h.cmake:
3567 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
3569 [iOS] make should build WebKit2
3570 https://bugs.webkit.org/show_bug.cgi?id=128351
3572 Reviewed by Daniel Bates.
3576 2014-02-05 Andreas Kling <akling@apple.com>
3578 Remove ENABLE(DIRECTORY_UPLOAD).
3579 <https://webkit.org/b/128275>
3581 Rubber-stamped by Ryosuke Niwa.
3583 * Source/autotools/SetupWebKitFeatures.m4:
3584 * Source/cmake/WebKitFeatures.cmake:
3586 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
3588 Remove ENABLE(SVG) guards
3589 https://bugs.webkit.org/show_bug.cgi?id=127991
3591 Reviewed by Sam Weinig.
3593 * Source/autotools/FindDependencies.m4:
3594 * Source/autotools/PrintBuildConfiguration.m4:
3595 * Source/autotools/ReadCommandLineArguments.m4:
3596 * Source/autotools/SetupAutomake.m4:
3597 * Source/autotools/SetupWebKitFeatures.m4:
3598 * Source/cmake/OptionsEfl.cmake:
3599 * Source/cmake/OptionsGTK.cmake:
3600 * Source/cmake/WebKitFeatures.cmake:
3601 * Source/cmakeconfig.h.cmake:
3603 2014-02-04 Andreas Kling <akling@apple.com>
3605 Remove <iframe seamless> support.
3606 <https://webkit.org/b/128213>
3608 Rubber-stamped by Antti Koivisto.
3610 * Source/autotools/SetupWebKitFeatures.m4:
3611 * Source/cmake/WebKitFeatures.cmake:
3612 * Source/cmakeconfig.h.cmake:
3614 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
3616 Remove LEGACY_VIEWPORT_ADAPTION
3617 https://bugs.webkit.org/show_bug.cgi?id=128028
3619 Reviewed by Anders Carlsson.
3621 * Source/cmake/WebKitFeatures.cmake:
3622 * Source/cmakeconfig.h.cmake:
3624 2014-01-31 Oliver Hunt <oliver@apple.com>
3626 Rollout r163195 and related patches
3629 * Source/cmake/gtest/CMakeLists.txt:
3631 2014-01-29 Oliver Hunt <oliver@apple.com>
3633 Make it possible to implement JS builtins in JS
3634 https://bugs.webkit.org/show_bug.cgi?id=127887
3636 Reviewed by Michael Saboff.
3640 * Source/cmake/gtest/CMakeLists.txt:
3642 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3644 [GTK] [CMake] Add support for building against GTK+ 2
3645 https://bugs.webkit.org/show_bug.cgi?id=127959
3647 Reviewed by Anders Carlsson.
3649 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
3650 library API version. When using GTK 2 do not build WebKit 2.
3652 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3654 [GTK] [CMake] Add a "make dist" target
3655 https://bugs.webkit.org/show_bug.cgi?id=116378
3657 Reviewed by Gustavo Noronha Silva.
3659 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
3660 script and then turning the tarfile into a LZMA compressed file.
3662 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
3664 [GTK] Only disable -ftree-dce optimization when compiling with GCC
3665 https://bugs.webkit.org/show_bug.cgi?id=127911
3667 Reviewed by Carlos Garcia Campos.
3669 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
3670 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
3671 at the moment, but is added for the sake of completeness.
3673 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
3675 [EFL] Fix the regression caused by the jsCStack branch merge
3676 https://bugs.webkit.org/show_bug.cgi?id=127898
3678 Reviewed by Zoltan Herczeg.
3680 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
3682 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3684 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
3685 https://bugs.webkit.org/show_bug.cgi?id=127845
3687 Reviewed by Joseph Pecoraro.
3689 * Source/autotools/SetupWebKitFeatures.m4:
3691 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3693 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
3694 https://bugs.webkit.org/show_bug.cgi?id=127840
3696 Reviewed by Mark Lam.
3698 * Source/cmake/WebKitFeatures.cmake:
3699 * Source/cmakeconfig.h.cmake:
3701 2014-01-25 Darin Adler <darin@apple.com>
3703 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
3704 https://bugs.webkit.org/show_bug.cgi?id=127623
3706 Reviewed by Anders Carlsson.
3708 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
3709 * Source/cmake/OptionsGTK.cmake: Ditto.
3710 * Source/cmake/OptionsWinCE.cmake: Ditto.
3712 2014-01-23 Max Vujovic <mvujovic@adobe.com>
3714 Remove CSS Custom Filters code and tests
3715 https://bugs.webkit.org/show_bug.cgi?id=127382
3717 Reviewed by Simon Fraser.
3719 * Source/autotools/FindDependencies.m4:
3720 * Source/autotools/SetupWebKitFeatures.m4:
3721 * Source/cmake/WebKitFeatures.cmake:
3722 * Source/cmakeconfig.h.cmake:
3724 2014-01-22 Martin Robinson <mrobinson@igalia.com>
3726 [GTK][CMake] Add support for building the NetworkProcess
3727 https://bugs.webkit.org/show_bug.cgi?id=127195
3729 Reviewed by Daniel Bates.
3731 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
3732 a name like the WebProcess.
3734 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
3736 [CMAKE] Remove Nix from CMake scripts
3737 https://bugs.webkit.org/show_bug.cgi?id=127264
3739 Reviewed by Anders Carlsson.
3742 * Source/CMakeLists.txt:
3743 * Source/cmake/FindEGL.cmake:
3744 * Source/cmake/OptionsCommon.cmake:
3746 2014-01-18 Anders Carlsson <andersca@apple.com>
3748 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
3749 https://bugs.webkit.org/show_bug.cgi?id=127225
3751 Reviewed by Andreas Kling.
3753 This concludes the removal of over 8.8 million lines of threaded parser code.
3755 * Source/autotools/SetupWebKitFeatures.m4:
3756 * Source/cmake/WebKitFeatures.cmake:
3757 * Source/cmakeconfig.h.cmake:
3759 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
3761 Remove Nix files from WebCore
3762 https://bugs.webkit.org/show_bug.cgi?id=127176
3764 Reviewed by Anders Carlsson.
3766 * Source/cmake/OptionsNix.cmake: Removed.
3768 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
3770 [GTK] Bump the minimum required Clang version to 3.3
3771 https://bugs.webkit.org/show_bug.cgi?id=127178
3773 Reviewed by Martin Robinson.
3775 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
3776 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
3777 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
3779 2014-01-14 Dan Bernstein <mitz@apple.com>
3781 Only use color in make output when it’s going to a terminal.
3783 Reviewed by Mark Rowe.
3787 2014-01-13 Martin Robinson <mrobinson@igalia.com>
3789 [CMake] Mark all dependency include paths and libraries as advanced variables
3790 https://bugs.webkit.org/show_bug.cgi?id=126504
3792 Reviewed by Daniel Bates.
3794 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
3795 * Source/cmake/FindCairo.cmake: Ditto.
3796 * Source/cmake/FindEGL.cmake: Ditto.
3797 * Source/cmake/FindEnchant.cmake: Ditto.
3798 * Source/cmake/FindGLIB.cmake: Ditto.
3799 * Source/cmake/FindGStreamer.cmake: Ditto.
3800 * Source/cmake/FindHarfBuzz.cmake: Ditto.
3801 * Source/cmake/FindLibSoup.cmake: Ditto.
3803 2014-01-13 Martin Robinson <mrobinson@igalia.com>
3805 [GTK][CMake] Add a 'check' target
3806 https://bugs.webkit.org/show_bug.cgi?id=126770
3808 Reviewed by Daniel Bates.
3810 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
3812 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
3814 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
3816 * Source/autotools/Versions.m4: Bump version numbers.
3818 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
3820 [EFL][WK2] Make API tests work again
3821 https://bugs.webkit.org/show_bug.cgi?id=126769
3823 Reviewed by Gyuyoung Kim.
3825 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
3826 [E]WebKit2, respectively, and this causes problems because the logic to find
3827 where WebProcess is to look in the same directory of the running process and
3828 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
3830 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
3831 Gtk port, which allows us to look for WebProcess initially in this directory,
3834 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
3837 2014-01-11 Dan Bernstein <mitz@apple.com>
3839 [Mac] xcodebuild color output is suppressed when using make
3840 https://bugs.webkit.org/show_bug.cgi?id=126815
3842 Reviewed by Anders Carlsson.
3844 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
3845 format its output with color and emphasis.
3847 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
3848 xcodebuild limitations, this restores some of the formatting, but not all of it.
3850 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
3852 Remove the BlackBerry port from trunk
3853 https://bugs.webkit.org/show_bug.cgi?id=126715
3855 Reviewed by Anders Carlsson.