1 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
3 [CMake] Minimum python version should be 2.7.
4 https://bugs.webkit.org/show_bug.cgi?id=140997
6 Reviewed by Csaba Osztrogonác.
10 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
12 Apply feTurbulence spec change to fix zero length vector generation
13 https://bugs.webkit.org/show_bug.cgi?id=140812
15 Reviewed by Darin Adler.
17 Recently a bug with the turbulence algorithm was corrected in the
18 Filter Effects specification.
19 For some seed values this bug allowed zero length vectors to be generated.
20 This resulted in large solid color squares being present in the generated image.
21 The feTurbulence algorithm was updated to reject zero length vectors. This patch
22 applies that change in WebCore.
24 Test: svg/filters/feTurbulence_bad_seeds.html
26 * platform/graphics/filters/FETurbulence.cpp:
27 (WebCore::FETurbulence::initPaint):
28 Added rejection sampling during vector generation to avoid zero length vectors.
30 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
32 [cmake] Remove compiler version calculate cruft
33 https://bugs.webkit.org/show_bug.cgi?id=140885
35 Reviewed by Darin Adler.
37 * Source/cmake/WebKitHelpers.cmake:
39 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
41 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
42 https://bugs.webkit.org/show_bug.cgi?id=140886
44 Reviewed by Žan Doberšek.
46 * Source/cmake/WebKitHelpers.cmake:
48 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
50 [GTK] gtkdoc does not appear in DevHelp
51 https://bugs.webkit.org/show_bug.cgi?id=139369
53 Reviewed by Philippe Normand.
55 Expect the gtkdoc to be generated in folders named with the API version.
57 * Source/PlatformGTK.cmake:
59 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
61 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
62 https://bugs.webkit.org/show_bug.cgi?id=140609
64 Reviewed by Csaba Osztrogonác.
66 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
67 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
68 compilation flags. Those were added after the jsCStack branch merge, but
69 can now be removed since the -ftree-dce issues were fixed in GCC, and
70 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
72 * Source/cmake/OptionsEfl.cmake:
73 * Source/cmake/OptionsGTK.cmake:
75 2015-01-26 Commit Queue <commit-queue@webkit.org>
77 Unreviewed, rolling out r179107.
78 https://bugs.webkit.org/show_bug.cgi?id=140880
80 The GCC in the bots doesn't support the AsyncTask
81 implementation (Requested by KaL on #webkit).
85 "[GTK] Enable IndexedDB"
86 https://bugs.webkit.org/show_bug.cgi?id=98932
87 http://trac.webkit.org/changeset/179107
89 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
91 [GTK] Enable IndexedDB
92 https://bugs.webkit.org/show_bug.cgi?id=98932
94 Reviewed by Žan Doberšek.
96 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
97 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
99 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
101 [GTK] Add initial database process support
102 https://bugs.webkit.org/show_bug.cgi?id=139491
104 Reviewed by Sergio Villar Senin.
106 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
108 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
110 Add a build flag for ES6 class syntax
111 https://bugs.webkit.org/show_bug.cgi?id=140760
113 Reviewed by Michael Saboff.
115 * Source/cmake/WebKitFeatures.cmake:
116 * Source/cmakeconfig.h.cmake:
118 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
120 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
121 https://bugs.webkit.org/show_bug.cgi?id=140049
123 Reviewed by Gyuyoung Kim.
125 * Source/cmake/OptionsCommon.cmake:
127 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
129 Remove ENABLE(INSPECTOR) ifdef guards
130 https://bugs.webkit.org/show_bug.cgi?id=140668
132 Reviewed by Darin Adler.
134 * Source/PlatformEfl.cmake:
135 * Source/cmake/OptionsEfl.cmake:
136 * Source/cmake/OptionsGTK.cmake:
137 * Source/cmake/OptionsMac.cmake:
138 * Source/cmake/WebKitFeatures.cmake:
139 * Source/cmakeconfig.h.cmake:
141 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
143 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
145 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
147 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
149 [CMAKE] Fix cmake warning
150 https://bugs.webkit.org/show_bug.cgi?id=140497
152 Reviewed by Gustavo Noronha Silva.
154 r173155 already tried to fix cmake warning though, the warning is still exist.
155 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
156 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
157 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
158 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
159 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
163 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
165 [GTK] Generate the make dist manifest from a CMake template file
166 https://bugs.webkit.org/show_bug.cgi?id=139387
168 Reviewed by Martin Robinson.
170 Generate manifest.txt from manifest.txt.in. Only expose the dist and
171 distcheck targets for developer builds, as they won't work when
172 building from a tarball because the manifest is not distributed.
174 * Source/PlatformGTK.cmake:
176 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
178 Remove ENABLE(SQL_DATABASE) guards
179 https://bugs.webkit.org/show_bug.cgi?id=140434
181 Reviewed by Darin Adler.
183 * Source/cmake/OptionsMac.cmake:
184 * Source/cmake/WebKitFeatures.cmake:
185 * Source/cmakeconfig.h.cmake:
187 2015-01-11 Sam Weinig <sam@webkit.org>
189 Remove support for SharedWorkers
190 https://bugs.webkit.org/show_bug.cgi?id=140344
192 Reviewed by Anders Carlsson.
194 * Source/cmake/OptionsEfl.cmake:
195 * Source/cmake/OptionsGTK.cmake:
196 * Source/cmake/OptionsMac.cmake:
197 * Source/cmake/WebKitFeatures.cmake:
198 * Source/cmakeconfig.h.cmake:
200 2015-01-10 Dan Bernstein <mitz@apple.com>
202 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
203 https://bugs.webkit.org/show_bug.cgi?id=140339
205 Reviewed by Mark Rowe.
207 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
208 prevents unnecessary rebuilding due to PATH differences.
210 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
212 [GTK][ThreadedCompositor] Add support for threaded compositor.
213 https://bugs.webkit.org/show_bug.cgi?id=118265
215 Reviewed by Martin Robinson.
217 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
218 autotools build systems. The feature is disabled by default.
219 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
220 from the feature flags.
222 * Source/cmake/OptionsEfl.cmake:
223 * Source/cmake/OptionsGTK.cmake:
224 * Source/cmake/WebKitFeatures.cmake:
225 * Source/cmakeconfig.h.cmake:
227 2014-12-23 Alexey Proskuryakov <ap@apple.com>
229 Simplify building with ASan
230 https://bugs.webkit.org/show_bug.cgi?id=139916
232 Reviewed by Mark Rowe.
234 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
236 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
238 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
240 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
242 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
244 Null dereference performing a "TapAndAHalf" gesture in Google search field
246 <https://bugs.webkit.org/show_bug.cgi?id=139506>
247 <rdar://problem/19028828>
249 Reviewed by Darin Adler.
251 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
253 2014-12-10 Dean Jackson <dino@apple.com>
255 Blur filter performance test doesn't provide results
256 https://bugs.webkit.org/show_bug.cgi?id=139462
258 Reviewed by Sam Weinig.
260 This can't currently work under our performance test
261 infrastructure. Move it to a manual test to avoid
262 putting FAILures into the results.
264 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
266 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
268 [GTK][WK2] Add HTML5 Notifications support
269 https://bugs.webkit.org/show_bug.cgi?id=61140
271 Reviewed by Carlos Garcia Campos.
273 * Source/cmake/FindLibNotify.cmake: Added.
274 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
275 libnotify and use it for a default implementation when found.
277 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
279 REGRESSION(r155906): Page content disappears on Tuaw article after loading
280 https://bugs.webkit.org/show_bug.cgi?id=138100
282 Reviewed by Simon Fraser.
284 DRT causes an extra paint which makes it impossible to test this with
287 * ManualTests/float-layer-not-painting.html: Added.
289 2014-12-07 Alberto Garcia <berto@igalia.com>
291 [GTK] WebKit has a new required dependency on GnuTLS
292 https://bugs.webkit.org/show_bug.cgi?id=136158
294 Reviewed by Martin Robinson.
296 Detect if GnuTLS is installed and enable or disable subtle crypto
299 * Source/cmake/OptionsGTK.cmake:
301 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
303 [GTK] Missing API detected in GObject DOM bindings after r176630
304 https://bugs.webkit.org/show_bug.cgi?id=139201
306 Reviewed by Gustavo Noronha Silva.
308 Change GENERATE_BINDINGS macro to receive a list of optional
309 additional dependencies, so that we can add more dependecies
310 without having to change the macro.
312 * Source/cmake/WebKitMacros.cmake:
314 2014-12-05 Simon Fraser <simon.fraser@apple.com>
316 Programmatic scrolling and content changes are not always synchronized
317 https://bugs.webkit.org/show_bug.cgi?id=139245
318 rdar://problem/18833612
320 Reviewed by Anders Carlsson.
322 Manual test that tries to sync layout with programmatic scrolling.
324 * ManualTests/programmatic-scroll-flicker.html: Added.
326 2014-12-04 Alberto Garcia <berto@igalia.com>
328 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
329 https://bugs.webkit.org/show_bug.cgi?id=136576
331 Reviewed by Carlos Garcia Campos.
333 CMake should complain if Accelerated 2D Canvas is explicitly
334 enabled but cairo-gl is not found.
336 * Source/cmake/OptionsGTK.cmake:
338 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
340 [EFL] Add subtle crypto to the build system
341 https://bugs.webkit.org/show_bug.cgi?id=138612
343 Reviewed by Csaba Osztrogonác.
345 * Source/cmake/OptionsEfl.cmake:
347 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
349 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
350 https://bugs.webkit.org/show_bug.cgi?id=139085
352 Reviewed by Andreas Kling.
354 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
355 * Source/cmake/WebKitFeatures.cmake: ditto.
356 * Source/cmakeconfig.h.cmake: ditto.
358 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
360 [EFL] Drop support for the EFL 1.7
361 https://bugs.webkit.org/show_bug.cgi?id=139114
363 Reviewed by Gyuyoung Kim.
365 * Source/cmake/EFLHelpers.cmake: Removed.
366 * Source/cmake/FindEcore.cmake: Removed.
367 * Source/cmake/FindEdje.cmake: Removed.
368 * Source/cmake/FindEet.cmake: Removed.
369 * Source/cmake/FindEeze.cmake: Removed.
370 * Source/cmake/FindEfreet.cmake: Removed.
371 * Source/cmake/FindEina.cmake: Removed.
372 * Source/cmake/FindElementary.cmake: Removed.
373 * Source/cmake/FindEvas.cmake: Removed.
374 * Source/cmake/OptionsEfl.cmake:
376 2014-11-28 Philippe Normand <pnormand@igalia.com>
378 [CMake] Build failure against GStreamer git master
379 https://bugs.webkit.org/show_bug.cgi?id=138872
381 Reviewed by Csaba Osztrogon.
383 * Source/cmake/FindGStreamer.cmake: Simplified the
384 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
385 headers lookup, there's no need to do this manually. Also
386 explicitely check the version specified in GStreamer_FIND_VERSION.
388 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
390 [EFL] Remove E_Dbus dependency
391 https://bugs.webkit.org/show_bug.cgi?id=136355
393 Reviewed by Gyuyoung Kim.
395 * Source/cmake/FindE_DBus.cmake: Removed.
396 * Source/cmake/OptionsEfl.cmake:
398 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
400 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
402 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
404 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
406 [CMake] Use ld.gold if it is available to speedup builds
407 https://bugs.webkit.org/show_bug.cgi?id=137953
409 Reviewed by Carlos Garcia Campos.
411 * Source/cmake/OptionsCommon.cmake:
413 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
415 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
416 https://bugs.webkit.org/show_bug.cgi?id=138840
418 Reviewed by Csaba Osztrogonác.
420 * Source/cmake/OptionsCommon.cmake:
422 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
424 Remove Source/Platform cruft
425 https://bugs.webkit.org/show_bug.cgi?id=138658
427 Reviewed by Anders Carlsson.
430 * Source/Platform: Removed.
432 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
434 Enable Cortex-A53-specific code paths by default if core is detected.
435 https://bugs.webkit.org/show_bug.cgi?id=138499
437 Reviewed by Csaba Osztrogonác.
439 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
440 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
443 Since on ARM64/Linux the part number that cpuinfo reports depends on
444 the core the query is run on, the check is bound to and executed on the
445 available cores one by one.
447 * Source/cmake/OptionsCommon.cmake:
449 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
451 [EFL] Remove unnecessary version check from OptionsEfl.cmake
452 https://bugs.webkit.org/show_bug.cgi?id=138498
454 Reviewed by Csaba Osztrogonác.
456 * Source/cmake/OptionsEfl.cmake:
458 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
460 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
461 https://bugs.webkit.org/show_bug.cgi?id=138465
463 Reviewed by Gyuyoung Kim.
465 * Source/cmake/OptionsEfl.cmake:
467 2014-11-03 Dean Jackson <dino@apple.com>
469 Add ENABLE_FILTERS_LEVEL_2 feature guard.
470 https://bugs.webkit.org/show_bug.cgi?id=138362
472 Reviewed by Tim Horton.
474 Add a new feature define for Level 2 of CSS Filters.
475 http://dev.w3.org/fxtf/filters-2/
477 * Source/cmake/OptionsEfl.cmake:
478 * Source/cmake/OptionsGTK.cmake:
479 * Source/cmake/OptionsMac.cmake:
480 * Source/cmake/WebKitFeatures.cmake:
481 * Source/cmakeconfig.h.cmake:
483 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
485 Workaround for Cortex-A53 erratum 835769
486 https://bugs.webkit.org/show_bug.cgi?id=138315
488 Reviewed by Filip Pizlo.
490 This patch introduces CMake variable and preprocessor macro
491 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
492 code paths, if set true.
494 * Source/cmake/OptionsCommon.cmake:
495 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
497 * Source/cmakeconfig.h.cmake:
498 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
500 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
502 [GTK] Fix the build of FTL JIT
503 https://bugs.webkit.org/show_bug.cgi?id=138298
505 Reviewed by Carlos Garcia Campos.
507 * Source/cmake/OptionsGTK.cmake:
508 Remove the need for the LIBCXXABI package.
510 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
512 REGRESSION(CMake): Make it possible to build without introspection
513 https://bugs.webkit.org/show_bug.cgi?id=138006
515 Reviewed by Philippe Normand.
517 Add ENABLE_INTROSPECTION option.
519 * Source/PlatformGTK.cmake: Dot not add gir global target if
520 introspection is disabled.
521 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
522 introspection is disabled.
524 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
526 [GTK] Support script message handlers WebKitUserContentManager
527 https://bugs.webkit.org/show_bug.cgi?id=133730
529 Reviewed by Carlos Garcia Campos.
531 Support user script message handlers in WebKitUserContentManager.
532 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
533 an option is added to the CMake build files. The option is disabled
534 globally by default, and the WebKitGTK port enables it. On the API
535 level, two new methods to register and unregister names are provided
536 in the "window.webkit" namespace, and on message reception the
537 "WebKitUserContentManager::script-message-received" signal is
538 emitted, using the registered names as signal detail.
540 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
541 ENABLE_USER_MESSAGE_HANDLERS feature by default.
542 * Source/cmake/WebKitFeatures.cmake: Add feature description for
543 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
545 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
547 [GTK] Bump libsoup's minimum version to 2.42.0.
548 https://bugs.webkit.org/show_bug.cgi?id=138086
550 Reviewed by Martin Robinson.
552 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
553 soup-version.h header was added to soup.h in 2.41.4, which then becomes
554 the minimum version required to build the port these days.
556 In addition, since the autotools build system required 2.42.0 before
557 being retired, require the same version here. Version 2.42.0 was also
559 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
561 * Source/cmake/OptionsGTK.cmake:
563 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
565 [EFL] Remove unnecessary defines from OptionsEfl.cmake
566 https://bugs.webkit.org/show_bug.cgi?id=138132
568 Reviewed by Csaba Osztrogonác.
570 * Source/cmake/OptionsEfl.cmake:
572 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
574 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
576 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
578 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
580 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
581 https://bugs.webkit.org/show_bug.cgi?id=137946
583 Reviewed by Gyuyoung Kim.
585 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
587 * Source/cmake/OptionsEfl.cmake:
589 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
591 Fix FTL Native Inlining for EFL
592 https://bugs.webkit.org/show_bug.cgi?id=137774
594 Reviewed by Michael Saboff.
596 Updated CMake for FTL Native Inlining.
599 * Source/cmake/FindClang.cmake: Added.
600 * Source/cmake/OptionsEfl.cmake:
601 * Source/cmakeconfig.h.cmake:
603 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
605 Web Inspector: Generate all Inspector domains together in JavaScriptCore
606 https://bugs.webkit.org/show_bug.cgi?id=137748
608 Reviewed by Brian Burg.
610 * Source/PlatformEfl.cmake:
612 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
614 [GTK] Add initial gestures support
615 https://bugs.webkit.org/show_bug.cgi?id=137812
617 Reviewed by Sergio Villar Senin.
619 Check if the GTK+ version supports gestures or not.
621 * Source/cmake/FindGTK3.cmake:
622 * Source/cmake/OptionsGTK.cmake:
624 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
626 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
627 https://bugs.webkit.org/show_bug.cgi?id=137781
629 Reviewed by Martin Robinson.
631 We used to enable smooth scrolling unconditionally in autotools
632 (via WebKitFeatures.m4), but since the switch to CMake it's
633 unconditionally disabled, so changing the setting doesn't have any
636 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
638 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
640 Removing CUSTOM_PROTOCOLS guard
641 https://bugs.webkit.org/show_bug.cgi?id=137741
643 Reviewed by Benjamin Poulain.
645 * Source/cmake/OptionsEfl.cmake:
647 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
649 [EFL] Enable WebP support.
650 https://bugs.webkit.org/show_bug.cgi?id=136156
652 Reviewed by Gyuyoung Kim.
654 Add WebP package finding rule.
656 * Source/cmake/OptionsEfl.cmake:
658 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
660 [EFL] Enable custom URI schemes with CustomProtocols
661 https://bugs.webkit.org/show_bug.cgi?id=128177
663 Reviewed by Gyuyoung Kim.
665 Fixing ewk_context_url_scheme_register() ewebkit2 API
666 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
668 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
670 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
672 Bump version to 2.7.0
673 https://bugs.webkit.org/show_bug.cgi?id=137301
675 Rubber-stamped by Carlos Garcia Campos.
677 * Source/cmake/OptionsGTK.cmake: Bump version numbers
679 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
681 [EFL] Rename TEST_THEME_DIR macro
682 https://bugs.webkit.org/show_bug.cgi?id=137244
684 Reviewed by Csaba Osztrogonác.
686 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
688 2014-09-27 Dan Bernstein <mitz@apple.com>
690 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
691 https://bugs.webkit.org/show_bug.cgi?id=137053
693 Reviewed by Mark Rowe.
695 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
696 In the build pre-action, pass the --wksi and --llvm options to
697 copy-webkitlibraries-to-product-directory.
698 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
700 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
702 [GTK] Enable CSS_IMAGE_SET in production builds
703 https://bugs.webkit.org/show_bug.cgi?id=137142
705 Reviewed by Alejandro G. Castro.
707 This is required by the inspector to show some of the icons that
710 * Source/cmake/OptionsGTK.cmake:
712 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
714 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
715 https://bugs.webkit.org/show_bug.cgi?id=136377
717 Reviewed by Philippe Normand.
719 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
720 for CMake versions less than 3.
722 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
724 Remove WinCE port from trunk
725 https://bugs.webkit.org/show_bug.cgi?id=136951
727 Reviewed by Alex Christensen.
729 * Source/cmake/OptionsWinCE.cmake: Removed.
730 * Source/cmake/WebKitPackaging.cmake:
732 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
734 [EFL][GTK] Remove WebKit1 related codes
735 https://bugs.webkit.org/show_bug.cgi?id=136853
737 Reviewed by Csaba Osztrogonác.
739 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
742 * Source/PlatformGTK.cmake:
744 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
747 https://bugs.webkit.org/show_bug.cgi?id=136820
749 Reviewed by Csaba Osztrogonác.
751 * Source/cmake/FindICU.cmake:
753 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
755 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
756 https://bugs.webkit.org/show_bug.cgi?id=136814
758 Reviewed by Philippe Normand.
760 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
761 We bundle the wayland-egl dependency with wayland-client and wayland-server
762 and store the resulting variables with the WAYLAND_ prefix. Because of this
763 this line wasn't exporting anything useful.
765 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
769 * Source/cmake/WebKitMacros.cmake:
771 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
773 [JavaScriptCore] Fix FTL on platform EFL.
774 https://bugs.webkit.org/show_bug.cgi?id=133571
776 Reviewed by Filip Pizlo.
780 * Source/cmake/FindLIBCXXABI.cmake: Removed.
781 * Source/cmake/OptionsEfl.cmake:
783 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
786 https://bugs.webkit.org/show_bug.cgi?id=136571
788 Reviewed by Darin Adler.
790 * Source/cmake/OptionsEfl.cmake:
791 * Source/cmake/OptionsGTK.cmake:
792 * Source/cmake/OptionsMac.cmake:
793 * Source/cmake/WebKitFeatures.cmake:
794 * Source/cmakeconfig.h.cmake:
796 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
798 Remove CSS_FILTERS flag
799 https://bugs.webkit.org/show_bug.cgi?id=136529
801 Reviewed by Dirk Schulze.
803 * Source/cmake/OptionsEfl.cmake:
804 * Source/cmake/OptionsGTK.cmake:
805 * Source/cmake/OptionsMac.cmake:
806 * Source/cmake/WebKitFeatures.cmake:
807 * Source/cmakeconfig.h.cmake:
809 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
811 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
812 https://bugs.webkit.org/show_bug.cgi?id=136194
814 Reviewed by Csaba Osztrogonác.
816 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
820 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
822 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
823 https://bugs.webkit.org/show_bug.cgi?id=135560
825 Reviewed by Gyuyoung Kim.
827 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
829 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
831 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
832 https://bugs.webkit.org/show_bug.cgi?id=136343
834 Reviewed by David Kilzer.
836 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
838 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
839 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
841 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
843 [EFL] Share fast/speechsynthesis/ with other ports
844 https://bugs.webkit.org/show_bug.cgi?id=136224
846 Reviewed by Chris Fleizach.
848 Enable WebSpeech for EFL.
850 * Source/cmake/OptionsEfl.cmake:
852 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
854 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
855 https://bugs.webkit.org/show_bug.cgi?id=136127
857 Reviewed by Gyuyoung Kim.
859 Add build support for espeak.
861 * Source/cmake/FindEspeak.cmake: Added.
862 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
864 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
866 [EFL] Build break using clang
867 https://bugs.webkit.org/show_bug.cgi?id=136245
869 Reviewed by Gyuyoung Kim.
871 * Source/cmake/OptionsEfl.cmake:
872 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
873 Some warnings are from system libraries.
875 2014-08-25 Alberto Garcia <berto@igalia.com>
877 [GTK] Unify webkitgtk and webkit2gtk directories
878 https://bugs.webkit.org/show_bug.cgi?id=136209
880 Reviewed by Carlos Garcia Campos.
882 Use webkit2gtk-X.X both for the process binaries and the injected
885 * Source/cmake/OptionsGTK.cmake:
887 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
889 [EFL] Move Efl specific code from Source/CMakeLists.txt
890 https://bugs.webkit.org/show_bug.cgi?id=136206
892 Reviewed by Gyuyoung Kim.
894 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
895 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
897 * Source/CMakeLists.txt:
898 * Source/cmake/OptionsEfl.cmake:
900 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
902 [EFL] Introduce DEVELOPER_MODE
903 https://bugs.webkit.org/show_bug.cgi?id=135884
905 Reviewed by Gyuyoung Kim.
907 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
908 instead of SHARED_CORE.
909 SHARED_CORE can reduce link time and memory consumption but it is slightly different
912 * Source/cmake/OptionsEfl.cmake:
913 * Source/cmake/WebKitHelpers.cmake:
914 Moved fvisibility=hidden to OptionsEfl.cmake
916 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
918 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
919 https://bugs.webkit.org/show_bug.cgi?id=136110
921 Reviewed by Gyuyoung Kim.
923 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
925 * Source/cmake/OptionsEfl.cmake:
927 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
929 [EFL] Apply eflsymbols.filter to WebKit2
930 https://bugs.webkit.org/show_bug.cgi?id=136148
932 Reviewed by Csaba Osztrogonác.
934 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
935 in the eflsymbols.filter.
937 * Source/cmake/OptionsEfl.cmake:
938 * Source/cmake/eflsymbols.filter:
940 2014-08-21 Zalan Bujtas <zalan@apple.com>
942 Enable SATURATED_LAYOUT_ARITHMETIC.
943 https://bugs.webkit.org/show_bug.cgi?id=136106
945 Reviewed by Simon Fraser.
947 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
948 (No measurable performance regression on Mac.)
950 * Source/cmake/OptionsMac.cmake:
951 * Source/cmake/WebKitFeatures.cmake:
952 * Source/cmakeconfig.h.cmake:
954 2014-08-19 Zalan Bujtas <zalan@apple.com>
956 Remove ENABLE(SUBPIXEL_LAYOUT).
957 https://bugs.webkit.org/show_bug.cgi?id=136077
959 Reviewed by Simon Fraser.
961 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
963 * Source/cmake/OptionsEfl.cmake:
964 * Source/cmake/OptionsGTK.cmake:
965 * Source/cmake/OptionsMac.cmake:
966 * Source/cmake/WebKitFeatures.cmake:
967 * Source/cmakeconfig.h.cmake:
969 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
971 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
972 https://bugs.webkit.org/show_bug.cgi?id=135980
974 Reviewed by Martin Robinson.
976 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
977 overrides any other disabled optimization that was prepended to these
978 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
979 lists first in the final list of compilation flags.
981 To avoid -On re-enabling optimizations that we'd like to keep disabled,
982 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
984 * Source/cmake/OptionsCommon.cmake:
985 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
986 * Source/cmake/OptionsGTK.cmake:
988 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
990 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
992 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
994 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
996 [GTK] Disable memory sampler on non-Linux system
997 https://bugs.webkit.org/show_bug.cgi?id=134483
999 Reviewed by Philippe Normand.
1001 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1002 Linux because it uses many Linux-specific features, so we should disable
1003 memory sampler on other systems by default.
1005 * Source/cmake/OptionsGTK.cmake:
1007 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1009 [GTK] HTML API documentation should also be installed versioned
1010 https://bugs.webkit.org/show_bug.cgi?id=135970
1012 Reviewed by Philippe Normand.
1014 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1017 2014-08-14 Tomas Popela <tpopela@redhat.com>
1019 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1020 https://bugs.webkit.org/show_bug.cgi?id=135937
1022 Reviewed by Carlos Garcia Campos.
1026 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1028 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1029 https://bugs.webkit.org/show_bug.cgi?id=135934
1031 Reviewed by Gustavo Noronha Silva.
1033 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1034 The gir files should installed in $datadir/gir-1.0/ together with all other
1035 gir files. We don't need to install introspection files in a versioned
1036 directory because their filenames already contain the binary version. But before
1037 r171598, the files were only installed to the right directory if the
1038 gobject-instrospection pkg-config file was in the same prefix than the one we
1039 wanted to install, because the gir and typelibs directories were extracted from
1040 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1041 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1042 like we do in the autotools build.
1044 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1045 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1046 * Source/cmake/OptionsGTK.cmake: Define
1047 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1049 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1051 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1052 https://bugs.webkit.org/show_bug.cgi?id=135836
1054 Reviewed by Philippe Normand.
1056 * Source/PlatformGTK.cmake: Add install command to also install
1057 the GObject DOM bindings API docs.
1059 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1061 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1062 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1063 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1064 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1067 * Source/cmake/OptionsCommon.cmake:
1069 2014-08-13 Alex Christensen <achristensen@webkit.org>
1071 Progress towards CMake on Mac.
1072 https://bugs.webkit.org/show_bug.cgi?id=135819
1074 Reviewed by Laszlo Gombos.
1076 * Source/cmake/OptionsMac.cmake:
1077 Disable some more features temporarily to get CMake working.
1078 * Source/cmake/WebKitMacros.cmake:
1079 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1081 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1083 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1084 https://bugs.webkit.org/show_bug.cgi?id=135798
1086 Reviewed by Philippe Normand.
1088 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1090 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1091 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1092 https://bugs.webkit.org/show_bug.cgi?id=133317
1094 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1096 Reviewed by Philippe Normand.
1098 No new tests since no new functionality has been added.
1100 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1102 2014-08-11 Commit Queue <commit-queue@webkit.org>
1104 Unreviewed, rolling out r172393.
1105 https://bugs.webkit.org/show_bug.cgi?id=135796
1107 discussion needed about GnuTLS version bump on the bots
1108 (Requested by philn on #webkit).
1112 https://bugs.webkit.org/show_bug.cgi?id=133317
1113 http://trac.webkit.org/changeset/172393
1115 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1116 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1117 https://bugs.webkit.org/show_bug.cgi?id=133317
1119 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1121 Reviewed by Philippe Normand.
1123 No new tests since no new functionality has been added.
1125 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1127 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1129 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1130 https://bugs.webkit.org/show_bug.cgi?id=133316
1132 Reviewed by Philippe Normand.
1134 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1135 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1136 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1138 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1140 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1142 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1144 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1146 [GTK] REGRESSION(r166239): The ld version script is not being used
1147 https://bugs.webkit.org/show_bug.cgi?id=135694
1149 Reviewed by Martin Robinson.
1151 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1152 it as gtksymbols.filter. Also updated it, since some of the symbols
1153 exported were renamed.
1155 * Source/cmake/OptionsGTK.cmake:
1156 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1158 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1160 [GTK] Child processes should be installed in a versioned directory
1161 https://bugs.webkit.org/show_bug.cgi?id=135754
1163 Reviewed by Gustavo Noronha Silva.
1165 Define LIBEXEC_INSTALL_DIR as
1166 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1167 so that the child processes are installed in $libexec/webkitgtk-4.0.
1168 This makes it possible to install 2.6 in parallel to older versions.
1170 * Source/cmake/OptionsGTK.cmake:
1172 2014-08-08 Alex Christensen <achristensen@webkit.org>
1174 Progress towards using CMake on Mac.
1175 https://bugs.webkit.org/show_bug.cgi?id=135662
1177 Reviewed by Laszlo Gombos.
1180 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1181 * Source/cmake/WebKitFeatures.cmake:
1182 * Source/cmakeconfig.h.cmake:
1183 Added features that are needed by the Mac port.
1184 * Source/cmake/OptionsMac.cmake:
1185 Enable CSS_IMAGE_SET based on FeatureDefines.h.
1186 Disable the FTL with CMake for now.
1187 * Source/cmake/OptionsEFL.cmake:
1188 * Source/cmake/OptionsGTK.cmake:
1189 Enable subpixel layout to not conflict with FeatureDefines.h
1191 2014-08-08 Simon Fraser <simon.fraser@apple.com>
1193 Undo some erroneous changes to the Xcode scheme files from r172259.
1195 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1196 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1198 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
1200 [CMake] Drop the required version of CMake down to 2.8.8
1201 https://bugs.webkit.org/show_bug.cgi?id=135713
1203 Reviewed by Alex Christensen.
1205 * CMakeLists.txt: Require CMake 2.8.8.
1207 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
1209 Get rid of INPUT_SPEECH
1210 https://bugs.webkit.org/show_bug.cgi?id=135672
1212 Reviewed by Andreas Kling.
1214 * Source/cmake/OptionsMac.cmake:
1215 * Source/cmake/WebKitFeatures.cmake:
1216 * Source/cmakeconfig.h.cmake:
1218 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
1220 [GTK] Disable IndexedDB
1221 https://bugs.webkit.org/show_bug.cgi?id=135692
1223 Reviewed by Carlos Garcia Campos.
1225 * Source/cmake/OptionsGTK.cmake:
1227 2014-08-06 Dean Jackson <dino@apple.com>
1229 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
1230 https://bugs.webkit.org/show_bug.cgi?id=135675
1232 Reviewed by Sam Weinig.
1234 * Source/cmake/OptionsGTK.cmake:
1235 * Source/cmake/OptionsMac.cmake:
1236 * Source/cmake/WebKitFeatures.cmake:
1237 * Source/cmakeconfig.h.cmake:
1239 2014-08-06 David Farler <dfarler@apple.com>
1241 Unreviewed build fix: Make includes semicolon in assignment.
1243 * Makefile.shared: Remove a ;
1245 2014-08-06 David Farler <dfarler@apple.com>
1247 Set DSYMUTIL_NUM_THREADS to the number of logical cores
1248 https://bugs.webkit.org/show_bug.cgi?id=135655
1250 Reviewed by Mark Rowe.
1252 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
1254 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1256 [GTK] Be able to disable gtk2 dependency
1257 https://bugs.webkit.org/show_bug.cgi?id=135505
1259 Reviewed by Gustavo Noronha Silva.
1261 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
1262 required when it's enabled. It's enabled by default.
1264 * Source/cmake/OptionsGTK.cmake:
1266 2014-08-05 Alex Christensen <achristensen@webkit.org>
1269 https://bugs.webkit.org/show_bug.cgi?id=135620
1271 Reviewed by Laszlo Gombos.
1273 * Source/cmake/OptionsMac.cmake:
1274 Use UDIS86 by default on Mac.
1276 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
1278 Add a flag for the CSS Selectors level 4 implementation
1279 https://bugs.webkit.org/show_bug.cgi?id=135535
1281 Reviewed by Andreas Kling.
1283 * Source/cmake/OptionsEfl.cmake:
1284 * Source/cmake/OptionsGTK.cmake:
1285 * Source/cmake/WebKitFeatures.cmake:
1286 * Source/cmakeconfig.h.cmake:
1288 2014-08-04 Alex Christensen <achristensen@webkit.org>
1290 Progress towards CMake on Mac.
1291 https://bugs.webkit.org/show_bug.cgi?id=135528
1293 Reviewed by Gyuyoung Kim.
1295 * Source/cmake/OptionsMac.cmake:
1296 Made options list based on FeatureDefines.xcconfig files.
1298 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1300 [GTK] Windowing target support should reflect the support in the GTK+ dependency
1301 https://bugs.webkit.org/show_bug.cgi?id=134736
1303 Reviewed by Martin Robinson.
1305 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
1306 support the X11 or Wayland windowing targets -- instead, if there's no support
1307 the specific target is disabled, and an error is thrown only if neither of the
1308 backends is enabled at the end..
1309 For now the X11 target remains enabled by default, and the Wayland target is
1310 kept disabled. Once it's possible to have both targets enabled at runtime in
1311 WebKit, the Wayland target will be enabled as well and we'll leave it to the
1312 GTK+ dependency to determine which targets can be enabled.
1314 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
1316 [CMake] Add FindWayland.cmake
1317 https://bugs.webkit.org/show_bug.cgi?id=135540
1319 Reviewed by Martin Robinson.
1321 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
1322 dependency. For now bundles the wayland-client, wayland-server and
1323 wayland-egl pkg-config targets into one dependency, but these could
1324 be split in the future if necessary.
1326 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
1328 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
1329 https://bugs.webkit.org/show_bug.cgi?id=135553
1331 Reviewed by Gyuyoung Kim.
1333 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
1334 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
1336 * Source/cmake/OptionsEfl.cmake:
1338 2014-08-01 Bear Travis <betravis@adobe.com>
1340 [Feature Queries] Enable Feature Queries on EFL/GTK
1341 https://bugs.webkit.org/show_bug.cgi?id=134902
1343 Reviewed by Benjamin Poulain.
1345 Enable CSS Feature Queries by default on the EFL and GTK
1348 * Source/cmake/OptionsEfl.cmake:
1349 * Source/cmake/OptionsGTK.cmake:
1351 2014-08-01 Alex Christensen <achristensen@webkit.org>
1353 Progress towards cmake on Windows.
1354 https://bugs.webkit.org/show_bug.cgi?id=135484
1356 Reviewed by Martin Robinson.
1359 Added Mac to list of ports, even though it is not done yet.
1360 Changed minimum bison version to version installed on Macs.
1361 * Source/cmake/OptionsAppleWin.cmake:
1362 Added some definitions.
1363 * Source/cmake/OptionsEfl.cmake:
1364 * Source/cmake/OptionsGTK.cmake:
1365 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
1366 * Source/cmake/OptionsMac.cmake: Added blank for now.
1367 * Source/cmake/OptionsWinCairo.cmake:
1368 * Source/cmake/OptionsWindows.cmake:
1369 Added some definitions.
1370 Removed /WX (warnings treated as error while compiling).
1371 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
1373 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
1375 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
1376 https://bugs.webkit.org/show_bug.cgi?id=135501
1378 Reviewed by Gyuyoung Kim.
1380 Use PROJECT_VERSION_MICRO instead.
1382 * Source/cmake/OptionsEfl.cmake:
1383 * Source/cmake/OptionsGTK.cmake:
1384 * Source/cmake/WebKitHelpers.cmake:
1386 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
1388 [EFL] Bump ewebkit version to 1.11
1389 https://bugs.webkit.org/show_bug.cgi?id=135487
1391 Reviewed by Gyuyoung Kim.
1393 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
1395 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
1397 [EFL] Add support for building with Geoclue2.
1398 https://bugs.webkit.org/show_bug.cgi?id=135455
1400 Reviewed by Gyuyoung Kim.
1402 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
1405 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1407 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
1409 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1411 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1413 [GTK] Bump binary version for 2.6
1414 https://bugs.webkit.org/show_bug.cgi?id=133724
1416 Reviewed by Philippe Normand.
1418 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
1419 update library version numbers.
1421 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
1423 [CMake] Bump the minimum required version
1424 https://bugs.webkit.org/show_bug.cgi?id=135382
1426 Reviewed by Gyuyoung Kim.
1428 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
1429 we introduced usage of target_include_directories().
1431 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
1433 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
1434 https://bugs.webkit.org/show_bug.cgi?id=135376
1436 Reviewed by Gyuyoung Kim.
1438 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
1440 * Source/cmake/OptionsEfl.cmake:
1441 * Source/cmake/OptionsGTK.cmake:
1443 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
1445 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
1446 https://bugs.webkit.org/show_bug.cgi?id=135288
1448 Reviewed by Martin Robinson.
1450 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
1451 datadir to pkgconfig
1452 * Source/cmake/OptionsGTK.cmake: define install directories early
1453 enough to be used in FindGObjectIntrospection.cmake
1455 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
1457 Remove CSS_EXCLUSIONS compile flag and leftover code
1458 https://bugs.webkit.org/show_bug.cgi?id=135175
1460 Reviewed by Zoltan Horvath.
1462 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
1463 stubs. This removes the flag and the useless code.
1465 * Source/cmake/WebKitFeatures.cmake:
1466 * Source/cmakeconfig.h.cmake:
1468 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
1470 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
1471 https://bugs.webkit.org/show_bug.cgi?id=135114
1473 Fix build with GStreamer 1.4
1475 Reviewed by Philippe Normand.
1477 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
1478 gst-mpegts component instead of the unstable 1.3.x verstions.
1480 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
1482 [GTK] Simplify make-dist command line arguments
1483 https://bugs.webkit.org/show_bug.cgi?id=134832
1485 Reviewed by Martin Robinson.
1487 * Source/PlatformGTK.cmake: Use --version instead of
1488 --tarball-root when running make-dist.py.
1490 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
1492 Add a manual test for r135044
1494 <https://bugs.webkit.org/show_bug.cgi?id=135044>
1496 Rubber-stamped by Andy Estes.
1498 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
1500 2014-07-18 Dana Burkart <dburkart@apple.com>
1502 Add a new 'analyze' target to the makefile. This will make use of a new
1503 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
1505 https://bugs.webkit.org/show_bug.cgi?id=135057
1506 <rdar://problem/10193187>
1508 Reviewed by David Kilzer.
1514 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
1516 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
1517 https://bugs.webkit.org/show_bug.cgi?id=134963
1519 Reviewed by Gyuyoung Kim.
1521 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
1523 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
1525 2014-07-14 Daniel Bates <dabates@apple.com>
1527 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
1528 https://bugs.webkit.org/show_bug.cgi?id=134905
1529 <rdar://problem/16602779>
1531 Reviewed by Simon Fraser.
1533 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
1534 on the tapped element when processing a touchend as a result of finger pressing and releasing
1535 on the same element that is initially positioned outside the visible content area.
1537 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
1539 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
1541 [GTK] Enable VIDEO_TRACK by default
1542 https://bugs.webkit.org/show_bug.cgi?id=134801
1544 Reviewed by Philippe Normand.
1546 * Source/cmake/OptionsGTK.cmake:
1548 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1550 [GTK][CMake] Add a 'distcheck' target
1551 https://bugs.webkit.org/show_bug.cgi?id=130675
1553 Reviewed by Gustavo Noronha Silva.
1555 * Source/PlatformGTK.cmake: Add distcheck target.
1557 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1559 [GTK] Use the same default options for production builds that previous stable releases
1560 https://bugs.webkit.org/show_bug.cgi?id=134589
1562 Reviewed by Martin Robinson.
1564 Change the default value of some features to match our stable releases.
1565 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
1566 canvas depend on whether cairo-gl is found.
1568 * Source/cmake/FindCairoGL.cmake: Added.
1569 * Source/cmake/OptionsGTK.cmake:
1571 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
1573 [EFL] Support Encrypted Media Extensions.
1574 https://bugs.webkit.org/show_bug.cgi?id=134750
1576 Reviewed by Gyuyoung Kim.
1578 Webkit needs to play encrypted media contents when media player
1579 is played by Media source extensions and normal video procedure.
1581 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
1583 2014-07-08 Alex Christensen <achristensen@webkit.org>
1585 Steps towards CMake on Windows.
1586 https://bugs.webkit.org/show_bug.cgi?id=134716
1588 Reviewed by Martin Robinson.
1591 Added AppleWin and WinCairo to list of CMake ports.
1592 * Source/cmake/OptionsAppleWin.cmake: Added.
1593 * Source/cmake/OptionsWinCairo.cmake: Added.
1594 * Source/cmake/OptionsWindows.cmake:
1595 Windows needs to use the system malloc. Other options to come.
1597 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1599 [EFL] Support Geolocation
1600 https://bugs.webkit.org/show_bug.cgi?id=134439
1602 Reviewed by Antonio Gomes.
1604 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
1606 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
1608 Broken build with build-webkit --no-video
1609 https://bugs.webkit.org/show_bug.cgi?id=134587
1611 Reviewed by Darin Adler.
1613 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
1615 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
1617 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
1619 [GTK] The list of features shown by cmake is not accurate
1620 https://bugs.webkit.org/show_bug.cgi?id=134588
1622 Reviewed by Gustavo Noronha Silva.
1624 The problem is that some options might change after the feature
1625 list has been printed.
1627 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
1628 setting the default values of features and set WEBGL value
1629 depending on the dependencies, and API_TEST depending on whether
1630 developer mode is enabled or not.
1632 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
1634 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
1635 https://bugs.webkit.org/show_bug.cgi?id=134578
1637 Reviewed by Gyuyoung Kim.
1639 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
1640 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
1641 disable related option if it is not ON.
1643 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
1644 * Source/cmake/OptionsGTK.cmake: Ditto.
1645 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
1647 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
1649 [GTK] make dist is broken
1650 https://bugs.webkit.org/show_bug.cgi?id=134542
1652 Reviewed by Martin Robinson.
1654 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
1656 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
1658 [CMake] Add necessary support for building for the Wayland target
1659 https://bugs.webkit.org/show_bug.cgi?id=134160
1661 Reviewed by Darin Adler.
1663 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
1664 is enabled, and that its version matches the version of the generic package. Same
1665 for the gtk+-wayland-3.0 package and the Wayland target.
1666 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
1667 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
1668 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
1669 so they keep building the TestNetscapePlugin target.
1670 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
1671 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
1672 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
1673 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
1674 the minimum required version as soon as that target is enabled. Only search for GLX
1675 if the X11 target is enabled.
1677 2014-06-29 Yoav Weiss <yoav@yoav.ws>
1679 Add support for HTMLImageElement's sizes attribute
1680 https://bugs.webkit.org/show_bug.cgi?id=133620
1682 Reviewed by Dean Jackson.
1684 Added an ENABLE_PICTURE_SIZES compile flag.
1686 * Source/cmake/WebKitFeatures.cmake:
1687 * Source/cmakeconfig.h.cmake:
1689 2014-06-26 Daniel Bates <dabates@apple.com>
1691 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
1692 https://bugs.webkit.org/show_bug.cgi?id=134309
1693 <rdar://problem/17427385>
1695 Reviewed by Darin Adler.
1697 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
1700 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
1702 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
1704 Remove build guard for progress element
1705 https://bugs.webkit.org/show_bug.cgi?id=134292
1707 Reviewed by Benjamin Poulain.
1709 The build flag is no longer needed as it is always on.
1711 * Source/cmake/WebKitFeatures.cmake:
1712 * Source/cmakeconfig.h.cmake:
1714 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
1716 [EFL] Platform support for WebSpeech feature.
1717 https://bugs.webkit.org/show_bug.cgi?id=116438
1719 Reviewed by Csaba Osztrogonác.
1721 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
1723 * Source/cmake/OptionsEfl.cmake:
1724 * Source/cmake/WebKitFeatures.cmake:
1726 2014-06-23 Philippe Normand <pnormand@igalia.com>
1728 Unreviewed, GTK build fix after r170266.
1730 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
1732 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1734 Disable gamepad feature on EFL and GTK ports by default
1735 https://bugs.webkit.org/show_bug.cgi?id=134169
1737 Reviewed by Brady Eidson.
1739 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
1741 2014-06-21 Brady Eidson <beidson@apple.com>
1743 Gamepad API - Deprecate the existing implementation
1744 https://bugs.webkit.org/show_bug.cgi?id=134108
1746 Reviewed by Timothy Hatcher.
1748 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
1749 -Add the "Deprecated" suffix to some implementation files
1751 * Source/cmake/OptionsEfl.cmake:
1752 * Source/cmake/OptionsGTK.cmake:
1753 * Source/cmake/WebKitFeatures.cmake:
1754 * Source/cmakeconfig.h.cmake:
1756 2014-06-21 Commit Queue <commit-queue@webkit.org>
1758 Unreviewed, rolling out r170244.
1759 https://bugs.webkit.org/show_bug.cgi?id=134157
1761 GTK/EFL bindings generator works differently, making this
1762 patch not work there. Will fix entire patch after a rollout.
1763 (Requested by bradee-oh on #webkit).
1767 "Gamepad API - Deprecate the existing implementation"
1768 https://bugs.webkit.org/show_bug.cgi?id=134108
1769 http://trac.webkit.org/changeset/170244
1771 2014-06-21 Brady Eidson <beidson@apple.com>
1773 Gamepad API - Deprecate the existing implementation
1774 https://bugs.webkit.org/show_bug.cgi?id=134108
1776 Reviewed by Timothy Hatcher.
1778 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
1779 -Add the "Deprecated" suffix to some implementation files
1781 * Source/cmake/OptionsEfl.cmake:
1782 * Source/cmake/OptionsGTK.cmake:
1783 * Source/cmake/WebKitFeatures.cmake:
1784 * Source/cmakeconfig.h.cmake:
1786 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1788 Removing PAGE_VISIBILITY_API compile guard.
1789 https://bugs.webkit.org/show_bug.cgi?id=133844
1791 Reviewed by Gavin Barraclough.
1793 * Source/cmake/OptionsEfl.cmake:
1794 * Source/cmake/OptionsGTK.cmake:
1795 * Source/cmake/WebKitFeatures.cmake:
1796 * Source/cmakeconfig.h.cmake:
1798 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
1800 [EFL][CMAKE] Disable WebKit1 build as a default
1801 https://bugs.webkit.org/show_bug.cgi?id=134093
1803 Reviewed by Gyuyoung Kim.
1805 Disable WebKit1 build and enable WebKit2 build for the EFL port.
1807 * Source/cmake/OptionsEfl.cmake:
1809 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1811 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
1812 https://bugs.webkit.org/show_bug.cgi?id=130389
1814 Reviewed by Mark Lam.
1816 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
1817 into !ENABLE(JIT) since they are mutually exclusive.
1819 * Source/cmake/OptionsEfl.cmake:
1820 * Source/cmake/OptionsGTK.cmake:
1821 * Source/cmake/WebKitFeatures.cmake:
1822 * Source/cmakeconfig.h.cmake:
1824 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
1826 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
1827 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
1828 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
1829 by the plugin process, but it is searched and utilized separately.
1831 Rubber-stamped by Carlos Garcia Campos.
1833 * Source/cmake/OptionsGTK.cmake:
1835 2014-06-16 Commit Queue <commit-queue@webkit.org>
1837 Unreviewed, rolling out r170003.
1838 https://bugs.webkit.org/show_bug.cgi?id=133938
1840 This patch broke GTK build (Requested by kczech on #webkit).
1844 "[EFL] Platform support for WebSpeech feature."
1845 https://bugs.webkit.org/show_bug.cgi?id=116438
1846 http://trac.webkit.org/changeset/170003
1848 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
1850 [EFL] Platform support for WebSpeech feature.
1851 https://bugs.webkit.org/show_bug.cgi?id=116438
1853 Reviewed by Gyuyoung Kim.
1855 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
1857 * Source/cmake/OptionsEfl.cmake:
1858 * Source/cmake/WebKitFeatures.cmake:
1860 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1862 [EFL] Remove duplicated compiler flag
1863 https://bugs.webkit.org/show_bug.cgi?id=133838
1865 Reviewed by Anders Carlsson.
1867 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
1868 it added to common compiler options. So, it is duplicated.
1870 * Source/cmake/WebKitHelpers.cmake:
1872 2014-06-11 Commit Queue <commit-queue@webkit.org>
1874 Unreviewed, rolling out r169877.
1875 https://bugs.webkit.org/show_bug.cgi?id=133784
1877 rollout wrong build fix approach for EFL port (Requested by
1878 gyuyoung on #webkit).
1882 "Unreviewed, EFL build fix since r169869."
1883 http://trac.webkit.org/changeset/169877
1885 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1887 Unreviewed, EFL build fix since r169869.
1889 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
1891 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
1893 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1895 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
1897 * Source/cmake/WebKitHelpers.cmake:
1899 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
1901 [GTK] Make it possible to build with FTL enabled
1902 https://bugs.webkit.org/show_bug.cgi?id=133219
1904 Reviewed by Philippe Normand.
1906 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
1908 * Source/cmake/OptionsGTK.cmake:
1910 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
1912 [CMake] Clean up FAST_MOBILE_SCROLLING
1913 https://bugs.webkit.org/show_bug.cgi?id=133342
1915 Reviewed by Gyuyoung Kim.
1917 FAST_MOBILE_SCROLLING was removed in r168726.
1919 * Source/cmake/OptionsEfl.cmake:
1920 * Source/cmake/OptionsGTK.cmake:
1921 * Source/cmake/WebKitFeatures.cmake:
1922 * Source/cmakeconfig.h.cmake:
1924 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1927 https://bugs.webkit.org/show_bug.cgi?id=132863
1929 Reviewed by Csaba Osztrogonác.
1931 * Source/cmake/OptionsEfl.cmake:
1932 * Source/cmake/OptionsGTK.cmake:
1933 * Source/cmake/WebKitFeatures.cmake:
1934 * Source/cmakeconfig.h.cmake:
1936 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1938 Allow building CMake based ports with WEB_REPLAY
1939 https://bugs.webkit.org/show_bug.cgi?id=133154
1941 Reviewed by Csaba Osztrogonác.
1943 * Source/cmake/WebKitFeatures.cmake:
1944 * Source/cmakeconfig.h.cmake:
1946 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1948 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
1949 https://bugs.webkit.org/show_bug.cgi?id=132907
1951 Reviewed by Gyuyoung Kim.
1953 * Source/cmake/FindLIBCXXABI.cmake: Added.
1954 * Source/cmake/OptionsEfl.cmake:
1956 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
1958 [EFL] Turn on ENABLE_CSS_FILTERS
1959 https://bugs.webkit.org/show_bug.cgi?id=133153
1961 Reviewed by Gyuyoung Kim.
1963 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
1965 2014-05-16 Martin Robinson <mrobinson@igalia.com>
1967 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
1968 https://bugs.webkit.org/show_bug.cgi?id=132819
1970 Reviewed by Carlos Garcia Campos.
1972 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
1974 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
1975 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
1977 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
1979 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
1981 [CMake] Support building with Debug Fission
1982 https://bugs.webkit.org/show_bug.cgi?id=131177
1984 Reviewed by Philippe Normand.
1986 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
1987 of http://gcc.gnu.org/wiki/DebugFission.
1989 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
1991 [GTK] Rename translation domain as WebKit2GTK-3.0
1992 https://bugs.webkit.org/show_bug.cgi?id=132953
1994 Reviewed by Gustavo Noronha Silva.
1996 * Source/cmake/OptionsGTK.cmake:
1998 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2000 support for navigator.hardwareConcurrency
2001 https://bugs.webkit.org/show_bug.cgi?id=132588
2003 Reviewed by Filip Pizlo.
2005 * Source/cmake/OptionsEfl.cmake:
2006 * Source/cmake/OptionsGTK.cmake:
2007 * Source/cmake/WebKitFeatures.cmake:
2008 * Source/cmakeconfig.h.cmake:
2010 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2012 Remove CSS_STICKY_POSITION guards
2013 https://bugs.webkit.org/show_bug.cgi?id=132676
2015 Reviewed by Simon Fraser.
2017 * Source/cmake/OptionsEfl.cmake:
2018 * Source/cmake/OptionsGTK.cmake:
2019 * Source/cmake/WebKitFeatures.cmake:
2020 * Source/cmakeconfig.h.cmake:
2022 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2024 Unreviewed. Bump version numbers.
2026 * Source/cmake/OptionsGTK.cmake:
2028 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2030 [GTK][CMake] Unable to do make install
2031 https://bugs.webkit.org/show_bug.cgi?id=130188
2033 Reviewed by Carlos Garcia Campos.
2035 Only try to install the HTML documentation if the build is configured to generate it via
2036 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2037 to keep the HTML documentation directory as an installation source.
2039 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2040 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2041 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2042 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2043 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2045 2014-05-09 Anders Carlsson <andersca@apple.com>
2047 Rename WebKit2.framework to WebKit.framework
2048 https://bugs.webkit.org/show_bug.cgi?id=132743
2049 <rdar://problem/15920046>
2051 Reviewed by Dan Bernstein.
2054 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2056 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2059 2014-05-06 David Kilzer <ddkilzer@apple.com>
2061 Add Makefile targets for copying static libraries (LLVM and WKSI)
2062 <http://webkit.org/b/132619>
2064 Reviewed by Mark Rowe.
2067 (MODULES): Add WebKitLibraries.
2069 2014-05-06 Commit Queue <commit-queue@webkit.org>
2071 Unreviewed, rolling out r168304.
2072 https://bugs.webkit.org/show_bug.cgi?id=132607
2074 Broke the build (Requested by KaL on #webkit).
2078 "[GTK][CMake] Unable to do make install"
2079 https://bugs.webkit.org/show_bug.cgi?id=130188
2080 http://trac.webkit.org/changeset/168304
2082 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2084 [GTK][CMake] Unable to do make install
2085 https://bugs.webkit.org/show_bug.cgi?id=130188
2087 Reviewed by Carlos Garcia Campos.
2089 Only try to install the HTML documentation if the build is configured to generate it via
2090 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2091 to keep the HTML documentation directory as an installation source.
2093 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2094 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2095 never added to the default target, but will be triggered by build-webkit, so that
2096 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2097 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2099 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2101 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2102 https://bugs.webkit.org/show_bug.cgi?id=132525
2104 Reviewed by Martin Robinson.
2106 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2107 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2108 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2110 2014-05-01 David Kilzer <ddkilzer@apple.com>
2112 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2113 <http://webkit.org/b/132432>
2115 Reviewed by Tim Horton.
2117 * Source/cmake/WebKitFeatures.cmake:
2118 * Source/cmakeconfig.h.cmake:
2119 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2121 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2123 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2125 Reviewed by Dan Bernstein/Anders Carlsson.
2127 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2128 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2130 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2132 Let Xcode have its way with the WebKit workspace.
2134 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2135 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2137 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2139 [GTK] Make it easier to run CMake for downstreams
2140 https://bugs.webkit.org/show_bug.cgi?id=132370
2142 Reviewed by Carlos Garcia Campos.
2144 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2146 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2148 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2149 https://bugs.webkit.org/show_bug.cgi?id=132176
2151 Reviewed by Gyuyoung Kim.
2153 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2155 * Source/cmake/OptionsEfl.cmake:
2157 2014-04-22 Alex Christensen <achristensen@webkit.org>
2159 Removed old stdbool and inttypes headers.
2160 https://bugs.webkit.org/show_bug.cgi?id=131966
2162 Reviewed by Brent Fulgham.
2164 * Source/cmake/OptionsWindows.cmake:
2165 * Source/cmake/WebKitPackaging.cmake:
2166 Removed references to os-win32 directory.
2168 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2170 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2172 Rubber-stamped by Carlos Garcia Campos.
2174 * Source/cmake/WebKitFeatures.cmake:
2176 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2178 Empty RenderInline objects should not be line break objects.
2180 https://bugs.webkit.org/show_bug.cgi?id=131861
2181 <rdar://problem/15663617>
2183 Reviewed by David Hyatt.
2185 * ManualTests/empty-inline-as-line-break-position.html: Added.
2186 This issue wouldn't reproduce in WebKitTestRunner.
2188 2014-04-19 Brent Fulgham <bfulgham@apple.com>
2190 Revert unintended workspace change in my last commit.
2192 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
2193 Scheme type back to Debug.
2195 2014-04-18 Philippe Normand <pnormand@igalia.com>
2197 Remove NETWORK_INFO support
2198 https://bugs.webkit.org/show_bug.cgi?id=131841
2200 Reviewed by Gyuyoung Kim.
2202 * Source/cmake/OptionsEfl.cmake:
2203 * Source/cmake/OptionsGTK.cmake:
2204 * Source/cmake/WebKitFeatures.cmake:
2205 * Source/cmakeconfig.h.cmake:
2207 2014-04-17 Darin Adler <darin@apple.com>
2209 Try to fix EFL and GTK builds.
2211 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
2212 * Source/cmake/OptionsGTK.cmake: Ditto.
2213 * Source/cmakeconfig.h.cmake: Ditto.
2215 2014-04-16 Brendan Long <b.long@cablelabs.com>
2217 [GTK][CMAKE] build-webkit doesn't detect when the build fails
2218 https://bugs.webkit.org/show_bug.cgi?id=130148
2220 Reviewed by Martin Robinson.
2222 * 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.
2224 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
2226 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
2227 https://bugs.webkit.org/show_bug.cgi?id=131725
2229 Reviewed by Philippe Normand.
2231 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
2232 instead of GTK_UNIX_PRINTING_FOUND and set the macro
2233 HAVE_GTK_UNIX_PRINTING to 1 when found.
2235 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
2237 Web Replay: memoize nondeterministic attributes of the Navigator interface
2238 https://bugs.webkit.org/show_bug.cgi?id=131340
2240 Reviewed by Timothy Hatcher.
2242 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
2244 2014-04-09 Brendan Long <b.long@cablelabs.com>
2246 [GStreamer] Expose MPEG-TS metadata
2247 https://bugs.webkit.org/show_bug.cgi?id=122001
2249 Reviewed by Eric Carlson.
2251 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
2252 * Source/cmake/OptionsEfl.cmake: Same.
2253 * Source/cmake/OptionsGTK.cmake: Same.
2255 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
2257 Web Replay: memoize nondeterministic attributes of the Screen interface
2258 https://bugs.webkit.org/show_bug.cgi?id=131339
2260 Reviewed by Timothy Hatcher.
2262 * ManualTests/inspector/replay-window-screen.html: Added.
2264 2014-04-08 Martin Robinson <mrobinson@igalia.com>
2266 [GTK] Remove the WebKitGTK+ WebKit 1 code
2267 https://bugs.webkit.org/show_bug.cgi?id=131399
2269 Reviewed by Anders Carlsson.
2271 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
2272 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
2274 2014-04-08 Dan Bernstein <mitz@apple.com>
2276 Added bmalloc to the WebKit workspace.
2277 https://bugs.webkit.org/show_bug.cgi?id=131362
2279 Reviewed by Geoff Garen.
2281 * WebKit.xcworkspace/contents.xcworkspacedata:
2282 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2283 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2285 2014-04-08 Geoffrey Garen <ggaren@apple.com>
2287 Build bmalloc on iOS too
2288 https://bugs.webkit.org/show_bug.cgi?id=131381
2290 Reviewed by Andreas Kling.
2292 * Source/Makefile: Build it.
2294 2014-04-07 Geoffrey Garen <ggaren@apple.com>
2296 Build bmalloc on Mac
2297 https://bugs.webkit.org/show_bug.cgi?id=131333
2299 Reviewed by Mark Rowe.
2302 * WebKitBuild: Added.
2303 * WebKitBuild/Debug: Added.
2305 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
2307 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
2308 https://bugs.webkit.org/show_bug.cgi?id=131257
2310 Reviewed by Gyuyoung Kim.
2312 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
2314 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2316 [GTK] Stop trying to install WebKit1 documentation
2317 https://bugs.webkit.org/show_bug.cgi?id=131278
2319 Reviewed by Martin Robinson.
2321 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
2322 built anymore since r166584. This fixes `make install'.
2324 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
2326 Web Replay: capture and replay wheel events and scroll commands
2327 https://bugs.webkit.org/show_bug.cgi?id=129402
2329 Reviewed by Timothy Hatcher.
2331 * ManualTests/inspector/replay-wheel-events.html: Added.
2333 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2335 [GTK][CMake] Remove FindXt.cmake.
2336 https://bugs.webkit.org/show_bug.cgi?id=131227
2338 Reviewed by Anders Carlsson.
2340 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
2342 * Source/cmake/FindXt.cmake: Removed.
2343 * Source/cmake/OptionsGTK.cmake:
2345 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
2347 [EFL] Build error due to changed path of generated js files.
2348 https://bugs.webkit.org/show_bug.cgi?id=131215
2350 Reviewed by Gyuyoung Kim.
2352 r166648 fixed the generation of some .js files on GTK. Due to some
2353 changes in the paths it causes a build error on EFL.
2355 * Source/PlatformEfl.cmake:
2356 Replaced path for two derived source files.
2358 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2360 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
2361 https://bugs.webkit.org/show_bug.cgi?id=131095
2363 Reviewed by Martin Robinson.
2365 One needs to take into account OpenGL's include directory found via
2366 find_package() when looking for glx.h, since if the former is a
2367 non-standard location the latter will also be. If this is not it is
2368 possible that OpenGL is found but GLX support is not properly detected.
2370 * Source/cmake/OptionsGTK.cmake:
2372 2014-04-02 Martin Robinson <mrobinson@igalia.com>
2374 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
2375 https://bugs.webkit.org/show_bug.cgi?id=130343
2377 Reviewed by Gustavo Noronha Silva.
2379 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
2381 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
2383 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2385 [CMake] Drop port check from FindEGL.cmake.
2386 https://bugs.webkit.org/show_bug.cgi?id=131091
2388 Reviewed by Gyuyoung Kim.
2390 There is no reason to mark some variables as advanced only for the
2393 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
2394 as advanced regardless of the port.
2396 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2398 Fix the !ENABLE(BATTERY_STATUS) build
2399 https://bugs.webkit.org/show_bug.cgi?id=130183
2401 Reviewed by Anders Carlsson.
2403 * Source/cmake/OptionsEfl.cmake:
2405 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2407 [CMake][GTK] Do not expand variables twice in if() checks.
2408 https://bugs.webkit.org/show_bug.cgi?id=130964
2410 Reviewed by Martin Robinson.
2412 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
2413 to be checked by the if clause. This is not what we want, and
2414 configuration fails when, say, GLX support wasn't found as the if
2415 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
2417 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
2420 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2422 [GTK] Remove scripts code only applicable to autotools
2423 https://bugs.webkit.org/show_bug.cgi?id=130841
2425 Reviewed by Anders Carlsson.
2427 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
2429 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2431 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
2432 https://bugs.webkit.org/show_bug.cgi?id=130936
2434 Reviewed by Carlos Garcia Campos.
2436 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
2438 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
2440 [GTK] Add support for GTK3 plugins
2441 https://bugs.webkit.org/show_bug.cgi?id=130599
2443 Reviewed by Martin Robinson.
2445 * Source/cmake/OptionsGTK.cmake:
2447 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2449 [EFL] Bump glib version from 2.36 to 2.38
2450 https://bugs.webkit.org/show_bug.cgi?id=130886
2452 Reviewed by Csaba Osztrogonác.
2454 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
2456 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
2458 [CSS Shapes] Remove shape-inside support
2459 https://bugs.webkit.org/show_bug.cgi?id=130698
2461 Reviewed by David Hyatt.
2463 * Source/cmake/WebKitFeatures.cmake:
2464 * Source/cmakeconfig.h.cmake:
2466 2014-03-25 Martin Robinson <mrobinson@igalia.com>
2468 [GTK] Remove the autotools build
2469 https://bugs.webkit.org/show_bug.cgi?id=130717
2471 Reviewed by Anders Carlsson.
2473 * .gitignore: Remove references to autotools files.
2474 * GNUmakefile.am: Removed.
2475 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
2476 * Source/autotools/CustomMacros.m4: Removed.
2477 * Source/autotools/FindDependencies.m4: Removed.
2478 * Source/autotools/PrintBuildConfiguration.m4: Removed.
2479 * Source/autotools/ReadCommandLineArguments.m4: Removed.
2480 * Source/autotools/SetupAutoconfHeader.m4: Removed.
2481 * Source/autotools/SetupAutomake.m4: Removed.
2482 * Source/autotools/SetupCompilerFlags.m4: Removed.
2483 * Source/autotools/SetupLibtool.m4: Removed.
2484 * Source/autotools/SetupWebKitFeatures.m4: Removed.
2485 * Source/autotools/Versions.m4: Removed.
2486 * Source/autotools/acinclude.m4: Removed.
2487 * Source/autotools/dolt.m4: Removed.
2488 * Source/autotools/gsettings.m4: Removed.
2489 * Source/cmake/OptionsGTK.cmake:
2490 * autogen.sh: Removed.
2491 * configure.ac: Removed.
2493 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
2495 [EFL] Add ARM64 build support
2496 https://bugs.webkit.org/show_bug.cgi?id=130506
2498 Rubber stamped by Gyuyoung Kim.
2500 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
2502 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2504 [EFL][WK2] Add NETWORK_PROCESS build option
2505 https://bugs.webkit.org/show_bug.cgi?id=130131
2507 Reviewed by Gyuyoung Kim.
2509 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
2512 * Source/cmake/OptionsEfl.cmake:
2514 2014-03-24 Brian Burg <bburg@apple.com>
2516 Web Replay: capture and replay keyboard events
2517 https://bugs.webkit.org/show_bug.cgi?id=130314
2519 Reviewed by Joseph Pecoraro.
2521 * ManualTests/inspector/replay-keyboard-events.html: Added.
2523 2014-03-24 Sangyong Park <sy302.park@gmail.com>
2525 [EFL] Inspector page is not loaded.
2526 https://bugs.webkit.org/show_bug.cgi?id=130661
2528 Reviewed by Gyuyoung Kim.
2530 Inspector page is not loaded, because some javascript files are not installed.
2531 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
2533 * Source/PlatformEfl.cmake:
2535 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
2537 [EFL][GTK] Get CMake to find Freetype2 properly
2538 https://bugs.webkit.org/show_bug.cgi?id=130150
2540 Reviewed by Martin Robinson.
2542 Newer versions of CMake are not able to find Freetype2 correctly.
2543 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
2544 freetype2 repo, because a completely different version number is found in freetype2.pc.
2546 * Source/cmake/FindFreetype2.cmake: Added.
2547 * Source/cmake/OptionsEfl.cmake:
2548 * Source/cmake/OptionsGTK.cmake:
2550 2014-03-20 Brian Burg <bburg@apple.com>
2552 Web Replay: capture and replay mouse events
2553 https://bugs.webkit.org/show_bug.cgi?id=129395
2555 Reviewed by Joseph Pecoraro.
2557 Create a manual test for capture/replay of mouse events.
2558 Copy over the crypto-md5.js library from SunSpider.
2560 * ManualTests/inspector/replay-mouse-events.html: Added.
2561 * ManualTests/inspector/resources/crypto-md5.js: Added.
2563 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
2565 [GTK][CMake] Add support for building with Clang
2566 https://bugs.webkit.org/show_bug.cgi?id=130260
2568 Reviewed by Martin Robinson.
2570 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
2571 to the list C compiler flags as constructed by CMake.
2572 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
2573 compiler option to suppress verbose warnings about arguments that went unused by the driver.
2574 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
2575 -fno-tree-dce should be used only for GCC.
2576 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
2577 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
2579 2014-03-20 Commit Queue <commit-queue@webkit.org>
2581 Unreviewed, rolling out r165962.
2582 https://bugs.webkit.org/show_bug.cgi?id=130512
2584 It broke the build (Requested by Ossy on #webkit).
2588 "[EFL][GTK] Get CMake to find Freetype2 properly"
2589 https://bugs.webkit.org/show_bug.cgi?id=130150
2590 http://trac.webkit.org/changeset/165962
2592 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
2594 [EFL][GTK] Get CMake to find Freetype2 properly
2595 https://bugs.webkit.org/show_bug.cgi?id=130150
2597 Reviewed by Csaba Osztrogonác.
2599 Newer versions of CMake are not able to find Freetype2 correctly.
2600 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
2601 freetype2 repo, because a completely different version number is found in freetype2.pc.
2603 * Source/cmake/FindFreetype2.cmake: Added.
2604 * Source/cmake/OptionsEfl.cmake:
2605 * Source/cmake/OptionsGTK.cmake:
2607 2014-03-17 Brendan Long <b.long@cablelabs.com>
2609 [GStreamer] human readable language code for tracks
2610 https://bugs.webkit.org/show_bug.cgi?id=124514
2612 Reviewed by Martin Robinson.
2614 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
2615 * Source/cmake/FindGStreamer.cmake: Same.
2616 * Source/cmake/OptionsEfl.cmake: Same.
2617 * Source/cmake/OptionsGTK.cmake: Same.
2619 2014-03-17 Martin Robinson <mrobinson@igalia.com>
2621 [GTK][CMake] Credential storage is not enabled
2622 https://bugs.webkit.org/show_bug.cgi?id=130149
2624 Reviewed by Philippe Normand.
2626 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
2627 and look libsecret when it's enabled.
2628 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
2630 2014-03-17 Martin Robinson <mrobinson@igalia.com>
2632 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
2633 https://bugs.webkit.org/show_bug.cgi?id=130155
2635 Reviewed by Philippe Normand.
2637 * Source/cmake/FindGTKUnixPrint.cmake: Added.
2638 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
2639 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
2641 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
2643 [EFL] Enable TOUCH_SLIDER macro.
2644 https://bugs.webkit.org/show_bug.cgi?id=130186
2646 Reviewed by Gyuyoung Kim.
2648 * Source/cmake/OptionsEfl.cmake:
2650 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
2652 [GTK][CMake] Build with -fno-rtti
2653 https://bugs.webkit.org/show_bug.cgi?id=130261
2655 Reviewed by Martin Robinson.
2657 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
2658 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
2659 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
2660 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
2661 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
2662 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
2663 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
2665 2014-03-16 Brendan Long <b.long@cablelabs.com>
2667 [GStreamer] CMake doesn't find the include path for gstreamer-base
2668 https://bugs.webkit.org/show_bug.cgi?id=130098
2670 Reviewed by Philippe Normand.
2672 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
2674 2014-03-14 Maciej Stachowiak <mjs@apple.com>
2676 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
2677 https://bugs.webkit.org/show_bug.cgi?id=130276
2678 <rdar://problem/16266927>
2680 Reviewed by Simon Fraser.
2682 * ManualTests/NPN_Invoke/Info.plist:
2683 * ManualTests/NPN_Invoke/main.c:
2684 * ManualTests/accessibility/resources/AppletTest.java:
2686 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
2688 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
2689 https://bugs.webkit.org/show_bug.cgi?id=130258
2691 Reviewed by Martin Robinson.
2693 GCC compilers 4.7 and later are supported, so there's no need for disabling
2694 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
2696 * Source/cmake/WebKitHelpers.cmake:
2698 2014-03-14 Landry Breuil <landry@openbsd.org>
2700 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
2701 https://bugs.webkit.org/show_bug.cgi?id=129966
2703 Reviewed by Andreas Kling.
2705 * Source/autotools/CheckSystemAndBasicDependencies.m4:
2706 * Source/autotools/SetupAutomake.m4:
2708 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
2710 [CMake] Failure to link with older installations of WebP
2711 https://bugs.webkit.org/show_bug.cgi?id=130195
2713 Reviewed by Gustavo Noronha Silva.
2715 Fix the issue by using a temporary variable as the output parameter
2716 to check_include_files(), setting WEBP_FOUND accordingly later.
2718 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
2719 variable in check_include_files(), as it will lead to misleading
2720 results (will always be FALSE). Use a temporary variable instead
2721 and explicitly set WEBP_FOUND to TRUE later if needed.
2723 2014-03-12 Martin Robinson <mrobinson@igalia.com>
2725 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
2726 https://bugs.webkit.org/show_bug.cgi?id=130170
2728 Reviewed by Daniel Bates.
2730 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
2731 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
2732 fake "TestRunner" generator.
2734 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
2736 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
2737 https://bugs.webkit.org/show_bug.cgi?id=130014
2739 Reviewed by Martin Robinson.
2741 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
2743 * Source/cmake/OptionsGTK.cmake:
2744 * Source/cmakeconfig.h.cmake:
2746 2014-03-12 Martin Robinson <mrobinson@igalia.com>
2748 [GTK][CMAKE] Too verbose build output
2749 https://bugs.webkit.org/show_bug.cgi?id=130076
2751 Reviewed by Carlos Garcia Campos.
2753 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
2754 works around an issue where cmake --build doesn't support ninja's pretty printing.
2756 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
2758 [GTK] Add support for Geoclue2
2759 https://bugs.webkit.org/show_bug.cgi?id=120185
2761 Reviewed by Carlos Garcia Campos.
2763 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
2765 Add support for Geoclue2 using autotools.
2767 * Source/autotools/FindDependencies.m4: Add support for handling
2768 both Geoclue 1.0 and 2.0.
2769 * Source/autotools/PrintBuildConfiguration.m4: Print the version
2770 of geoclue that is being used.
2771 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
2772 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
2773 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
2775 Add support for Geoclue2 using CMake.
2777 * Source/cmake/FindGeoClue2.cmake: Added.
2778 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
2779 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
2781 2014-03-10 Martin Robinson <mrobinson@igalia.com>
2783 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
2784 https://bugs.webkit.org/show_bug.cgi?id=130016
2786 Reviewed by Carlos Garcia Campos.
2788 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
2789 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
2790 HTML version will still run when building the distribution tarball.
2792 2014-03-10 Martin Robinson <mrobinson@igalia.com>
2794 [GTK] [CMake] Clean up library linking
2795 https://bugs.webkit.org/show_bug.cgi?id=129782
2797 Reviewed by Philippe Normand.
2799 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
2800 so that unused symbols are not dropped. This is useful when building up shared libraries
2801 from convenience libraries.
2803 2014-03-08 Landry Breuil <landry@openbsd.org>
2805 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
2806 https://bugs.webkit.org/show_bug.cgi?id=129973
2808 Reviewed by Martin Robinson.
2810 * Source/autotools/FindDependencies.m4:
2812 2014-03-06 Anders Carlsson <andersca@apple.com>
2814 Build WebKit2 before building WebKit
2815 https://bugs.webkit.org/show_bug.cgi?id=129831
2816 <rdar://problem/15920020>
2818 Reviewed by Dan Bernstein.
2821 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2822 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2824 2014-03-06 Commit Queue <commit-queue@webkit.org>
2826 Unreviewed, rolling out r165193.
2827 http://trac.webkit.org/changeset/165193
2828 https://bugs.webkit.org/show_bug.cgi?id=129823
2830 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
2831 env confuses libtool (Requested by zdobersek on #webkit).
2833 * Source/autotools/SetupCompilerFlags.m4:
2835 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
2837 [GTK][Autotools] Default to libc++ when compiling with Clang
2838 https://bugs.webkit.org/show_bug.cgi?id=129798
2840 Reviewed by Anders Carlsson.
2842 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
2843 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
2844 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
2846 2014-03-05 Martin Robinson <mrobinson@igalia.com>
2848 [CMake] Ninja generator builds fail with "Argument list too long"
2849 https://bugs.webkit.org/show_bug.cgi?id=129771
2851 Reviewed by Daniel Bates.
2853 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
2854 by forcing the use of response files.
2856 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
2858 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
2859 https://bugs.webkit.org/show_bug.cgi?id=108330
2861 Reviewed by Martin Robinson.
2863 In order to get non-shared debug builds, this patch applied T option for
2864 thin archives to the flags passed to ar when cmake based ports build on linux.
2865 In addition, applied u option which avoids adding a file twice.
2867 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
2868 * Source/cmake/OptionsEfl.cmake:
2869 Removed error messages for non-shared-core debug builds.
2870 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
2872 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
2874 [GTK] Build the Udis86 disassembler
2875 https://bugs.webkit.org/show_bug.cgi?id=129679
2877 Reviewed by Michael Saboff.
2879 * GNUmakefile.am: Add the Udis86_nosources variable.
2880 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
2882 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2884 [GTK] Simplify the GObject DOM bindings API break check into one step
2885 https://bugs.webkit.org/show_bug.cgi?id=129571
2887 Reviewed by Carlos Garcia Campos.
2889 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
2890 Add the check to 'make check.'
2892 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2894 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
2895 https://bugs.webkit.org/show_bug.cgi?id=129502
2897 Reviewed by Carlos Garcia Campos.
2899 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
2901 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
2903 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
2904 https://bugs.webkit.org/show_bug.cgi?id=129031
2906 Reviewed by Csaba Osztrogonác.
2908 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
2910 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
2912 [GTK] WebKit2WebExtension GIR can't be used in vala
2913 https://bugs.webkit.org/show_bug.cgi?id=127179
2915 Reviewed by Martin Robinson.
2917 Add a different pkg-config file for the web extensions API.
2919 * Source/cmake/OptionsGTK.cmake:
2922 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
2924 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
2925 https://bugs.webkit.org/show_bug.cgi?id=129575
2927 Reviewed by Philippe Normand.
2929 * Source/cmake/OptionsEfl.cmake:
2930 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2931 * Source/cmake/OptionsGTK.cmake:
2932 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2933 * Source/cmake/WebKitFeatures.cmake:
2934 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2935 * Source/cmakeconfig.h.cmake:
2936 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
2938 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
2940 Enable support of X-Content-Type-Options: nosniff header for EFL
2941 https://bugs.webkit.org/show_bug.cgi?id=128673
2943 Reviewed by Gyuyoung Kim.
2945 * Source/cmake/OptionsEfl.cmake:
2946 Enabled NOSNIFF feature flag for EFL.
2948 2014-02-27 Koop Mast <kwm@FreeBSD.org>
2950 Fallback on checking for libz manualy if zlib.pc isn't available.
2951 https://bugs.webkit.org/show_bug.cgi?id=127061
2953 Reviewed by Gustavo Noronha Silva.
2955 * Source/autotools/FindDependencies.m4:
2957 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
2959 [CSS Grid Layout] Add ENABLE flag
2960 https://bugs.webkit.org/show_bug.cgi?id=129153
2962 Reviewed by Simon Fraser.
2964 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
2965 autotools build systems. The feature is disabled by default for
2968 * Source/autotools/SetupWebKitFeatures.m4:
2969 * Source/cmake/OptionsEfl.cmake:
2970 * Source/cmake/OptionsGTK.cmake:
2971 * Source/cmake/WebKitFeatures.cmake:
2972 * Source/cmakeconfig.h.cmake:
2974 2014-02-24 Martin Robinson <mrobinson@igalia.com>
2976 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
2977 https://bugs.webkit.org/show_bug.cgi?id=128417
2979 Reviewed by Carlos Garcia Campos.
2981 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
2982 may one day be used in the webkitdom config file generation.
2984 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2986 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
2987 https://bugs.webkit.org/show_bug.cgi?id=128961
2989 Reviewed by Ryosuke Niwa.
2991 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
2992 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
2993 EFL port needs not to check "uninitialized" build warning as error in order to
2994 adjust the option to EFL port. This patch don't take it as error temporarily.
2996 * Source/cmake/OptionsEfl.cmake:
2997 * Source/cmake/WebKitHelpers.cmake:
2999 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3001 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3002 https://bugs.webkit.org/show_bug.cgi?id=128434
3004 Reviewed by Anders Carlsson.
3006 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3007 port as well as -fno-tree-dce, like it is used in the autotools build.
3009 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3011 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3012 https://bugs.webkit.org/show_bug.cgi?id=128799
3014 Reviewed by Philippe Normand.
3016 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3017 if building with autotools. cmake system has enabled it as default. So I propose
3018 enabling VIDEO_TRACK as well.
3020 * Source/autotools/SetupWebKitFeatures.m4:
3022 2014-02-14 Commit Queue <commit-queue@webkit.org>
3024 Unreviewed, rolling out r164090.
3025 http://trac.webkit.org/changeset/164090
3026 https://bugs.webkit.org/show_bug.cgi?id=128807
3028 It broke the EFL build (Requested by Ossy on #webkit).
3030 * Source/cmake/OptionsCommon.cmake:
3031 * Source/cmake/OptionsEfl.cmake:
3033 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3035 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3036 https://bugs.webkit.org/show_bug.cgi?id=128434
3038 Extend a fix for EFL to all ports that use GCC. Also include further fixes
3039 that were applied only to the autotools build.
3041 Reviewed by Gyuyoung Kim.
3043 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
3044 as -fno-tree-dce, which is necessary for GTK+.
3045 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
3047 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
3049 [GTK][CMake] Generate GObject DOM bindings .symbols files
3050 https://bugs.webkit.org/show_bug.cgi?id=126210
3052 Reviewed by Martin Robinson.
3054 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
3055 for documentation generation.
3057 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3059 [GTK] MEDIA_CONTROLS_SCRIPT support
3060 https://bugs.webkit.org/show_bug.cgi?id=123097
3062 Reviewed by Jer Noble.
3064 Part of the Autotools and CMake structure to build the media
3067 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
3068 controls script by default.
3069 * Source/cmake/OptionsGTK.cmake: Activated the media controls
3071 * Source/cmake/WebKitFeatures.cmake: Created the option to
3072 activate the controls script.
3073 * Source/cmakeconfig.h.cmake: Created the define template the the
3074 media controls script.
3076 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
3078 [GDB] Add .gdbinit to the list of files ignored by Git
3079 https://bugs.webkit.org/show_bug.cgi?id=128455
3081 Reviewed by Anders Carlsson.
3083 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
3084 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
3085 that covers already removed entries.
3087 2014-02-11 Oliver Hunt <oliver@apple.com>
3089 Make it possible to implement JS builtins in JS
3090 https://bugs.webkit.org/show_bug.cgi?id=127887
3092 Reviewed by Michael Saboff.
3095 * Source/cmake/gtest/CMakeLists.txt:
3097 2014-02-12 Ryan Lortie <desrt@desrt.ca>
3099 'ar T' is not portable and breaks the build on FreeBSD
3100 https://bugs.webkit.org/show_bug.cgi?id=128596
3102 Reviewed by Gustavo Noronha Silva.
3104 Create thin archives only if we are using GNU ar.
3106 * Source/autotools/SetupLibtool.m4:
3108 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
3110 Add the CSS_SHAPE_INSIDE to CMake feature list
3111 https://bugs.webkit.org/show_bug.cgi?id=128530
3113 Reviewed by Gyuyoung Kim.
3115 CSS_SHAPE_INSIDE flag was added in r163333,
3116 this patch is adding this flag to CMake feature list.
3118 * Source/cmake/WebKitFeatures.cmake:
3119 * Source/cmakeconfig.h.cmake:
3121 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
3123 [GTK] Enable touch features
3124 https://bugs.webkit.org/show_bug.cgi?id=98931
3126 Reviewed by Carlos Garcia Campos.
3128 * Source/autotools/SetupWebKitFeatures.m4:
3129 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
3131 2014-02-06 Andreas Kling <akling@apple.com>
3133 Remove unused ENABLE(REPAINT_THROTTLING) flag.
3134 <https://webkit.org/b/128329>
3136 Reviewed by Antti Koivisto.
3138 * Source/cmake/WebKitFeatures.cmake:
3139 * Source/cmakeconfig.h.cmake:
3141 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
3143 [iOS] make should build WebKit2
3144 https://bugs.webkit.org/show_bug.cgi?id=128351
3146 Reviewed by Daniel Bates.
3150 2014-02-05 Andreas Kling <akling@apple.com>
3152 Remove ENABLE(DIRECTORY_UPLOAD).
3153 <https://webkit.org/b/128275>
3155 Rubber-stamped by Ryosuke Niwa.
3157 * Source/autotools/SetupWebKitFeatures.m4:
3158 * Source/cmake/WebKitFeatures.cmake:
3160 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
3162 Remove ENABLE(SVG) guards
3163 https://bugs.webkit.org/show_bug.cgi?id=127991
3165 Reviewed by Sam Weinig.
3167 * Source/autotools/FindDependencies.m4:
3168 * Source/autotools/PrintBuildConfiguration.m4:
3169 * Source/autotools/ReadCommandLineArguments.m4:
3170 * Source/autotools/SetupAutomake.m4:
3171 * Source/autotools/SetupWebKitFeatures.m4:
3172 * Source/cmake/OptionsEfl.cmake:
3173 * Source/cmake/OptionsGTK.cmake:
3174 * Source/cmake/WebKitFeatures.cmake:
3175 * Source/cmakeconfig.h.cmake:
3177 2014-02-04 Andreas Kling <akling@apple.com>
3179 Remove <iframe seamless> support.
3180 <https://webkit.org/b/128213>
3182 Rubber-stamped by Antti Koivisto.
3184 * Source/autotools/SetupWebKitFeatures.m4:
3185 * Source/cmake/WebKitFeatures.cmake:
3186 * Source/cmakeconfig.h.cmake:
3188 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
3190 Remove LEGACY_VIEWPORT_ADAPTION
3191 https://bugs.webkit.org/show_bug.cgi?id=128028
3193 Reviewed by Anders Carlsson.
3195 * Source/cmake/WebKitFeatures.cmake:
3196 * Source/cmakeconfig.h.cmake:
3198 2014-01-31 Oliver Hunt <oliver@apple.com>
3200 Rollout r163195 and related patches
3203 * Source/cmake/gtest/CMakeLists.txt:
3205 2014-01-29 Oliver Hunt <oliver@apple.com>
3207 Make it possible to implement JS builtins in JS
3208 https://bugs.webkit.org/show_bug.cgi?id=127887
3210 Reviewed by Michael Saboff.
3214 * Source/cmake/gtest/CMakeLists.txt:
3216 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3218 [GTK] [CMake] Add support for building against GTK+ 2
3219 https://bugs.webkit.org/show_bug.cgi?id=127959
3221 Reviewed by Anders Carlsson.
3223 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
3224 library API version. When using GTK 2 do not build WebKit 2.
3226 2014-01-30 Martin Robinson <mrobinson@igalia.com>
3228 [GTK] [CMake] Add a "make dist" target
3229 https://bugs.webkit.org/show_bug.cgi?id=116378
3231 Reviewed by Gustavo Noronha Silva.
3233 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
3234 script and then turning the tarfile into a LZMA compressed file.
3236 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
3238 [GTK] Only disable -ftree-dce optimization when compiling with GCC
3239 https://bugs.webkit.org/show_bug.cgi?id=127911
3241 Reviewed by Carlos Garcia Campos.
3243 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
3244 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
3245 at the moment, but is added for the sake of completeness.
3247 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
3249 [EFL] Fix the regression caused by the jsCStack branch merge
3250 https://bugs.webkit.org/show_bug.cgi?id=127898
3252 Reviewed by Zoltan Herczeg.
3254 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
3256 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3258 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
3259 https://bugs.webkit.org/show_bug.cgi?id=127845
3261 Reviewed by Joseph Pecoraro.
3263 * Source/autotools/SetupWebKitFeatures.m4:
3265 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
3267 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
3268 https://bugs.webkit.org/show_bug.cgi?id=127840
3270 Reviewed by Mark Lam.
3272 * Source/cmake/WebKitFeatures.cmake:
3273 * Source/cmakeconfig.h.cmake:
3275 2014-01-25 Darin Adler <darin@apple.com>
3277 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
3278 https://bugs.webkit.org/show_bug.cgi?id=127623
3280 Reviewed by Anders Carlsson.
3282 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
3283 * Source/cmake/OptionsGTK.cmake: Ditto.
3284 * Source/cmake/OptionsWinCE.cmake: Ditto.
3286 2014-01-23 Max Vujovic <mvujovic@adobe.com>
3288 Remove CSS Custom Filters code and tests
3289 https://bugs.webkit.org/show_bug.cgi?id=127382
3291 Reviewed by Simon Fraser.
3293 * Source/autotools/FindDependencies.m4:
3294 * Source/autotools/SetupWebKitFeatures.m4:
3295 * Source/cmake/WebKitFeatures.cmake:
3296 * Source/cmakeconfig.h.cmake:
3298 2014-01-22 Martin Robinson <mrobinson@igalia.com>
3300 [GTK][CMake] Add support for building the NetworkProcess
3301 https://bugs.webkit.org/show_bug.cgi?id=127195
3303 Reviewed by Daniel Bates.
3305 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
3306 a name like the WebProcess.
3308 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
3310 [CMAKE] Remove Nix from CMake scripts
3311 https://bugs.webkit.org/show_bug.cgi?id=127264
3313 Reviewed by Anders Carlsson.
3316 * Source/CMakeLists.txt:
3317 * Source/cmake/FindEGL.cmake:
3318 * Source/cmake/OptionsCommon.cmake:
3320 2014-01-18 Anders Carlsson <andersca@apple.com>
3322 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
3323 https://bugs.webkit.org/show_bug.cgi?id=127225
3325 Reviewed by Andreas Kling.
3327 This concludes the removal of over 8.8 million lines of threaded parser code.
3329 * Source/autotools/SetupWebKitFeatures.m4:
3330 * Source/cmake/WebKitFeatures.cmake:
3331 * Source/cmakeconfig.h.cmake:
3333 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
3335 Remove Nix files from WebCore
3336 https://bugs.webkit.org/show_bug.cgi?id=127176
3338 Reviewed by Anders Carlsson.
3340 * Source/cmake/OptionsNix.cmake: Removed.
3342 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
3344 [GTK] Bump the minimum required Clang version to 3.3
3345 https://bugs.webkit.org/show_bug.cgi?id=127178
3347 Reviewed by Martin Robinson.
3349 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
3350 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
3351 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
3353 2014-01-14 Dan Bernstein <mitz@apple.com>
3355 Only use color in make output when it’s going to a terminal.
3357 Reviewed by Mark Rowe.
3361 2014-01-13 Martin Robinson <mrobinson@igalia.com>
3363 [CMake] Mark all dependency include paths and libraries as advanced variables
3364 https://bugs.webkit.org/show_bug.cgi?id=126504
3366 Reviewed by Daniel Bates.
3368 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
3369 * Source/cmake/FindCairo.cmake: Ditto.
3370 * Source/cmake/FindEGL.cmake: Ditto.
3371 * Source/cmake/FindEnchant.cmake: Ditto.
3372 * Source/cmake/FindGLIB.cmake: Ditto.
3373 * Source/cmake/FindGStreamer.cmake: Ditto.
3374 * Source/cmake/FindHarfBuzz.cmake: Ditto.
3375 * Source/cmake/FindLibSoup.cmake: Ditto.
3377 2014-01-13 Martin Robinson <mrobinson@igalia.com>
3379 [GTK][CMake] Add a 'check' target
3380 https://bugs.webkit.org/show_bug.cgi?id=126770
3382 Reviewed by Daniel Bates.
3384 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
3386 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
3388 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
3390 * Source/autotools/Versions.m4: Bump version numbers.
3392 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
3394 [EFL][WK2] Make API tests work again
3395 https://bugs.webkit.org/show_bug.cgi?id=126769
3397 Reviewed by Gyuyoung Kim.
3399 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
3400 [E]WebKit2, respectively, and this causes problems because the logic to find
3401 where WebProcess is to look in the same directory of the running process and
3402 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
3404 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
3405 Gtk port, which allows us to look for WebProcess initially in this directory,
3408 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
3411 2014-01-11 Dan Bernstein <mitz@apple.com>
3413 [Mac] xcodebuild color output is suppressed when using make
3414 https://bugs.webkit.org/show_bug.cgi?id=126815
3416 Reviewed by Anders Carlsson.
3418 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
3419 format its output with color and emphasis.
3421 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
3422 xcodebuild limitations, this restores some of the formatting, but not all of it.
3424 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
3426 Remove the BlackBerry port from trunk
3427 https://bugs.webkit.org/show_bug.cgi?id=126715
3429 Reviewed by Anders Carlsson.
3432 * Source/cmake/OptionsCommon.cmake:
3434 2014-01-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3436 [EFL][JSC] Enable udis86 disassembler on efl.
3437 https://bugs.webkit.org/show_bug.cgi?id=125502
3439 Reviewed by Michael Saboff.
3441 Enable udis86 disassembler on efl and fix build warnings.
3443 * Source/cmake/OptionsEfl.cmake:
3444 Enable udis86 disassembler.
3446 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
3448 Remove the BlackBerry port from trunk
3449 https://bugs.webkit.org/show_bug.cgi?id=126715
3451 Reviewed by Anders Carlsson.
3455 2014-01-09 Benjamin Poulain <bpoulain@apple.com>
3457 Remove the BlackBerry files outside WebCore
3458 https://bugs.webkit.org/show_bug.cgi?id=126715
3460 Reviewed by Anders Carlsson.
3462 * ManualTests/blackberry: Removed.
3463 * Source/cmake/OptionsBlackBerry.cmake: Removed.
3465 2014-01-08 Martin Robinson <mrobinson@igalia.com>
3467 [GTK] [CMake] Specify the executable and library output locations in the build
3468 https://bugs.webkit.org/show_bug.cgi?id=126671
3470 Reviewed by Gustavo Noronha Silva.
3472 * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
3474 2014-01-08 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3476 [EFL] Make FTL buildable
3477 https://bugs.webkit.org/show_bug.cgi?id=125777
3479 Reviewed by Csaba Osztrogonác.
3481 * Source/cmake/OptionsEfl.cmake:
3482 * Source/cmakeconfig.h.cmake:
3484 2014-01-08 Alberto Garcia <berto@igalia.com>
3486 REGRESSION(r160304): [GTK] Disable libtool fast install
3487 https://bugs.webkit.org/show_bug.cgi?id=126381
3489 Reviewed by Gustavo Noronha Silva.
3491 Don't disable the libtool fast-install mode unconditionally by
3494 If the fast-install mode is disabled, binaries are generated ready
3495 to use the libraries directly from the build tree. If we use the
3496 GNU linker, those binaries are then relinked when they are
3499 However, libtool fails to do it properly when an installation
3500 prefix is set with DESTDIR, and ends up installing the libtool
3501 wrappers instead of the actual binaries.
3503 * Source/autotools/SetupLibtool.m4:
3505 2014-01-07 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3507 Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
3508 in output and dependencies declarations, so docs are not built needlessly
3511 * Source/PlatformGTK.cmake:
3513 2014-01-04 Carlos Garcia Campos <cgarcia@igalia.com>
3515 [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI
3516 https://bugs.webkit.org/show_bug.cgi?id=126342
3518 Reviewed by Gustavo Noronha Silva.
3520 * GNUmakefile.am: Remove unused variable.
3521 * Source/PlatformGTK.cmake: No longer include the old unit tests directories.
3523 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
3525 [GTK] configure errors out when building with libc++
3526 https://bugs.webkit.org/show_bug.cgi?id=126431
3528 Reviewed by Martin Robinson.
3530 Ease up the Clang and libstdc++ combination test to only fail if libstdc++ < 4.8.1 is actually used.
3531 This allows for libc++ to be used as well. The test is moved into SetupCompilerFlags.m4 and is done
3532 after the CXXFLAGS variable is properly set up, that is when all the C++ compiler options are determined.
3534 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3535 * Source/autotools/SetupCompilerFlags.m4:
3537 2014-01-06 Martin Robinson <mrobinson@igalia.com>
3539 [CMake] [GTK] Fix the build for the WebKitGTK+ developer configuration
3540 https://bugs.webkit.org/show_bug.cgi?id=126505
3542 Reviewed by Gustavo Noronha Silva.
3544 * Source/cmake/FindGLIB.cmake: Add support for finding the gio-unix include directory location.
3545 * Source/cmake/FindGUdev.cmake: Added.
3546 * Source/cmake/FindGeoClue.cmake: Added.
3547 * Source/cmake/OptionsGTK.cmake: When gamepad is enabled look for gio-unix and GUdev. When
3548 geolocation is enabled look for GeoClue.
3550 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
3552 [GTK] Use libc++ for C++11 on darwin
3553 https://bugs.webkit.org/show_bug.cgi?id=126325
3555 Reviewed by Martin Robinson.
3557 * Source/autotools/SetupCompilerFlags.m4: Don't default to libstdc++ when compiling with Clang.
3558 Instead, the compiler should determine itself what standard library to use, except on Darwin,
3559 where libc++ should be enforced. The standard library of user's choosing can still be enforced
3560 through the CXXFLAGS environment variable.
3562 2014-01-05 Martin Robinson <mrobinson@igalia.com>
3564 [GTK] [CMake] Ensure that the autotools build and the CMake install the same files
3565 https://bugs.webkit.org/show_bug.cgi?id=116379
3567 Reviewed by Gustavo Noronha Silva.
3569 * Source/PlatformGTK.cmake: Install the documentation.
3570 * Source/cmake/OptionsCommon.cmake: Add a LIBEXEC variable for WebKit2 executables, and
3571 don't use the default locations on GTK+. We will get them from the CMake-provided GNU installation
3573 * Source/cmake/OptionsGTK.cmake: Setup the installation variables using the ones provided
3574 by CMake's GNU installation directory support. Fix the definition of DATADIR. Always install
3577 2014-01-05 Carlos Garcia Campos <cgarcia@igalia.com>
3579 [GTK] Stop installing WebKit2 C API headers
3580 https://bugs.webkit.org/show_bug.cgi?id=126489
3582 Reviewed by Martin Robinson.
3586 2014-01-04 Martin Robinson <mrobinson@igalia.com>
3588 [GTK] [CMake] Improve the way we locate gobject-introspection
3589 https://bugs.webkit.org/show_bug.cgi?id=126452
3591 Reviewed by Philippe Normand.
3593 * Source/cmake/FindGObjectIntrospection.cmake: Added.
3594 * Source/cmake/OptionsGTK.cmake: Load the new FindGObjectIntrospection file.
3596 2014-01-04 Martin Robinson <mrobinson@igalia.com>
3598 [GTK] [CMake] Fix the video and audio build
3599 https://bugs.webkit.org/show_bug.cgi?id=126464
3601 Reviewed by Philippe Normand.
3603 * Source/cmake/OptionsGTK.cmake: GStreamer files look for USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER),
3604 so define those when appropriate. Web audio is one by default in autotools, so turn it on for cmake
3607 2014-01-03 Martin Robinson <mrobinson@igalia.com>
3609 [CMake] The forwarding headers generated by WebKitMacros.m4 are incompatible with the headers generated by generate-forwarding-headers.pl
3610 https://bugs.webkit.org/show_bug.cgi?id=126361
3612 Reviewed by Philippe Normand.
3614 Make the forwarding headers generated by WebKitMacros.m4 compatible with the headers
3615 generated by the WebKit2 forwarding headers generation script.
3617 * Source/cmake/WebKitMacros.cmake: Try to convert absolute paths in the forwarding headers
3618 to ones that are relative to the Source directory.
3620 2014-01-02 Carlos Garcia Campos <cgarcia@igalia.com>
3622 REGRESSION(r160304): [GTK] Disable libtool fast install
3623 https://bugs.webkit.org/show_bug.cgi?id=126381
3625 Reviewed by Martin Robinson.
3627 After r160304 we are building some of our binaries that are
3628 installed with the -no-fast-install ld flag. This makes that the
3629 binaries are installed with the source code path hardcoded in
3630 binary RPATH. Disabling fast install globally, the libtool script
3631 always relinks the binaries right before being installed.
3633 * Source/autotools/SetupLibtool.m4: Add AC_DISABLE_FAST_INSTALL.
3635 2014-01-02 Jaehun Lim <ljaehun.lim@samsung.com>
3637 [CMake][EFL] Fix some typos in OptionsEfl.cmake
3638 https://bugs.webkit.org/show_bug.cgi?id=126376
3640 Reviewed by Gyuyoung Kim.
3642 * Source/cmake/WebKitFeatures.cmake: Correct a wrong word and remove comma(,).
3644 2013-12-30 Martin Robinson <mrobinson@igalia.com>
3646 [CMake] [GTK] Add support for GObject introspection
3647 https://bugs.webkit.org/show_bug.cgi?id=126162
3649 Reviewed by Daniel Bates.
3651 * Source/PlatformGTK.cmake: Add a 'gir' target that builds all GIR files.
3652 * Source/cmake/OptionsGTK.cmake: Add a macro for propagating typelib
3653 targets to the Source level of the build.
3655 2013-12-29 Martin Robinson <mrobinson@igalia.com>
3657 [GTK][CMake] Translations must be built
3658 https://bugs.webkit.org/show_bug.cgi?id=125513
3660 Reviewed by Gustavo Noronha Silva.
3662 * Source/PlatformGTK.cmake: Add the po subdirectory.
3664 2013-12-28 Giovanni Campagna <gcampagna@src.gnome.org>
3666 [GTK] Fix release builds with NetworkProcess enabled
3667 https://bugs.webkit.org/show_bug.cgi?id=126247
3669 Reviewed by Carlos Garcia Campos.
3671 * Source/autotools/symbols.filter:
3673 2013-12-26 Martin Robinson <mrobinson@igalia.com>
3675 [GTK] [CMake] Add a production build type
3676 https://bugs.webkit.org/show_bug.cgi?id=126179
3678 Reviewed by Daniel Bates.
3680 * Source/PlatformGTK.cmake: When the API tests are enabled compile the WebKit GObject
3681 API unit tests. The inclusion of these build files was inadvertently removed in an earlier
3683 * Source/cmake/OptionsGTK.cmake: When in production mode turn off all tools and tests and
3684 use the autotools linker script.
3686 2013-12-25 Martin Robinson <mrobinson@igalia.com>
3688 [GTK] [CMake] Properly name the JavaScriptCore library
3689 https://bugs.webkit.org/show_bug.cgi?id=126220
3691 Reviewed by Gustavo Noronha Silva.
3693 * Source/cmake/OptionsGTK.cmake: Set the JSC library name properly.
3695 2013-12-25 Martin Robinson <mrobinson@igalia.com>
3697 [GTK] [CMake] Clean up generated sources directories
3698 https://bugs.webkit.org/show_bug.cgi?id=126216
3700 Reviewed by Gustavo Noronha Silva.
3702 * Source/cmake/OptionsGTK.cmake: Pre-define the main derived sources directories
3703 so that they definitions can be shared easily throughout the build system.
3705 2013-12-23 Jinwoo Song <jinwoo7.song@samsung.com>
3707 [EFL][CMAKE] Case insensitive string comparison of build type
3708 https://bugs.webkit.org/show_bug.cgi?id=126153
3710 Reviewed by Daniel Bates.
3712 Compare CMAKE_BUILD_TYPE with "debug" ignoring case.
3714 * Source/cmake/OptionsEfl.cmake:
3716 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
3718 [GTK] [CMake] Add support for generating gtkdoc
3719 https://bugs.webkit.org/show_bug.cgi?id=116376
3721 Reviewed by Martin Robinson.
3723 * Source/PlatformGTK.cmake: Added. New custom target that depends on a custom command
3724 which calls our generate-gtkdoc script. It uses a docs-build.stamp for simplicity,
3725 like the autotools build.
3727 2013-12-23 Martin Robinson <mrobinson@igalia.com>
3729 [GTK] [CMake] Build the WebKit2 GObject API tests
3730 https://bugs.webkit.org/show_bug.cgi?id=125683
3732 Reviewed by Daniel Bates.
3734 * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
3735 * Source/cmake/FindATSPI.cmake: Added.
3736 * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
3738 2013-12-23 Martin Robinson <mrobinson@igalia.com>
3740 [GTK] [CMake] Build the WebKit1 GObject API tests
3741 https://bugs.webkit.org/show_bug.cgi?id=125684
3743 Reviewed by Daniel Bates.
3745 * Source/PlatformGTK.cmake: Added.
3747 2013-12-22 Martin Robinson <mrobinson@igalia.com>
3749 https://bugs.webkit.org/show_bug.cgi?id=125511
3751 [GTK][CMake] libtool-compatible soversion calculation
3752 Reviewed by Gustavo Noronha Silva.
3754 * Source/cmake/OptionsGTK.cmake: Specify the appropriate libtool triples and use
3755 the CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE macro to specify the library-specific
3756 version information.
3757 * Source/cmake/WebKitHelpers.cmake: Add some helpful macros.
3759 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
3761 [GTK] [CMake] Generate pkg-config files
3762 https://bugs.webkit.org/show_bug.cgi?id=125685
3764 Reviewed by Martin Robinson.
3766 * Source/cmake/OptionsGTK.cmake: set variables used for filling in the values in the
3769 2013-12-23 Carlos Garcia Campos <cgarcia@igalia.com>
3771 [GTK] Build with network process unconditionally
3772 https://bugs.webkit.org/show_bug.cgi?id=126128
3774 Reviewed by Martin Robinson.
3776 * Source/autotools/SetupAutomake.m4: Remove network process
3777 conditional for Makefiles.
3778 * Source/autotools/SetupWebKitFeatures.m4: Remove network process
3781 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3783 [GTK][CMake] make libjavascriptcoregtk a public shared library again
3784 https://bugs.webkit.org/show_bug.cgi?id=125512
3786 Reviewed by Martin Robinson.
3788 * CMakeLists.txt: make JavaScriptCore always be a shared library for the GTK+ port.
3789 * Source/cmake/WebKitHelpers.cmake: make -fvisibility=hidden not be applied for GTK+,
3790 visibility of some symbols is required for threading to be initialized properly by
3791 WebKit2 processes, and we will rely on a linker script that will be added later on,
3792 for production builds.
3794 2013-12-16 Martin Robinson <mrobinson@igalia.com>
3796 [GTK] [CMake] Add support for building WebKit1
3797 https://bugs.webkit.org/show_bug.cgi?id=116377
3799 Reviewed by Gustavo Noronha Silva.
3801 * Source/cmake/OptionsGTK.cmake: Turn off some features that do not build properly
3802 for WebKit1 and stop using the version script which we haven't implemented yet. Turn
3805 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3807 [GTK][CMake] Use thin archives if building on Linux, only way to get non-shared-core debug builds
3808 https://bugs.webkit.org/show_bug.cgi?id=125951
3810 Reviewed by Martin Robinson.
3812 * Source/cmake/OptionsGTK.cmake: append T for thin archives to the flags passed to ar,
3813 also use u, which is used in the autotools build (it avoids adding a file twice).
3815 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3817 [GTK][CMake] Remove binary size optimizations we do not use in the autotools build
3818 https://bugs.webkit.org/show_bug.cgi?id=125947
3820 Reviewed by Martin Robinson.
3822 * Source/cmake/OptionsGTK.cmake: remove the relevant flags.
3824 2013-12-18 Carlos Garcia Campos <cgarcia@igalia.com>
3826 Unreviewed. Update NEWS and Versions.m4 for 2.3.3 release.
3828 * Source/autotools/Versions.m4: Bump version numbers.
3830 2013-12-12 Martin Robinson <mrobinson@igalia.com>
3832 [GTK] [CMake] Build the plugin process against GTK+ 2
3833 https://bugs.webkit.org/show_bug.cgi?id=116374
3835 Reviewed by Gustavo Noronha Silva.
3837 * Source/cmake/FindGDK2.cmake: Added.
3838 * Source/cmake/FindGTK2.cmake: Added.
3839 * Source/cmake/OptionsGTK.cmake: Look for GTK2 and GDK2.
3840 * Source/cmake/WebKitMacros.cmake: Abstract WebKit2 IPC generation here so it
3841 can be shared between the WebKit2 library and the plugin process.
3843 2013-12-17 Simon Pena <simon.pena@samsung.com>
3845 [NIX] Enable full debug builds by having ar creating thin archives
3846 https://bugs.webkit.org/show_bug.cgi?id=125850
3848 Reviewed by Csaba Osztrogonác.
3850 By default, CMake uses ar to generate libWebCore.a with cr parameters
3851 (do not warn if the library has to be created, and replace existing
3852 files in the archive). That results in a very large file, and ar fails
3853 with sizes over 4GB.
3855 Previously, debug builds on NIX were overriding CFLAGS in order to reduce
3856 the size of the WebCore library. Once that ar creates thin archives, overriding
3857 CFLAGS is no longer needed.
3859 * Source/cmake/OptionsNix.cmake: Remove CFLAGS override for debug builds.
3861 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3863 [GTK] Remove Warnings in building about duplicate INSPECTOR variables
3864 https://bugs.webkit.org/show_bug.cgi?id=125710
3866 Reviewed by Tim Horton.
3870 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3872 Web Inspector: Add Inspector Code Generation to JavaScriptCore for Runtime Domain
3873 https://bugs.webkit.org/show_bug.cgi?id=125595
3875 Reviewed by Timothy Hatcher.
3879 2013-12-13 Zan Dobersek <zdobersek@igalia.com>
3881 [GTK] Remove the -Wno-c++11-extensions compiler option for Clang builds
3882 https://bugs.webkit.org/show_bug.cgi?id=125639
3884 Reviewed by Anders Carlsson.
3886 * Source/autotools/SetupCompilerFlags.m4: The -Wno-c++11-extensions compiler option was in use
3887 when building with Clang. It is now removed as the C++11 standard is enabled throughout the project.
3889 2013-12-11 Martin Robinson <mrobinson@igalia.com> and Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
3891 Adding a .ycm_extra_conf file for webkitGtk
3892 https://bugs.webkit.org/show_bug.cgi?id=119618
3894 Reviewed by Gustavo Noronha Silva.
3896 Added a YouCompleteMe flag discovery script for Vim and the GTK+ port. The script
3897 read the GTK+ build files to determine dynamically what flags to compile a source
3898 file with. This allows Vim to provide auto-complete for C++/C language. See
3899 https://github.com/Valloric/YouCompleteMe for how to use this file.
3901 * .gitignore: Ignore the YCM symlinks in the tree.
3903 2013-12-12 Zan Dobersek <zdobersek@igalia.com>
3905 Use of ar T option not supported by older binutils
3906 https://bugs.webkit.org/show_bug.cgi?id=118732
3908 Reviewed by Gustavo Noronha Silva.
3910 * Source/autotools/SetupLibtool.m4: Make the AR_FLAGS value usable inside makefiles as an Automake variable.
3912 2013-12-11 Javier Fernandez <jfernandez@igalia.com>
3914 Arithmetic overflow when computing max-height CSS property with subpixel layout
3915 https://bugs.webkit.org/show_bug.cgi?id=119273
3917 Reviewed by Martin Robinson.
3919 Enabled SATURATED_LAYOUT_ARITHMETIC for the gtk+ port.
3921 * Source/autotools/SetupWebKitFeatures.m4:
3923 2013-12-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3925 [CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
3926 https://bugs.webkit.org/show_bug.cgi?id=125492
3928 Reviewed by Zoltan Herczeg.
3930 Remove the code that disables these warnings for GCC >= 4.6.0
3932 * Source/cmake/WebKitHelpers.cmake:
3934 2013-12-10 Martin Robinson <mrobinson@igalia.com>
3936 Various fixes for the CMake GTK+ build
3938 Reviewed by Gustavo Noronha.
3940 * Source/cmake/OptionsGTK.cmake: Disable Quota support to maintain consistency with
3943 2013-12-09 Brian Holt <brian.holt@samsung.com>
3945 [WK2][Gtk] Add support for ENABLE_NETWORK_PROCESS to the build system
3946 https://bugs.webkit.org/show_bug.cgi?id=118231
3948 Reviewed by Martin Robinson.
3950 Original patch by Kwang Yul Seo <skyul@company100.net>.
3952 Disabled ENABLE_NETWORK_PROCESS by default.
3954 * Source/autotools/SetupAutomake.m4:
3955 * Source/autotools/SetupWebKitFeatures.m4:
3957 2013-12-06 Alberto Garcia <berto@igalia.com>
3959 [GTK] Enable web audio by default
3960 https://bugs.webkit.org/show_bug.cgi?id=124888
3962 Reviewed by Martin Robinson.
3964 When building with ./configure, enable_web_audio defaults to
3965 "no". However the basic functionality has been working for months
3966 so it's safe to enable it now.
3968 * Source/autotools/ReadCommandLineArguments.m4:
3970 2013-12-04 Ryosuke Niwa <rniwa@webkit.org>
3972 Enable HTMLTemplateElement by default
3973 https://bugs.webkit.org/show_bug.cgi?id=123851
3975 Reviewed by Antti Koivisto.
3977 * Source/autotools/SetupWebKitFeatures.m4:
3978 * Source/cmake/WebKitFeatures.cmake:
3980 2013-12-04 László Langó <lango@inf.u-szeged.hu>
3982 Allow --cloop option to work correctly in case of EFL.
3983 https://bugs.webkit.org/show_bug.cgi?id=125217
3985 Reviewed by Zoltan Herczeg.
3987 * Source/cmake/OptionsEfl.cmake:
3988 * Source/cmake/WebKitFeatures.cmake:
3989 * Source/cmakeconfig.h.cmake:
3991 2013-12-03 Ryuan Choi <ryuan.choi@samsung.com>
3993 [EFL] Disable RTTI for release build
3994 https://bugs.webkit.org/show_bug.cgi?id=125138
3996 Reviewed by Gyuyoung Kim.
3998 Binary size will be reduced about 1M bytes without RTTI.
3999 ewebkit.so : 43,449,275 -> 42,510,224
4000 ewebkit2.so: 46,715,870 -> 45,653,989
4002 * Source/cmake/OptionsEfl.cmake: Added -fno-rtti option to CMAKE_CXX_FLAGS_RELEASE.
4004 2013-12-02 Adrian Bunk <bunk@stusta.de>
4006 [GTK] Remove unneeded autoconf macros
4007 https://bugs.webkit.org/show_bug.cgi?id=125044
4009 Compilers that do not support const/inline/volatile and
4010 systems with pre-C89-headers are anyway not supported.
4012 Reviewed by Gustavo Noronha Silva.
4014 * Source/autotools/CheckSystemAndBasicDependencies.m4:
4016 2013-11-29 Laszlo Vidacs <lac@inf.u-szeged.hu>
4018 [cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
4019 https://bugs.webkit.org/show_bug.cgi?id=124899
4021 Reviewed by Gyuyoung Kim.
4023 * Source/cmake/FindCairo.cmake:
4024 * Source/cmake/FindGStreamer.cmake:
4026 2013-11-28 Antti Koivisto <antti@apple.com>
4028 Remove feature: CSS variables
4029 https://bugs.webkit.org/show_bug.cgi?id=114119
4031 Reviewed by Andreas Kling.
4033 * Source/cmakeconfig.h.cmake:
4035 2013-11-27 László Langó <lango@inf.u-szeged.hu>
4037 [EFL] The remote inspector does not show the base page.
4038 https://bugs.webkit.org/show_bug.cgi?id=124942
4040 Reviewed by Gyuyoung Kim.
4042 On EFL the remote inspector does not show the base page about
4043 which pages are available for debug. This should be fixed for
4044 further inspector development.
4046 * Source/PlatformEfl.cmake:
4048 2013-11-26 Marcelo Lira <marcelo.lira@openbossa.org>
4050 Nix upstreaming - Adding build files and supporting scripts
4051 https://bugs.webkit.org/show_bug.cgi?id=118367
4053 Reviewed by Ryosuke Niwa.
4056 * Source/CMakeLists.txt:
4057 * Source/cmake/FindEGL.cmake:
4058 * Source/cmake/FindOpenGLES2.cmake: Added.
4059 * Source/cmake/OptionsCommon.cmake:
4060 * Source/cmake/OptionsNix.cmake: Added.
4062 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
4064 [EFL] E_DBus should be an optional
4065 https://bugs.webkit.org/show_bug.cgi?id=124881
4067 Reviewed by Gyuyoung Kim.
4069 * Source/cmake/OptionsEfl.cmake:
4070 Checked E_DBus when only ENABLE_BATTERY_STATUS is on.
4072 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
4074 [EFL] Use Config mode of find_package for EFL 1.8
4075 https://bugs.webkit.org/show_bug.cgi?id=124555
4077 Reviewed by Gyuyoung Kim.
4079 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
4080 which parses header files to know the version. Instead, EFL 1.8 supports
4081 FooConfig.cmake such as EinaConfig.cmake.
4083 This patch tries to use a config mode if it is available.
4084 If config mode is not available with Eo, FindFoo.cmake will be used without
4085 version requirement.
4087 * Source/cmake/FindEo.cmake: Removed.
4088 EoConfig.cmake is only preffered for EFL 1.8.
4089 * Source/cmake/OptionsEfl.cmake:
4091 2013-11-23 Xabier Rodriguez Calvar <calvaris@igalia.com>
4093 [GStreamer] Remove 0.10 codepath
4094 https://bugs.webkit.org/show_bug.cgi?id=124534
4096 Reviewed by Philippe Normand.
4098 * Source/cmake/OptionsEfl.cmake: Removed GST_API_VERSION_1
4101 2013-11-22 Manuel Rego Casasnovas <rego@igalia.com>
4103 [GTK] Review enabled/disabled CSS features for release builds
4104 https://bugs.webkit.org/show_bug.cgi?id=124791
4106 Reviewed by Martin Robinson.
4108 Enable and disable some CSS features according to what last versions of
4111 * Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and
4112 ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
4115 2013-11-21 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
4117 Remove ENABLE_WORKERS
4118 https://bugs.webkit.org/show_bug.cgi?id=105784
4120 Reviewed by Darin Adler.
4122 * Source/autotools/SetupWebKitFeatures.m4:
4123 * Source/cmake/WebKitFeatures.cmake:
4124 * Source/cmakeconfig.h.cmake:
4126 2013-11-20 Commit Queue <commit-queue@webkit.org>
4128 Unreviewed, rolling out r159496.
4129 http://trac.webkit.org/changeset/159496
4130 https://bugs.webkit.org/show_bug.cgi?id=124641
4132 It caused warning and build break with cmake lower than 2.8.8
4133 (Requested by ryuan on #webkit).
4135 * Source/cmake/OptionsEfl.cmake:
4137 2013-11-19 Ryuan Choi <ryuan.choi@samsung.com>
4139 [EFL] Use Config mode of find_package for EFL 1.8
4140 https://bugs.webkit.org/show_bug.cgi?id=124555
4142 Reviewed by Gyuyoung Kim.
4144 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
4145 which parses header file to know the version. Instead, EFL 1.8 supports
4146 Config mode of find_package using XXXConfig.cmake such as EinaConfig.cmake.
4148 This patch tries to use Config mode if it is available after checking Eo.
4150 * Source/cmake/OptionsEfl.cmake:
4152 2013-11-18 Carlos Garcia Campos <cgarcia@igalia.com>
4154 Unreviewed. Update NEWS and Versions.m4 for 2.3.2 release.
4156 * Source/autotools/Versions.m4: Bump version numbers.
4158 2013-11-06 Krzysztof Czech <k.czech@samsung.com>
4160 [EFL] Change required version of ATK to 2.10.0
4161 https://bugs.webkit.org/show_bug.cgi?id=123883
4163 Reviewed by Mario Sanchez Prada.
4165 Changing a required version of ATK to 2.10.0
4167 * Source/cmake/OptionsEfl.cmake:
4169 2013-11-05 Zalan Bujtas <zalan@apple.com>
4171 Widget's position change should not initiate layout, only when its size changes.
4172 https://bugs.webkit.org/show_bug.cgi?id=123860
4174 Reviewed by Andreas Kling.
4176 RenderWidgets initiate unnecessary layouts while scrolling when they are embedded to
4177 overflow:scroll containers. Scroll position change doesn't dirty the render tree
4178 so it should not trigger layout either.
4180 * ManualTests/layouts-on-renderwidgets-while-scrolling.html: Added.
4182 2013-11-05 Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu>
4184 Remove leftover Qt related things from WebKitMacros.cmake
4185 https://bugs.webkit.org/show_bug.cgi?id=123798
4187 Reviewed by Anders Carlsson.
4189 * Source/cmake/WebKitMacros.cmake:
4191 2013-11-02 Patrick Gansterer <paroga@webkit.org>
4193 [WINCE] Disable export macros
4194 https://bugs.webkit.org/show_bug.cgi?id=123679
4196 Reviewed by Darin Adler.
4198 Avoid useless exports by turning of the export macros
4199 since the WinCE port works as a static library only.
4201 * Source/cmake/OptionsWinCE.cmake:
4203 2013-10-31 Ryuan Choi <ryuan.choi@samsung.com>
4205 [EFL][GLES] OpenGL should be an optional
4206 https://bugs.webkit.org/show_bug.cgi?id=123399
4208 Reviewed by Noam Rosenthal.
4210 * Source/cmake/OptionsEfl.cmake:
4211 Refactor the check routine of GL dependencies to use OpenGL as optional.
4213 2013-10-29 Carlos Garcia Campos <cgarcia@igalia.com>
4215 Unreviewed. Update NEWS and Versions.m4 for 2.3.1 release.
4217 * Source/autotools/Versions.m4: Bump version numbers.
4219 2013-10-24 Ryuan Choi <ryuan.choi@samsung.com>
4221 [EFL] Build break with latest EFL 1.8 libraries.
4222 https://bugs.webkit.org/show_bug.cgi?id=123245
4224 Reviewed by Gyuyoung Kim.
4226 After fixed build break on EFL 1.8 at r138326, EFL libraries are changed
4227 Eo typedef and splitted header files which contain version macro.
4229 * Source/cmake/EFLHelpers.cmake: Checked whether include path exist.
4230 * Source/cmake/FindEcore.cmake: Added 1.8 Header which have version macro.
4231 * Source/cmake/FindEdje.cmake: Ditto.
4232 * Source/cmake/FindEina.cmake: Ditto.
4233 * Source/cmake/FindEo.cmake: Ditto.
4234 * Source/cmake/FindEvas.cmake: Ditto.
4236 2013-10-22 Ryuan Choi <ryuan.choi@samsung.com>
4238 [EFL] Remove HAVE_GLX macro
4239 https://bugs.webkit.org/show_bug.cgi?id=123191
4241 Reviewed by Gyuyoung Kim.
4243 * Source/cmake/OptionsEfl.cmake: Removed unnecessary HAVE_GLX macro
4245 2013-10-21 Gergo Balogh <geryxyz@inf.u-szeged.hu>
4247 Remove .qmake.conf files
4248 https://bugs.webkit.org/show_bug.cgi?id=123091
4250 Reviewed by Csaba Osztrogonác.
4252 * .qmake.conf: Removed.
4254 2013-10-18 Carlos Garcia Campos <cgarcia@igalia.com>
4256 [GTK] Generate API documentation for GObject DOM bindings
4257 https://bugs.webkit.org/show_bug.cgi?id=121538
4259 Reviewed by Gustavo Noronha Silva.
4261 * GNUmakefile.am: Initialize gdom_symbol_files variable.
4263 2013-10-17 Afonso R. Costa Jr. <afonso.costa@samsung.com>
4265 [CMAKE] Update code to take advantage of CMake version 2.8.3+.
4266 https://bugs.webkit.org/show_bug.cgi?id=97516
4268 Reviewed by Gyuyoung Kim.
4270 CMake's version was changed to 2.8.3. So, these files below
4271 can be simplified to take advantage of CMake's new version.
4273 * Source/cmake/FindCairo.cmake: Simplified according to CMake 2.8.3+.
4274 * Source/cmake/FindGStreamer.cmake: Ditto.
4276 2013-10-16 Ryosuke Niwa <rniwa@webkit.org>
4278 Add a new flakiness dashboard clone
4279 https://bugs.webkit.org/show_bug.cgi?id=122936
4281 Reviewed by Anders Carlsson.
4283 Added the initial prototype.
4285 * Websites/test-results: Added.
4286 * Websites/test-results/.htaccess: Added.
4287 * Websites/test-results/admin: Added.
4288 * Websites/test-results/admin/index.php: Added.
4289 * Websites/test-results/api: Added.
4290 * Websites/test-results/api/manifest.php: Added.
4291 * Websites/test-results/api/report.php: Added.
4292 * Websites/test-results/api/results.php: Added.
4293 * Websites/test-results/include: Added.
4294 * Websites/test-results/include/config.json: Added.
4295 * Websites/test-results/include/db.php: Added.
4296 * Websites/test-results/include/init-database.sql: Added.
4297 * Websites/test-results/include/json-shared.php: Added.
4298 * Websites/test-results/include/test-results.php: Added.
4299 * Websites/test-results/index.html: Added.
4300 * Websites/test-results/js: Added.
4301 * Websites/test-results/js/autocompleter.js: Added.
4302 * Websites/test-results/js/build.js: Added.
4303 * Websites/test-results/js/dom.js: Added.
4305 2013-10-16 Csaba Osztrogonác <ossy@webkit.org>
4307 [WK2][Efl][CMake] Add support for ENABLE_NETWORK_PROCESS to the build system
4308 https://bugs.webkit.org/show_bug.cgi?id=110139
4310 Reviewed by Laszlo Gombos.
4312 Original patch by Balazs Kelemen <kbalazs@webkit.org>
4314 * Source/cmake/WebKitFeatures.cmake:
4315 * Source/cmakeconfig.h.cmake:
4317 2013-10-10 Marcelo Morais <m.morais@samsung.com>
4319 Web Inspector: Remove the old front-end from WebKit
4320 https://bugs.webkit.org/show_bug.cgi?id=122295
4322 Reviewed by Timothy Hatcher.
4324 * Source/PlatformGTK.cmake: Removed. This file was using files from the
4325 old inspector, not needed anymore.
4327 2013-10-09 Julien Brianceau <jbriance@cisco.com>
4329 [sh4] Add sh4 support when building with CMake.
4330 https://bugs.webkit.org/show_bug.cgi?id=122542
4332 Reviewed by Csaba Osztrogonác.
4336 2013-10-08 Martin Robinson <mrobinson@igalia.com>
4338 [GTK] Re-enable MathML for release builds
4339 https://bugs.webkit.org/show_bug.cgi?id=122361
4341 Reviewed by Darin Adler.
4343 * Source/autotools/SetupWebKitFeatures.m4: Enable MathML for release builds.
4345 2013-10-02 Anders Carlsson <andersca@apple.com>
4347 Remove Qt related files from the root directories
4348 https://bugs.webkit.org/show_bug.cgi?id=122249
4350 Reviewed by Andreas Kling.
4352 * Source/QtWebKit.pro: Removed.
4353 * Source/api.pri: Removed.
4354 * Source/qtwebkit.qdocconf: Removed.
4355 * Source/sync.profile: Removed.
4356 * Source/tests.pri: Removed.
4357 * Source/widgetsapi.pri: Removed.
4358 * WebKit.pro: Removed.
4360 2013-09-30 Sam Weinig <sam@webkit.org>
4362 Remove support for DOMFileSystem
4363 https://bugs.webkit.org/show_bug.cgi?id=122137
4365 Reviewed by Anders Carlsson.
4367 * Source/autotools/SetupWebKitFeatures.m4:
4368 * Source/cmake/OptionsBlackBerry.cmake:
4369 * Source/cmake/WebKitFeatures.cmake:
4370 * Source/cmakeconfig.h.cmake:
4372 2013-09-30 Benjamin Poulain <benjamin@webkit.org>
4374 Remove the code guarded by STYLE_SCOPED
4375 https://bugs.webkit.org/show_bug.cgi?id=122123
4377 Reviewed by Anders Carlsson.
4379 * Source/autotools/SetupWebKitFeatures.m4:
4380 * Source/cmake/OptionsBlackBerry.cmake:
4381 * Source/cmake/WebKitFeatures.cmake:
4382 * Source/cmakeconfig.h.cmake:
4384 2013-09-30 Allan Sandfeld Jensen <allan.jensen@digia.com>
4386 [Qt] Fix force_static_libs_as_shared in WebKit2
4387 https://bugs.webkit.org/show_bug.cgi?id=121961
4389 Reviewed by Csaba Osztrogonác.
4391 Get rid of the unused WebKit2QML library
4395 2013-09-26 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
4397 [GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
4398 https://bugs.webkit.org/show_bug.cgi?id=121836
4400 Reviewed by Martin Robinson.
4402 * Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
4403 been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
4404 generates warnings in newer glibc.
4406 2013-09-25 Allan Sandfeld Jensen <allan.jensen@digia.com>
4408 [Qt] Fix build with Qt 5.2 QtPosition module
4409 https://bugs.webkit.org/show_bug.cgi?id=121089
4411 Reviewed by Simon Hausmann.
4413 QtLocation -> QtPositioning
4415 * Source/sync.profile:
4417 2013-09-24 Zan Dobersek <zdobersek@igalia.com>
4419 [GTK] Enable the Wayland target if GTK+ dependency is found
4420 https://bugs.webkit.org/show_bug.cgi?id=121704
4422 Reviewed by Gustavo Noronha Silva.
4424 The Wayland target should be enabled by default if the GTK+ dependency is of version 3.9.14 or later.
4426 * Source/autotools/FindDependencies.m4: If the Wayland target was not strictly disabled, the GTK+ dependency
4427 is tested if it can provide the Wayland GDK backend, and that the version of that backend matches the version
4428 of the master GTK+ dependency for which we already tested. If found, the target is enabled, otherwise we either
4429 warn or error out, depending on whether the build target was set to auto or completely disabled through configuration.
4430 * Source/autotools/ReadCommandLineArguments.m4: Switch the default Wayland target status to 'auto', meaning
4431 it will be disabled if the GTK+ dependency is not found.
4432 * Source/autotools/Versions.m4: Require GTK+ 3.9.14 for the Wayland target only.
4434 2013-09-23 Zan Dobersek <zdobersek@igalia.com>
4436 [Autotools] Rework the build target selection
4437 https://bugs.webkit.org/show_bug.cgi?id=121703
4439 Reviewed by Gustavo Noronha Silva.
4441 Replace the --with-target configuration flag with target-specific --enable-*-target flags:
4442 - --enable-x11-target
4443 - --enable-wayland-target
4444 - --enable-win32-target
4445 - --enable-quartz-target
4446 - --enable-directfb-target
4448 By default, the X11 target is enabled. This default is preserved only if no --enable-*-target flag
4449 is passed on the command line. When that occurs, the newly-constructed list of build targets is
4450 used to determine what build targets should actually be built. So for instance, executing just
4451 `./configure` would only enable the X11 target as that's the default, and executing
4452 `./configure --enable-wayland-target` would only enable the Wayland target, as the defaults are
4455 * Source/autotools/CheckSystemAndBasicDependencies.m4: Abort if grep was not found, just in case.
4456 * Source/autotools/CustomMacros.m4: The new file that contains helpful custom macros.
4457 * Source/autotools/FindDependencies.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4458 * Source/autotools/PrintBuildConfiguration.m4: Use the new AM_APPEND_TO_DESCRIPTION macro to construct a pretty-looking
4459 description string of what targets will be built.
4460 * Source/autotools/ReadCommandLineArguments.m4: Replace the --with-target configuration flag and the related
4461 hacks with the set of --enable-*-target flags. The new AM_DETERMINE_BUILD_TARGET_STATUS macro is used to determine
4462 whether to enable specific build targets, based indirectly on the passed-in --enable-*-target flags.
4463 * Source/autotools/SetupAutoconfHeader.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4464 * Source/autotools/SetupAutomake.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4465 * configure.ac: Include the new CustomMacros.m4 file.
4467 2013-09-23 Claudio Saavedra <csaavedra@igalia.com>
4471 Reviewed by Carlos Garcia Campos.
4473 * Source/autotools/Versions.m4: Bump to 2.3.0
4475 2013-09-20 Sergio Correia <sergio.correia@openbossa.org>
4477 [CMAKE] FindHarfBuzz: Handle harfbuzz / harfbuzz-icu split
4478 https://bugs.webkit.org/show_bug.cgi?id=121688
4480 Reviewed by Martin Robinson.
4482 HarfBuzz 0.9.18 split ICU support into a separate harfbuzz-icu library.
4483 To be able to build with earlier and newer versions of HarfBuzz, we should
4484 check for harfbuzz-icu as well, if version >= 0.9.18.
4486 * Source/cmake/FindHarfBuzz.cmake: Check for harfbuzz-icu, if version
4489 2013-09-16 Gustavo Noronha Silva <gns@gnome.org>
4491 [GTK] Make symbol export filter more strict, and disable for dev/test builds
4492 https://bugs.webkit.org/show_bug.cgi?id=120586
4494 Reviewed by Martin Robinson.
4496 * GNUmakefile.am: only include test-related automake files when developer
4498 * Source/autotools/ReadCommandLineArguments.m4: add --enable-developer-mode,
4499 defaults to no, and to yes for debug builds.
4500 * Source/autotools/SetupAutomake.m4: add ENABLE_DEVELOPER_MODE conditional.
4501 * Source/autotools/symbols.filter: make the exported symbols list much shorter,
4502 covering only the public ABI and a few symbols required by WebKit2 processes.
4504 2013-09-13 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
4506 [GTK] Move to the new web inspector
4507 https://bugs.webkit.org/show_bug.cgi?id=120647
4509 Reviewed by Carlos Garcia Campos.
4511 * GNUmakefile.am: include the new WebInspectorUI GNUmakefile.am.
4513 2013-09-13 Allan Sandfeld Jensen <allan.jensen@digia.com>
4515 [Qt] Update sync.profile
4516 https://bugs.webkit.org/show_bug.cgi?id=121295
4518 Reviewed by Simon Hausmann.
4520 Ensure we let the dependencies pick the right branch instead of always master
4521 and list all the dependencies we need on all platforms.
4523 * Source/sync.profile:
4525 2013-09-11 Mario Sanchez Prada <mario.prada@samsung.com>
4527 [GTK] Remove Gail dependency from build system for GTK3
4528 https://bugs.webkit.org/show_bug.cgi?id=119673
4530 Reviewed by Gustavo Noronha Silva.
4532 * Source/autotools/FindDependencies.m4: Don't look for GAIL at all.
4533 * Source/autotools/Versions.m4: Removed any reference to GAIL.
4534 * Source/cmake/FindGAIL3.cmake: Removed.
4535 * Source/cmake/OptionsGTK.cmake: Don't look for the GAIL package.
4537 2013-09-11 Patrick Gansterer <paroga@webkit.org>
4539 [CMake] Split out generic Windows files into its own file
4540 https://bugs.webkit.org/show_bug.cgi?id=119514
4542 Reviewed by Gyuyoung Kim.
4544 This allows us to add smaller CMakeLists.txt files when
4545 adding additional Windows ports.
4547 * Source/cmake/OptionsWinCE.cmake:
4548 * Source/cmake/WebKitMacros.cmake:
4550 2013-09-11 Alberto Garcia <berto@igalia.com>
4552 autogen.sh: fix removal of autom4te.cache
4553 https://bugs.webkit.org/show_bug.cgi?id=121150
4555 Reviewed by Carlos Garcia Campos.
4557 The removal of autom4te.cache is wrong, it uses 'rm -f' instead of
4558 'rm -rf' and it relies on an undefined variable.
4560 In addition to that, it should be done after running autoreconf,
4561 which is when it's no longer needed.
4565 2013-09-11 Alberto Garcia <berto@igalia.com>
4567 Unquoted $ORIGDIR in autogen.sh
4568 https://bugs.webkit.org/show_bug.cgi?id=19512
4570 Reviewed by Carlos Garcia Campos.
4572 Quote all directory names. This doesn't mean that all possible
4573 directory names are safe for building webkit, but the configure
4574 script already runs a sanity check.
4578 2013-09-11 Zan Dobersek <zdobersek@igalia.com>
4580 [GTK] Stop disabling deprecated symbols in debug builds
4581 https://bugs.webkit.org/show_bug.cgi?id=121145
4583 Reviewed by Carlos Garcia Campos.
4585 Disabling the dependencies' deprecated symbols in debug builds is only causing unnecessary
4586 build failures. Compiler warnings are being thrown whenever a deprecated symbol is being
4587 used, so a build failure is an overreach in this case.
4589 * Source/autotools/SetupAutoconfHeader.m4:
4591 2013-09-10 Marcelo Morais <m.morais@samsung.com>