1 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
3 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
4 https://bugs.webkit.org/show_bug.cgi?id=138840
6 Reviewed by Csaba Osztrogonác.
8 * Source/cmake/OptionsCommon.cmake:
10 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
12 Remove Source/Platform cruft
13 https://bugs.webkit.org/show_bug.cgi?id=138658
15 Reviewed by Anders Carlsson.
18 * Source/Platform: Removed.
20 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
22 Enable Cortex-A53-specific code paths by default if core is detected.
23 https://bugs.webkit.org/show_bug.cgi?id=138499
25 Reviewed by Csaba Osztrogonác.
27 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
28 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
31 Since on ARM64/Linux the part number that cpuinfo reports depends on
32 the core the query is run on, the check is bound to and executed on the
33 available cores one by one.
35 * Source/cmake/OptionsCommon.cmake:
37 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
39 [EFL] Remove unnecessary version check from OptionsEfl.cmake
40 https://bugs.webkit.org/show_bug.cgi?id=138498
42 Reviewed by Csaba Osztrogonác.
44 * Source/cmake/OptionsEfl.cmake:
46 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
48 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
49 https://bugs.webkit.org/show_bug.cgi?id=138465
51 Reviewed by Gyuyoung Kim.
53 * Source/cmake/OptionsEfl.cmake:
55 2014-11-03 Dean Jackson <dino@apple.com>
57 Add ENABLE_FILTERS_LEVEL_2 feature guard.
58 https://bugs.webkit.org/show_bug.cgi?id=138362
60 Reviewed by Tim Horton.
62 Add a new feature define for Level 2 of CSS Filters.
63 http://dev.w3.org/fxtf/filters-2/
65 * Source/cmake/OptionsEfl.cmake:
66 * Source/cmake/OptionsGTK.cmake:
67 * Source/cmake/OptionsMac.cmake:
68 * Source/cmake/WebKitFeatures.cmake:
69 * Source/cmakeconfig.h.cmake:
71 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
73 Workaround for Cortex-A53 erratum 835769
74 https://bugs.webkit.org/show_bug.cgi?id=138315
76 Reviewed by Filip Pizlo.
78 This patch introduces CMake variable and preprocessor macro
79 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
80 code paths, if set true.
82 * Source/cmake/OptionsCommon.cmake:
83 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
85 * Source/cmakeconfig.h.cmake:
86 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
88 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
90 [GTK] Fix the build of FTL JIT
91 https://bugs.webkit.org/show_bug.cgi?id=138298
93 Reviewed by Carlos Garcia Campos.
95 * Source/cmake/OptionsGTK.cmake:
96 Remove the need for the LIBCXXABI package.
98 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
100 REGRESSION(CMake): Make it possible to build without introspection
101 https://bugs.webkit.org/show_bug.cgi?id=138006
103 Reviewed by Philippe Normand.
105 Add ENABLE_INTROSPECTION option.
107 * Source/PlatformGTK.cmake: Dot not add gir global target if
108 introspection is disabled.
109 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
110 introspection is disabled.
112 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
114 [GTK] Support script message handlers WebKitUserContentManager
115 https://bugs.webkit.org/show_bug.cgi?id=133730
117 Reviewed by Carlos Garcia Campos.
119 Support user script message handlers in WebKitUserContentManager.
120 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
121 an option is added to the CMake build files. The option is disabled
122 globally by default, and the WebKitGTK port enables it. On the API
123 level, two new methods to register and unregister names are provided
124 in the "window.webkit" namespace, and on message reception the
125 "WebKitUserContentManager::script-message-received" signal is
126 emitted, using the registered names as signal detail.
128 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
129 ENABLE_USER_MESSAGE_HANDLERS feature by default.
130 * Source/cmake/WebKitFeatures.cmake: Add feature description for
131 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
133 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
135 [GTK] Bump libsoup's minimum version to 2.42.0.
136 https://bugs.webkit.org/show_bug.cgi?id=138086
138 Reviewed by Martin Robinson.
140 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
141 soup-version.h header was added to soup.h in 2.41.4, which then becomes
142 the minimum version required to build the port these days.
144 In addition, since the autotools build system required 2.42.0 before
145 being retired, require the same version here. Version 2.42.0 was also
147 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
149 * Source/cmake/OptionsGTK.cmake:
151 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
153 [EFL] Remove unnecessary defines from OptionsEfl.cmake
154 https://bugs.webkit.org/show_bug.cgi?id=138132
156 Reviewed by Csaba Osztrogonác.
158 * Source/cmake/OptionsEfl.cmake:
160 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
162 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
164 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
166 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
168 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
169 https://bugs.webkit.org/show_bug.cgi?id=137946
171 Reviewed by Gyuyoung Kim.
173 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
175 * Source/cmake/OptionsEfl.cmake:
177 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
179 Fix FTL Native Inlining for EFL
180 https://bugs.webkit.org/show_bug.cgi?id=137774
182 Reviewed by Michael Saboff.
184 Updated CMake for FTL Native Inlining.
187 * Source/cmake/FindClang.cmake: Added.
188 * Source/cmake/OptionsEfl.cmake:
189 * Source/cmakeconfig.h.cmake:
191 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
193 Web Inspector: Generate all Inspector domains together in JavaScriptCore
194 https://bugs.webkit.org/show_bug.cgi?id=137748
196 Reviewed by Brian Burg.
198 * Source/PlatformEfl.cmake:
200 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
202 [GTK] Add initial gestures support
203 https://bugs.webkit.org/show_bug.cgi?id=137812
205 Reviewed by Sergio Villar Senin.
207 Check if the GTK+ version supports gestures or not.
209 * Source/cmake/FindGTK3.cmake:
210 * Source/cmake/OptionsGTK.cmake:
212 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
214 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
215 https://bugs.webkit.org/show_bug.cgi?id=137781
217 Reviewed by Martin Robinson.
219 We used to enable smooth scrolling unconditionally in autotools
220 (via WebKitFeatures.m4), but since the switch to CMake it's
221 unconditionally disabled, so changing the setting doesn't have any
224 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
226 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
228 Removing CUSTOM_PROTOCOLS guard
229 https://bugs.webkit.org/show_bug.cgi?id=137741
231 Reviewed by Benjamin Poulain.
233 * Source/cmake/OptionsEfl.cmake:
235 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
237 [EFL] Enable WebP support.
238 https://bugs.webkit.org/show_bug.cgi?id=136156
240 Reviewed by Gyuyoung Kim.
242 Add WebP package finding rule.
244 * Source/cmake/OptionsEfl.cmake:
246 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
248 [EFL] Enable custom URI schemes with CustomProtocols
249 https://bugs.webkit.org/show_bug.cgi?id=128177
251 Reviewed by Gyuyoung Kim.
253 Fixing ewk_context_url_scheme_register() ewebkit2 API
254 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
256 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
258 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
260 Bump version to 2.7.0
261 https://bugs.webkit.org/show_bug.cgi?id=137301
263 Rubber-stamped by Carlos Garcia Campos.
265 * Source/cmake/OptionsGTK.cmake: Bump version numbers
267 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
269 [EFL] Rename TEST_THEME_DIR macro
270 https://bugs.webkit.org/show_bug.cgi?id=137244
272 Reviewed by Csaba Osztrogonác.
274 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
276 2014-09-27 Dan Bernstein <mitz@apple.com>
278 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
279 https://bugs.webkit.org/show_bug.cgi?id=137053
281 Reviewed by Mark Rowe.
283 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
284 In the build pre-action, pass the --wksi and --llvm options to
285 copy-webkitlibraries-to-product-directory.
286 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
288 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
290 [GTK] Enable CSS_IMAGE_SET in production builds
291 https://bugs.webkit.org/show_bug.cgi?id=137142
293 Reviewed by Alejandro G. Castro.
295 This is required by the inspector to show some of the icons that
298 * Source/cmake/OptionsGTK.cmake:
300 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
302 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
303 https://bugs.webkit.org/show_bug.cgi?id=136377
305 Reviewed by Philippe Normand.
307 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
308 for CMake versions less than 3.
310 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
312 Remove WinCE port from trunk
313 https://bugs.webkit.org/show_bug.cgi?id=136951
315 Reviewed by Alex Christensen.
317 * Source/cmake/OptionsWinCE.cmake: Removed.
318 * Source/cmake/WebKitPackaging.cmake:
320 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
322 [EFL][GTK] Remove WebKit1 related codes
323 https://bugs.webkit.org/show_bug.cgi?id=136853
325 Reviewed by Csaba Osztrogonác.
327 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
330 * Source/PlatformGTK.cmake:
332 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
335 https://bugs.webkit.org/show_bug.cgi?id=136820
337 Reviewed by Csaba Osztrogonác.
339 * Source/cmake/FindICU.cmake:
341 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
343 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
344 https://bugs.webkit.org/show_bug.cgi?id=136814
346 Reviewed by Philippe Normand.
348 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
349 We bundle the wayland-egl dependency with wayland-client and wayland-server
350 and store the resulting variables with the WAYLAND_ prefix. Because of this
351 this line wasn't exporting anything useful.
353 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
357 * Source/cmake/WebKitMacros.cmake:
359 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
361 [JavaScriptCore] Fix FTL on platform EFL.
362 https://bugs.webkit.org/show_bug.cgi?id=133571
364 Reviewed by Filip Pizlo.
368 * Source/cmake/FindLIBCXXABI.cmake: Removed.
369 * Source/cmake/OptionsEfl.cmake:
371 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
374 https://bugs.webkit.org/show_bug.cgi?id=136571
376 Reviewed by Darin Adler.
378 * Source/cmake/OptionsEfl.cmake:
379 * Source/cmake/OptionsGTK.cmake:
380 * Source/cmake/OptionsMac.cmake:
381 * Source/cmake/WebKitFeatures.cmake:
382 * Source/cmakeconfig.h.cmake:
384 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
386 Remove CSS_FILTERS flag
387 https://bugs.webkit.org/show_bug.cgi?id=136529
389 Reviewed by Dirk Schulze.
391 * Source/cmake/OptionsEfl.cmake:
392 * Source/cmake/OptionsGTK.cmake:
393 * Source/cmake/OptionsMac.cmake:
394 * Source/cmake/WebKitFeatures.cmake:
395 * Source/cmakeconfig.h.cmake:
397 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
399 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
400 https://bugs.webkit.org/show_bug.cgi?id=136194
402 Reviewed by Csaba Osztrogonác.
404 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
408 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
410 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
411 https://bugs.webkit.org/show_bug.cgi?id=135560
413 Reviewed by Gyuyoung Kim.
415 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
417 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
419 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
420 https://bugs.webkit.org/show_bug.cgi?id=136343
422 Reviewed by David Kilzer.
424 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
426 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
427 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
429 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
431 [EFL] Share fast/speechsynthesis/ with other ports
432 https://bugs.webkit.org/show_bug.cgi?id=136224
434 Reviewed by Chris Fleizach.
436 Enable WebSpeech for EFL.
438 * Source/cmake/OptionsEfl.cmake:
440 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
442 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
443 https://bugs.webkit.org/show_bug.cgi?id=136127
445 Reviewed by Gyuyoung Kim.
447 Add build support for espeak.
449 * Source/cmake/FindEspeak.cmake: Added.
450 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
452 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
454 [EFL] Build break using clang
455 https://bugs.webkit.org/show_bug.cgi?id=136245
457 Reviewed by Gyuyoung Kim.
459 * Source/cmake/OptionsEfl.cmake:
460 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
461 Some warnings are from system libraries.
463 2014-08-25 Alberto Garcia <berto@igalia.com>
465 [GTK] Unify webkitgtk and webkit2gtk directories
466 https://bugs.webkit.org/show_bug.cgi?id=136209
468 Reviewed by Carlos Garcia Campos.
470 Use webkit2gtk-X.X both for the process binaries and the injected
473 * Source/cmake/OptionsGTK.cmake:
475 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
477 [EFL] Move Efl specific code from Source/CMakeLists.txt
478 https://bugs.webkit.org/show_bug.cgi?id=136206
480 Reviewed by Gyuyoung Kim.
482 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
483 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
485 * Source/CMakeLists.txt:
486 * Source/cmake/OptionsEfl.cmake:
488 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
490 [EFL] Introduce DEVELOPER_MODE
491 https://bugs.webkit.org/show_bug.cgi?id=135884
493 Reviewed by Gyuyoung Kim.
495 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
496 instead of SHARED_CORE.
497 SHARED_CORE can reduce link time and memory consumption but it is slightly different
500 * Source/cmake/OptionsEfl.cmake:
501 * Source/cmake/WebKitHelpers.cmake:
502 Moved fvisibility=hidden to OptionsEfl.cmake
504 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
506 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
507 https://bugs.webkit.org/show_bug.cgi?id=136110
509 Reviewed by Gyuyoung Kim.
511 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
513 * Source/cmake/OptionsEfl.cmake:
515 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
517 [EFL] Apply eflsymbols.filter to WebKit2
518 https://bugs.webkit.org/show_bug.cgi?id=136148
520 Reviewed by Csaba Osztrogonác.
522 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
523 in the eflsymbols.filter.
525 * Source/cmake/OptionsEfl.cmake:
526 * Source/cmake/eflsymbols.filter:
528 2014-08-21 Zalan Bujtas <zalan@apple.com>
530 Enable SATURATED_LAYOUT_ARITHMETIC.
531 https://bugs.webkit.org/show_bug.cgi?id=136106
533 Reviewed by Simon Fraser.
535 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
536 (No measurable performance regression on Mac.)
538 * Source/cmake/OptionsMac.cmake:
539 * Source/cmake/WebKitFeatures.cmake:
540 * Source/cmakeconfig.h.cmake:
542 2014-08-19 Zalan Bujtas <zalan@apple.com>
544 Remove ENABLE(SUBPIXEL_LAYOUT).
545 https://bugs.webkit.org/show_bug.cgi?id=136077
547 Reviewed by Simon Fraser.
549 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
551 * Source/cmake/OptionsEfl.cmake:
552 * Source/cmake/OptionsGTK.cmake:
553 * Source/cmake/OptionsMac.cmake:
554 * Source/cmake/WebKitFeatures.cmake:
555 * Source/cmakeconfig.h.cmake:
557 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
559 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
560 https://bugs.webkit.org/show_bug.cgi?id=135980
562 Reviewed by Martin Robinson.
564 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
565 overrides any other disabled optimization that was prepended to these
566 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
567 lists first in the final list of compilation flags.
569 To avoid -On re-enabling optimizations that we'd like to keep disabled,
570 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
572 * Source/cmake/OptionsCommon.cmake:
573 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
574 * Source/cmake/OptionsGTK.cmake:
576 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
578 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
580 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
582 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
584 [GTK] Disable memory sampler on non-Linux system
585 https://bugs.webkit.org/show_bug.cgi?id=134483
587 Reviewed by Philippe Normand.
589 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
590 Linux because it uses many Linux-specific features, so we should disable
591 memory sampler on other systems by default.
593 * Source/cmake/OptionsGTK.cmake:
595 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
597 [GTK] HTML API documentation should also be installed versioned
598 https://bugs.webkit.org/show_bug.cgi?id=135970
600 Reviewed by Philippe Normand.
602 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
605 2014-08-14 Tomas Popela <tpopela@redhat.com>
607 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
608 https://bugs.webkit.org/show_bug.cgi?id=135937
610 Reviewed by Carlos Garcia Campos.
614 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
616 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
617 https://bugs.webkit.org/show_bug.cgi?id=135934
619 Reviewed by Gustavo Noronha Silva.
621 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
622 The gir files should installed in $datadir/gir-1.0/ together with all other
623 gir files. We don't need to install introspection files in a versioned
624 directory because their filenames already contain the binary version. But before
625 r171598, the files were only installed to the right directory if the
626 gobject-instrospection pkg-config file was in the same prefix than the one we
627 wanted to install, because the gir and typelibs directories were extracted from
628 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
629 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
630 like we do in the autotools build.
632 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
633 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
634 * Source/cmake/OptionsGTK.cmake: Define
635 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
637 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
639 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
640 https://bugs.webkit.org/show_bug.cgi?id=135836
642 Reviewed by Philippe Normand.
644 * Source/PlatformGTK.cmake: Add install command to also install
645 the GObject DOM bindings API docs.
647 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
649 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
650 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
651 re-set CMAKE_C_FLAGS with the new string. The two flags should really
652 be appended to CMAKE_C_FLAGS and the same variable re-set with the
655 * Source/cmake/OptionsCommon.cmake:
657 2014-08-13 Alex Christensen <achristensen@webkit.org>
659 Progress towards CMake on Mac.
660 https://bugs.webkit.org/show_bug.cgi?id=135819
662 Reviewed by Laszlo Gombos.
664 * Source/cmake/OptionsMac.cmake:
665 Disable some more features temporarily to get CMake working.
666 * Source/cmake/WebKitMacros.cmake:
667 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
669 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
671 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
672 https://bugs.webkit.org/show_bug.cgi?id=135798
674 Reviewed by Philippe Normand.
676 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
678 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
679 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
680 https://bugs.webkit.org/show_bug.cgi?id=133317
682 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
684 Reviewed by Philippe Normand.
686 No new tests since no new functionality has been added.
688 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
690 2014-08-11 Commit Queue <commit-queue@webkit.org>
692 Unreviewed, rolling out r172393.
693 https://bugs.webkit.org/show_bug.cgi?id=135796
695 discussion needed about GnuTLS version bump on the bots
696 (Requested by philn on #webkit).
700 https://bugs.webkit.org/show_bug.cgi?id=133317
701 http://trac.webkit.org/changeset/172393
703 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
704 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
705 https://bugs.webkit.org/show_bug.cgi?id=133317
707 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
709 Reviewed by Philippe Normand.
711 No new tests since no new functionality has been added.
713 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
715 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
717 [GTK] Adds stubs for all subtle crypto algorithm implemntations
718 https://bugs.webkit.org/show_bug.cgi?id=133316
720 Reviewed by Philippe Normand.
722 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
723 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
724 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
726 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
728 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
730 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
732 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
734 [GTK] REGRESSION(r166239): The ld version script is not being used
735 https://bugs.webkit.org/show_bug.cgi?id=135694
737 Reviewed by Martin Robinson.
739 Move the symbols filter file from Tools/gtk to Source/cmake and rename
740 it as gtksymbols.filter. Also updated it, since some of the symbols
741 exported were renamed.
743 * Source/cmake/OptionsGTK.cmake:
744 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
746 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
748 [GTK] Child processes should be installed in a versioned directory
749 https://bugs.webkit.org/show_bug.cgi?id=135754
751 Reviewed by Gustavo Noronha Silva.
753 Define LIBEXEC_INSTALL_DIR as
754 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
755 so that the child processes are installed in $libexec/webkitgtk-4.0.
756 This makes it possible to install 2.6 in parallel to older versions.
758 * Source/cmake/OptionsGTK.cmake:
760 2014-08-08 Alex Christensen <achristensen@webkit.org>
762 Progress towards using CMake on Mac.
763 https://bugs.webkit.org/show_bug.cgi?id=135662
765 Reviewed by Laszlo Gombos.
768 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
769 * Source/cmake/WebKitFeatures.cmake:
770 * Source/cmakeconfig.h.cmake:
771 Added features that are needed by the Mac port.
772 * Source/cmake/OptionsMac.cmake:
773 Enable CSS_IMAGE_SET based on FeatureDefines.h.
774 Disable the FTL with CMake for now.
775 * Source/cmake/OptionsEFL.cmake:
776 * Source/cmake/OptionsGTK.cmake:
777 Enable subpixel layout to not conflict with FeatureDefines.h
779 2014-08-08 Simon Fraser <simon.fraser@apple.com>
781 Undo some erroneous changes to the Xcode scheme files from r172259.
783 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
784 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
786 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
788 [CMake] Drop the required version of CMake down to 2.8.8
789 https://bugs.webkit.org/show_bug.cgi?id=135713
791 Reviewed by Alex Christensen.
793 * CMakeLists.txt: Require CMake 2.8.8.
795 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
797 Get rid of INPUT_SPEECH
798 https://bugs.webkit.org/show_bug.cgi?id=135672
800 Reviewed by Andreas Kling.
802 * Source/cmake/OptionsMac.cmake:
803 * Source/cmake/WebKitFeatures.cmake:
804 * Source/cmakeconfig.h.cmake:
806 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
808 [GTK] Disable IndexedDB
809 https://bugs.webkit.org/show_bug.cgi?id=135692
811 Reviewed by Carlos Garcia Campos.
813 * Source/cmake/OptionsGTK.cmake:
815 2014-08-06 Dean Jackson <dino@apple.com>
817 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
818 https://bugs.webkit.org/show_bug.cgi?id=135675
820 Reviewed by Sam Weinig.
822 * Source/cmake/OptionsGTK.cmake:
823 * Source/cmake/OptionsMac.cmake:
824 * Source/cmake/WebKitFeatures.cmake:
825 * Source/cmakeconfig.h.cmake:
827 2014-08-06 David Farler <dfarler@apple.com>
829 Unreviewed build fix: Make includes semicolon in assignment.
831 * Makefile.shared: Remove a ;
833 2014-08-06 David Farler <dfarler@apple.com>
835 Set DSYMUTIL_NUM_THREADS to the number of logical cores
836 https://bugs.webkit.org/show_bug.cgi?id=135655
838 Reviewed by Mark Rowe.
840 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
842 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
844 [GTK] Be able to disable gtk2 dependency
845 https://bugs.webkit.org/show_bug.cgi?id=135505
847 Reviewed by Gustavo Noronha Silva.
849 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
850 required when it's enabled. It's enabled by default.
852 * Source/cmake/OptionsGTK.cmake:
854 2014-08-05 Alex Christensen <achristensen@webkit.org>
857 https://bugs.webkit.org/show_bug.cgi?id=135620
859 Reviewed by Laszlo Gombos.
861 * Source/cmake/OptionsMac.cmake:
862 Use UDIS86 by default on Mac.
864 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
866 Add a flag for the CSS Selectors level 4 implementation
867 https://bugs.webkit.org/show_bug.cgi?id=135535
869 Reviewed by Andreas Kling.
871 * Source/cmake/OptionsEfl.cmake:
872 * Source/cmake/OptionsGTK.cmake:
873 * Source/cmake/WebKitFeatures.cmake:
874 * Source/cmakeconfig.h.cmake:
876 2014-08-04 Alex Christensen <achristensen@webkit.org>
878 Progress towards CMake on Mac.
879 https://bugs.webkit.org/show_bug.cgi?id=135528
881 Reviewed by Gyuyoung Kim.
883 * Source/cmake/OptionsMac.cmake:
884 Made options list based on FeatureDefines.xcconfig files.
886 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
888 [GTK] Windowing target support should reflect the support in the GTK+ dependency
889 https://bugs.webkit.org/show_bug.cgi?id=134736
891 Reviewed by Martin Robinson.
893 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
894 support the X11 or Wayland windowing targets -- instead, if there's no support
895 the specific target is disabled, and an error is thrown only if neither of the
896 backends is enabled at the end..
897 For now the X11 target remains enabled by default, and the Wayland target is
898 kept disabled. Once it's possible to have both targets enabled at runtime in
899 WebKit, the Wayland target will be enabled as well and we'll leave it to the
900 GTK+ dependency to determine which targets can be enabled.
902 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
904 [CMake] Add FindWayland.cmake
905 https://bugs.webkit.org/show_bug.cgi?id=135540
907 Reviewed by Martin Robinson.
909 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
910 dependency. For now bundles the wayland-client, wayland-server and
911 wayland-egl pkg-config targets into one dependency, but these could
912 be split in the future if necessary.
914 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
916 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
917 https://bugs.webkit.org/show_bug.cgi?id=135553
919 Reviewed by Gyuyoung Kim.
921 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
922 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
924 * Source/cmake/OptionsEfl.cmake:
926 2014-08-01 Bear Travis <betravis@adobe.com>
928 [Feature Queries] Enable Feature Queries on EFL/GTK
929 https://bugs.webkit.org/show_bug.cgi?id=134902
931 Reviewed by Benjamin Poulain.
933 Enable CSS Feature Queries by default on the EFL and GTK
936 * Source/cmake/OptionsEfl.cmake:
937 * Source/cmake/OptionsGTK.cmake:
939 2014-08-01 Alex Christensen <achristensen@webkit.org>
941 Progress towards cmake on Windows.
942 https://bugs.webkit.org/show_bug.cgi?id=135484
944 Reviewed by Martin Robinson.
947 Added Mac to list of ports, even though it is not done yet.
948 Changed minimum bison version to version installed on Macs.
949 * Source/cmake/OptionsAppleWin.cmake:
950 Added some definitions.
951 * Source/cmake/OptionsEfl.cmake:
952 * Source/cmake/OptionsGTK.cmake:
953 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
954 * Source/cmake/OptionsMac.cmake: Added blank for now.
955 * Source/cmake/OptionsWinCairo.cmake:
956 * Source/cmake/OptionsWindows.cmake:
957 Added some definitions.
958 Removed /WX (warnings treated as error while compiling).
959 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
961 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
963 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
964 https://bugs.webkit.org/show_bug.cgi?id=135501
966 Reviewed by Gyuyoung Kim.
968 Use PROJECT_VERSION_MICRO instead.
970 * Source/cmake/OptionsEfl.cmake:
971 * Source/cmake/OptionsGTK.cmake:
972 * Source/cmake/WebKitHelpers.cmake:
974 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
976 [EFL] Bump ewebkit version to 1.11
977 https://bugs.webkit.org/show_bug.cgi?id=135487
979 Reviewed by Gyuyoung Kim.
981 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
983 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
985 [EFL] Add support for building with Geoclue2.
986 https://bugs.webkit.org/show_bug.cgi?id=135455
988 Reviewed by Gyuyoung Kim.
990 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
993 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
995 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
997 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
999 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
1001 [GTK] Bump binary version for 2.6
1002 https://bugs.webkit.org/show_bug.cgi?id=133724
1004 Reviewed by Philippe Normand.
1006 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
1007 update library version numbers.
1009 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
1011 [CMake] Bump the minimum required version
1012 https://bugs.webkit.org/show_bug.cgi?id=135382
1014 Reviewed by Gyuyoung Kim.
1016 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
1017 we introduced usage of target_include_directories().
1019 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
1021 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
1022 https://bugs.webkit.org/show_bug.cgi?id=135376
1024 Reviewed by Gyuyoung Kim.
1026 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
1028 * Source/cmake/OptionsEfl.cmake:
1029 * Source/cmake/OptionsGTK.cmake:
1031 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
1033 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
1034 https://bugs.webkit.org/show_bug.cgi?id=135288
1036 Reviewed by Martin Robinson.
1038 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
1039 datadir to pkgconfig
1040 * Source/cmake/OptionsGTK.cmake: define install directories early
1041 enough to be used in FindGObjectIntrospection.cmake
1043 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
1045 Remove CSS_EXCLUSIONS compile flag and leftover code
1046 https://bugs.webkit.org/show_bug.cgi?id=135175
1048 Reviewed by Zoltan Horvath.
1050 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
1051 stubs. This removes the flag and the useless code.
1053 * Source/cmake/WebKitFeatures.cmake:
1054 * Source/cmakeconfig.h.cmake:
1056 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
1058 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
1059 https://bugs.webkit.org/show_bug.cgi?id=135114
1061 Fix build with GStreamer 1.4
1063 Reviewed by Philippe Normand.
1065 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
1066 gst-mpegts component instead of the unstable 1.3.x verstions.
1068 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
1070 [GTK] Simplify make-dist command line arguments
1071 https://bugs.webkit.org/show_bug.cgi?id=134832
1073 Reviewed by Martin Robinson.
1075 * Source/PlatformGTK.cmake: Use --version instead of
1076 --tarball-root when running make-dist.py.
1078 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
1080 Add a manual test for r135044
1082 <https://bugs.webkit.org/show_bug.cgi?id=135044>
1084 Rubber-stamped by Andy Estes.
1086 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
1088 2014-07-18 Dana Burkart <dburkart@apple.com>
1090 Add a new 'analyze' target to the makefile. This will make use of a new
1091 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
1093 https://bugs.webkit.org/show_bug.cgi?id=135057
1094 <rdar://problem/10193187>
1096 Reviewed by David Kilzer.
1102 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
1104 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
1105 https://bugs.webkit.org/show_bug.cgi?id=134963
1107 Reviewed by Gyuyoung Kim.
1109 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
1111 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
1113 2014-07-14 Daniel Bates <dabates@apple.com>
1115 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
1116 https://bugs.webkit.org/show_bug.cgi?id=134905
1117 <rdar://problem/16602779>
1119 Reviewed by Simon Fraser.
1121 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
1122 on the tapped element when processing a touchend as a result of finger pressing and releasing
1123 on the same element that is initially positioned outside the visible content area.
1125 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
1127 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
1129 [GTK] Enable VIDEO_TRACK by default
1130 https://bugs.webkit.org/show_bug.cgi?id=134801
1132 Reviewed by Philippe Normand.
1134 * Source/cmake/OptionsGTK.cmake:
1136 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1138 [GTK][CMake] Add a 'distcheck' target
1139 https://bugs.webkit.org/show_bug.cgi?id=130675
1141 Reviewed by Gustavo Noronha Silva.
1143 * Source/PlatformGTK.cmake: Add distcheck target.
1145 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
1147 [GTK] Use the same default options for production builds that previous stable releases
1148 https://bugs.webkit.org/show_bug.cgi?id=134589
1150 Reviewed by Martin Robinson.
1152 Change the default value of some features to match our stable releases.
1153 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
1154 canvas depend on whether cairo-gl is found.
1156 * Source/cmake/FindCairoGL.cmake: Added.
1157 * Source/cmake/OptionsGTK.cmake:
1159 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
1161 [EFL] Support Encrypted Media Extensions.
1162 https://bugs.webkit.org/show_bug.cgi?id=134750
1164 Reviewed by Gyuyoung Kim.
1166 Webkit needs to play encrypted media contents when media player
1167 is played by Media source extensions and normal video procedure.
1169 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
1171 2014-07-08 Alex Christensen <achristensen@webkit.org>
1173 Steps towards CMake on Windows.
1174 https://bugs.webkit.org/show_bug.cgi?id=134716
1176 Reviewed by Martin Robinson.
1179 Added AppleWin and WinCairo to list of CMake ports.
1180 * Source/cmake/OptionsAppleWin.cmake: Added.
1181 * Source/cmake/OptionsWinCairo.cmake: Added.
1182 * Source/cmake/OptionsWindows.cmake:
1183 Windows needs to use the system malloc. Other options to come.
1185 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1187 [EFL] Support Geolocation
1188 https://bugs.webkit.org/show_bug.cgi?id=134439
1190 Reviewed by Antonio Gomes.
1192 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
1194 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
1196 Broken build with build-webkit --no-video
1197 https://bugs.webkit.org/show_bug.cgi?id=134587
1199 Reviewed by Darin Adler.
1201 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
1203 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
1205 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
1207 [GTK] The list of features shown by cmake is not accurate
1208 https://bugs.webkit.org/show_bug.cgi?id=134588
1210 Reviewed by Gustavo Noronha Silva.
1212 The problem is that some options might change after the feature
1213 list has been printed.
1215 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
1216 setting the default values of features and set WEBGL value
1217 depending on the dependencies, and API_TEST depending on whether
1218 developer mode is enabled or not.
1220 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
1222 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
1223 https://bugs.webkit.org/show_bug.cgi?id=134578
1225 Reviewed by Gyuyoung Kim.
1227 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
1228 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
1229 disable related option if it is not ON.
1231 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
1232 * Source/cmake/OptionsGTK.cmake: Ditto.
1233 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
1235 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
1237 [GTK] make dist is broken
1238 https://bugs.webkit.org/show_bug.cgi?id=134542
1240 Reviewed by Martin Robinson.
1242 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
1244 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
1246 [CMake] Add necessary support for building for the Wayland target
1247 https://bugs.webkit.org/show_bug.cgi?id=134160
1249 Reviewed by Darin Adler.
1251 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
1252 is enabled, and that its version matches the version of the generic package. Same
1253 for the gtk+-wayland-3.0 package and the Wayland target.
1254 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
1255 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
1256 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
1257 so they keep building the TestNetscapePlugin target.
1258 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
1259 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
1260 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
1261 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
1262 the minimum required version as soon as that target is enabled. Only search for GLX
1263 if the X11 target is enabled.
1265 2014-06-29 Yoav Weiss <yoav@yoav.ws>
1267 Add support for HTMLImageElement's sizes attribute
1268 https://bugs.webkit.org/show_bug.cgi?id=133620
1270 Reviewed by Dean Jackson.
1272 Added an ENABLE_PICTURE_SIZES compile flag.
1274 * Source/cmake/WebKitFeatures.cmake:
1275 * Source/cmakeconfig.h.cmake:
1277 2014-06-26 Daniel Bates <dabates@apple.com>
1279 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
1280 https://bugs.webkit.org/show_bug.cgi?id=134309
1281 <rdar://problem/17427385>
1283 Reviewed by Darin Adler.
1285 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
1288 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
1290 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
1292 Remove build guard for progress element
1293 https://bugs.webkit.org/show_bug.cgi?id=134292
1295 Reviewed by Benjamin Poulain.
1297 The build flag is no longer needed as it is always on.
1299 * Source/cmake/WebKitFeatures.cmake:
1300 * Source/cmakeconfig.h.cmake:
1302 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
1304 [EFL] Platform support for WebSpeech feature.
1305 https://bugs.webkit.org/show_bug.cgi?id=116438
1307 Reviewed by Csaba Osztrogonác.
1309 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
1311 * Source/cmake/OptionsEfl.cmake:
1312 * Source/cmake/WebKitFeatures.cmake:
1314 2014-06-23 Philippe Normand <pnormand@igalia.com>
1316 Unreviewed, GTK build fix after r170266.
1318 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
1320 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1322 Disable gamepad feature on EFL and GTK ports by default
1323 https://bugs.webkit.org/show_bug.cgi?id=134169
1325 Reviewed by Brady Eidson.
1327 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
1329 2014-06-21 Brady Eidson <beidson@apple.com>
1331 Gamepad API - Deprecate the existing implementation
1332 https://bugs.webkit.org/show_bug.cgi?id=134108
1334 Reviewed by Timothy Hatcher.
1336 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
1337 -Add the "Deprecated" suffix to some implementation files
1339 * Source/cmake/OptionsEfl.cmake:
1340 * Source/cmake/OptionsGTK.cmake:
1341 * Source/cmake/WebKitFeatures.cmake:
1342 * Source/cmakeconfig.h.cmake:
1344 2014-06-21 Commit Queue <commit-queue@webkit.org>
1346 Unreviewed, rolling out r170244.
1347 https://bugs.webkit.org/show_bug.cgi?id=134157
1349 GTK/EFL bindings generator works differently, making this
1350 patch not work there. Will fix entire patch after a rollout.
1351 (Requested by bradee-oh on #webkit).
1355 "Gamepad API - Deprecate the existing implementation"
1356 https://bugs.webkit.org/show_bug.cgi?id=134108
1357 http://trac.webkit.org/changeset/170244
1359 2014-06-21 Brady Eidson <beidson@apple.com>
1361 Gamepad API - Deprecate the existing implementation
1362 https://bugs.webkit.org/show_bug.cgi?id=134108
1364 Reviewed by Timothy Hatcher.
1366 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
1367 -Add the "Deprecated" suffix to some implementation files
1369 * Source/cmake/OptionsEfl.cmake:
1370 * Source/cmake/OptionsGTK.cmake:
1371 * Source/cmake/WebKitFeatures.cmake:
1372 * Source/cmakeconfig.h.cmake:
1374 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1376 Removing PAGE_VISIBILITY_API compile guard.
1377 https://bugs.webkit.org/show_bug.cgi?id=133844
1379 Reviewed by Gavin Barraclough.
1381 * Source/cmake/OptionsEfl.cmake:
1382 * Source/cmake/OptionsGTK.cmake:
1383 * Source/cmake/WebKitFeatures.cmake:
1384 * Source/cmakeconfig.h.cmake:
1386 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
1388 [EFL][CMAKE] Disable WebKit1 build as a default
1389 https://bugs.webkit.org/show_bug.cgi?id=134093
1391 Reviewed by Gyuyoung Kim.
1393 Disable WebKit1 build and enable WebKit2 build for the EFL port.
1395 * Source/cmake/OptionsEfl.cmake:
1397 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1399 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
1400 https://bugs.webkit.org/show_bug.cgi?id=130389
1402 Reviewed by Mark Lam.
1404 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
1405 into !ENABLE(JIT) since they are mutually exclusive.
1407 * Source/cmake/OptionsEfl.cmake:
1408 * Source/cmake/OptionsGTK.cmake:
1409 * Source/cmake/WebKitFeatures.cmake:
1410 * Source/cmakeconfig.h.cmake:
1412 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
1414 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
1415 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
1416 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
1417 by the plugin process, but it is searched and utilized separately.
1419 Rubber-stamped by Carlos Garcia Campos.
1421 * Source/cmake/OptionsGTK.cmake:
1423 2014-06-16 Commit Queue <commit-queue@webkit.org>
1425 Unreviewed, rolling out r170003.
1426 https://bugs.webkit.org/show_bug.cgi?id=133938
1428 This patch broke GTK build (Requested by kczech on #webkit).
1432 "[EFL] Platform support for WebSpeech feature."
1433 https://bugs.webkit.org/show_bug.cgi?id=116438
1434 http://trac.webkit.org/changeset/170003
1436 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
1438 [EFL] Platform support for WebSpeech feature.
1439 https://bugs.webkit.org/show_bug.cgi?id=116438
1441 Reviewed by Gyuyoung Kim.
1443 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
1445 * Source/cmake/OptionsEfl.cmake:
1446 * Source/cmake/WebKitFeatures.cmake:
1448 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1450 [EFL] Remove duplicated compiler flag
1451 https://bugs.webkit.org/show_bug.cgi?id=133838
1453 Reviewed by Anders Carlsson.
1455 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
1456 it added to common compiler options. So, it is duplicated.
1458 * Source/cmake/WebKitHelpers.cmake:
1460 2014-06-11 Commit Queue <commit-queue@webkit.org>
1462 Unreviewed, rolling out r169877.
1463 https://bugs.webkit.org/show_bug.cgi?id=133784
1465 rollout wrong build fix approach for EFL port (Requested by
1466 gyuyoung on #webkit).
1470 "Unreviewed, EFL build fix since r169869."
1471 http://trac.webkit.org/changeset/169877
1473 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1475 Unreviewed, EFL build fix since r169869.
1477 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
1479 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
1481 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1483 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
1485 * Source/cmake/WebKitHelpers.cmake:
1487 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
1489 [GTK] Make it possible to build with FTL enabled
1490 https://bugs.webkit.org/show_bug.cgi?id=133219
1492 Reviewed by Philippe Normand.
1494 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
1496 * Source/cmake/OptionsGTK.cmake:
1498 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
1500 [CMake] Clean up FAST_MOBILE_SCROLLING
1501 https://bugs.webkit.org/show_bug.cgi?id=133342
1503 Reviewed by Gyuyoung Kim.
1505 FAST_MOBILE_SCROLLING was removed in r168726.
1507 * Source/cmake/OptionsEfl.cmake:
1508 * Source/cmake/OptionsGTK.cmake:
1509 * Source/cmake/WebKitFeatures.cmake:
1510 * Source/cmakeconfig.h.cmake:
1512 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1515 https://bugs.webkit.org/show_bug.cgi?id=132863
1517 Reviewed by Csaba Osztrogonác.
1519 * Source/cmake/OptionsEfl.cmake:
1520 * Source/cmake/OptionsGTK.cmake:
1521 * Source/cmake/WebKitFeatures.cmake:
1522 * Source/cmakeconfig.h.cmake:
1524 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1526 Allow building CMake based ports with WEB_REPLAY
1527 https://bugs.webkit.org/show_bug.cgi?id=133154
1529 Reviewed by Csaba Osztrogonác.
1531 * Source/cmake/WebKitFeatures.cmake:
1532 * Source/cmakeconfig.h.cmake:
1534 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1536 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
1537 https://bugs.webkit.org/show_bug.cgi?id=132907
1539 Reviewed by Gyuyoung Kim.
1541 * Source/cmake/FindLIBCXXABI.cmake: Added.
1542 * Source/cmake/OptionsEfl.cmake:
1544 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
1546 [EFL] Turn on ENABLE_CSS_FILTERS
1547 https://bugs.webkit.org/show_bug.cgi?id=133153
1549 Reviewed by Gyuyoung Kim.
1551 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
1553 2014-05-16 Martin Robinson <mrobinson@igalia.com>
1555 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
1556 https://bugs.webkit.org/show_bug.cgi?id=132819
1558 Reviewed by Carlos Garcia Campos.
1560 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
1562 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
1563 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
1565 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
1567 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
1569 [CMake] Support building with Debug Fission
1570 https://bugs.webkit.org/show_bug.cgi?id=131177
1572 Reviewed by Philippe Normand.
1574 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
1575 of http://gcc.gnu.org/wiki/DebugFission.
1577 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
1579 [GTK] Rename translation domain as WebKit2GTK-3.0
1580 https://bugs.webkit.org/show_bug.cgi?id=132953
1582 Reviewed by Gustavo Noronha Silva.
1584 * Source/cmake/OptionsGTK.cmake:
1586 2014-05-18 Rik Cabanier <cabanier@adobe.com>
1588 support for navigator.hardwareConcurrency
1589 https://bugs.webkit.org/show_bug.cgi?id=132588
1591 Reviewed by Filip Pizlo.
1593 * Source/cmake/OptionsEfl.cmake:
1594 * Source/cmake/OptionsGTK.cmake:
1595 * Source/cmake/WebKitFeatures.cmake:
1596 * Source/cmakeconfig.h.cmake:
1598 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1600 Remove CSS_STICKY_POSITION guards
1601 https://bugs.webkit.org/show_bug.cgi?id=132676
1603 Reviewed by Simon Fraser.
1605 * Source/cmake/OptionsEfl.cmake:
1606 * Source/cmake/OptionsGTK.cmake:
1607 * Source/cmake/WebKitFeatures.cmake:
1608 * Source/cmakeconfig.h.cmake:
1610 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
1612 Unreviewed. Bump version numbers.
1614 * Source/cmake/OptionsGTK.cmake:
1616 2014-05-10 Martin Robinson <mrobinson@igalia.com>
1618 [GTK][CMake] Unable to do make install
1619 https://bugs.webkit.org/show_bug.cgi?id=130188
1621 Reviewed by Carlos Garcia Campos.
1623 Only try to install the HTML documentation if the build is configured to generate it via
1624 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
1625 to keep the HTML documentation directory as an installation source.
1627 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
1628 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
1629 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
1630 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
1631 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
1633 2014-05-09 Anders Carlsson <andersca@apple.com>
1635 Rename WebKit2.framework to WebKit.framework
1636 https://bugs.webkit.org/show_bug.cgi?id=132743
1637 <rdar://problem/15920046>
1639 Reviewed by Dan Bernstein.
1642 Build WebKit.xcodeproj before WebKit2.xcodeproj.
1644 * WebKit.xcworkspace/xcshareddata/xcschemes/:
1647 2014-05-06 David Kilzer <ddkilzer@apple.com>
1649 Add Makefile targets for copying static libraries (LLVM and WKSI)
1650 <http://webkit.org/b/132619>
1652 Reviewed by Mark Rowe.
1655 (MODULES): Add WebKitLibraries.
1657 2014-05-06 Commit Queue <commit-queue@webkit.org>
1659 Unreviewed, rolling out r168304.
1660 https://bugs.webkit.org/show_bug.cgi?id=132607
1662 Broke the build (Requested by KaL on #webkit).
1666 "[GTK][CMake] Unable to do make install"
1667 https://bugs.webkit.org/show_bug.cgi?id=130188
1668 http://trac.webkit.org/changeset/168304
1670 2014-05-05 Martin Robinson <mrobinson@igalia.com>
1672 [GTK][CMake] Unable to do make install
1673 https://bugs.webkit.org/show_bug.cgi?id=130188
1675 Reviewed by Carlos Garcia Campos.
1677 Only try to install the HTML documentation if the build is configured to generate it via
1678 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
1679 to keep the HTML documentation directory as an installation source.
1681 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
1682 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
1683 never added to the default target, but will be triggered by build-webkit, so that
1684 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
1685 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
1687 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1689 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
1690 https://bugs.webkit.org/show_bug.cgi?id=132525
1692 Reviewed by Martin Robinson.
1694 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
1695 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
1696 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
1698 2014-05-01 David Kilzer <ddkilzer@apple.com>
1700 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
1701 <http://webkit.org/b/132432>
1703 Reviewed by Tim Horton.
1705 * Source/cmake/WebKitFeatures.cmake:
1706 * Source/cmakeconfig.h.cmake:
1707 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
1709 2014-04-30 Simon Fraser <simon.fraser@apple.com>
1711 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
1713 Reviewed by Dan Bernstein/Anders Carlsson.
1715 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1716 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1718 2014-04-30 Simon Fraser <simon.fraser@apple.com>
1720 Let Xcode have its way with the WebKit workspace.
1722 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1723 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1725 2014-04-29 Martin Robinson <mrobinson@igalia.com>
1727 [GTK] Make it easier to run CMake for downstreams
1728 https://bugs.webkit.org/show_bug.cgi?id=132370
1730 Reviewed by Carlos Garcia Campos.
1732 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
1734 2014-04-27 Joonghun Park <jh718.park@samsung.com>
1736 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
1737 https://bugs.webkit.org/show_bug.cgi?id=132176
1739 Reviewed by Gyuyoung Kim.
1741 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
1743 * Source/cmake/OptionsEfl.cmake:
1745 2014-04-22 Alex Christensen <achristensen@webkit.org>
1747 Removed old stdbool and inttypes headers.
1748 https://bugs.webkit.org/show_bug.cgi?id=131966
1750 Reviewed by Brent Fulgham.
1752 * Source/cmake/OptionsWindows.cmake:
1753 * Source/cmake/WebKitPackaging.cmake:
1754 Removed references to os-win32 directory.
1756 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
1758 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
1760 Rubber-stamped by Carlos Garcia Campos.
1762 * Source/cmake/WebKitFeatures.cmake:
1764 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
1766 Empty RenderInline objects should not be line break objects.
1768 https://bugs.webkit.org/show_bug.cgi?id=131861
1769 <rdar://problem/15663617>
1771 Reviewed by David Hyatt.
1773 * ManualTests/empty-inline-as-line-break-position.html: Added.
1774 This issue wouldn't reproduce in WebKitTestRunner.
1776 2014-04-19 Brent Fulgham <bfulgham@apple.com>
1778 Revert unintended workspace change in my last commit.
1780 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
1781 Scheme type back to Debug.
1783 2014-04-18 Philippe Normand <pnormand@igalia.com>
1785 Remove NETWORK_INFO support
1786 https://bugs.webkit.org/show_bug.cgi?id=131841
1788 Reviewed by Gyuyoung Kim.
1790 * Source/cmake/OptionsEfl.cmake:
1791 * Source/cmake/OptionsGTK.cmake:
1792 * Source/cmake/WebKitFeatures.cmake:
1793 * Source/cmakeconfig.h.cmake:
1795 2014-04-17 Darin Adler <darin@apple.com>
1797 Try to fix EFL and GTK builds.
1799 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
1800 * Source/cmake/OptionsGTK.cmake: Ditto.
1801 * Source/cmakeconfig.h.cmake: Ditto.
1803 2014-04-16 Brendan Long <b.long@cablelabs.com>
1805 [GTK][CMAKE] build-webkit doesn't detect when the build fails
1806 https://bugs.webkit.org/show_bug.cgi?id=130148
1808 Reviewed by Martin Robinson.
1810 * 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.
1812 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
1814 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
1815 https://bugs.webkit.org/show_bug.cgi?id=131725
1817 Reviewed by Philippe Normand.
1819 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
1820 instead of GTK_UNIX_PRINTING_FOUND and set the macro
1821 HAVE_GTK_UNIX_PRINTING to 1 when found.
1823 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
1825 Web Replay: memoize nondeterministic attributes of the Navigator interface
1826 https://bugs.webkit.org/show_bug.cgi?id=131340
1828 Reviewed by Timothy Hatcher.
1830 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
1832 2014-04-09 Brendan Long <b.long@cablelabs.com>
1834 [GStreamer] Expose MPEG-TS metadata
1835 https://bugs.webkit.org/show_bug.cgi?id=122001
1837 Reviewed by Eric Carlson.
1839 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
1840 * Source/cmake/OptionsEfl.cmake: Same.
1841 * Source/cmake/OptionsGTK.cmake: Same.
1843 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
1845 Web Replay: memoize nondeterministic attributes of the Screen interface
1846 https://bugs.webkit.org/show_bug.cgi?id=131339
1848 Reviewed by Timothy Hatcher.
1850 * ManualTests/inspector/replay-window-screen.html: Added.
1852 2014-04-08 Martin Robinson <mrobinson@igalia.com>
1854 [GTK] Remove the WebKitGTK+ WebKit 1 code
1855 https://bugs.webkit.org/show_bug.cgi?id=131399
1857 Reviewed by Anders Carlsson.
1859 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
1860 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
1862 2014-04-08 Dan Bernstein <mitz@apple.com>
1864 Added bmalloc to the WebKit workspace.
1865 https://bugs.webkit.org/show_bug.cgi?id=131362
1867 Reviewed by Geoff Garen.
1869 * WebKit.xcworkspace/contents.xcworkspacedata:
1870 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1871 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1873 2014-04-08 Geoffrey Garen <ggaren@apple.com>
1875 Build bmalloc on iOS too
1876 https://bugs.webkit.org/show_bug.cgi?id=131381
1878 Reviewed by Andreas Kling.
1880 * Source/Makefile: Build it.
1882 2014-04-07 Geoffrey Garen <ggaren@apple.com>
1884 Build bmalloc on Mac
1885 https://bugs.webkit.org/show_bug.cgi?id=131333
1887 Reviewed by Mark Rowe.
1890 * WebKitBuild: Added.
1891 * WebKitBuild/Debug: Added.
1893 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
1895 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
1896 https://bugs.webkit.org/show_bug.cgi?id=131257
1898 Reviewed by Gyuyoung Kim.
1900 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
1902 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1904 [GTK] Stop trying to install WebKit1 documentation
1905 https://bugs.webkit.org/show_bug.cgi?id=131278
1907 Reviewed by Martin Robinson.
1909 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
1910 built anymore since r166584. This fixes `make install'.
1912 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
1914 Web Replay: capture and replay wheel events and scroll commands
1915 https://bugs.webkit.org/show_bug.cgi?id=129402
1917 Reviewed by Timothy Hatcher.
1919 * ManualTests/inspector/replay-wheel-events.html: Added.
1921 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1923 [GTK][CMake] Remove FindXt.cmake.
1924 https://bugs.webkit.org/show_bug.cgi?id=131227
1926 Reviewed by Anders Carlsson.
1928 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
1930 * Source/cmake/FindXt.cmake: Removed.
1931 * Source/cmake/OptionsGTK.cmake:
1933 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
1935 [EFL] Build error due to changed path of generated js files.
1936 https://bugs.webkit.org/show_bug.cgi?id=131215
1938 Reviewed by Gyuyoung Kim.
1940 r166648 fixed the generation of some .js files on GTK. Due to some
1941 changes in the paths it causes a build error on EFL.
1943 * Source/PlatformEfl.cmake:
1944 Replaced path for two derived source files.
1946 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1948 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
1949 https://bugs.webkit.org/show_bug.cgi?id=131095
1951 Reviewed by Martin Robinson.
1953 One needs to take into account OpenGL's include directory found via
1954 find_package() when looking for glx.h, since if the former is a
1955 non-standard location the latter will also be. If this is not it is
1956 possible that OpenGL is found but GLX support is not properly detected.
1958 * Source/cmake/OptionsGTK.cmake:
1960 2014-04-02 Martin Robinson <mrobinson@igalia.com>
1962 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
1963 https://bugs.webkit.org/show_bug.cgi?id=130343
1965 Reviewed by Gustavo Noronha Silva.
1967 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
1969 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
1971 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1973 [CMake] Drop port check from FindEGL.cmake.
1974 https://bugs.webkit.org/show_bug.cgi?id=131091
1976 Reviewed by Gyuyoung Kim.
1978 There is no reason to mark some variables as advanced only for the
1981 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
1982 as advanced regardless of the port.
1984 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1986 Fix the !ENABLE(BATTERY_STATUS) build
1987 https://bugs.webkit.org/show_bug.cgi?id=130183
1989 Reviewed by Anders Carlsson.
1991 * Source/cmake/OptionsEfl.cmake:
1993 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1995 [CMake][GTK] Do not expand variables twice in if() checks.
1996 https://bugs.webkit.org/show_bug.cgi?id=130964
1998 Reviewed by Martin Robinson.
2000 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
2001 to be checked by the if clause. This is not what we want, and
2002 configuration fails when, say, GLX support wasn't found as the if
2003 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
2005 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
2008 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2010 [GTK] Remove scripts code only applicable to autotools
2011 https://bugs.webkit.org/show_bug.cgi?id=130841
2013 Reviewed by Anders Carlsson.
2015 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
2017 2014-03-31 Martin Robinson <mrobinson@igalia.com>
2019 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
2020 https://bugs.webkit.org/show_bug.cgi?id=130936
2022 Reviewed by Carlos Garcia Campos.
2024 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
2026 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
2028 [GTK] Add support for GTK3 plugins
2029 https://bugs.webkit.org/show_bug.cgi?id=130599
2031 Reviewed by Martin Robinson.
2033 * Source/cmake/OptionsGTK.cmake:
2035 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2037 [EFL] Bump glib version from 2.36 to 2.38
2038 https://bugs.webkit.org/show_bug.cgi?id=130886
2040 Reviewed by Csaba Osztrogonác.
2042 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
2044 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
2046 [CSS Shapes] Remove shape-inside support
2047 https://bugs.webkit.org/show_bug.cgi?id=130698
2049 Reviewed by David Hyatt.
2051 * Source/cmake/WebKitFeatures.cmake:
2052 * Source/cmakeconfig.h.cmake:
2054 2014-03-25 Martin Robinson <mrobinson@igalia.com>
2056 [GTK] Remove the autotools build
2057 https://bugs.webkit.org/show_bug.cgi?id=130717
2059 Reviewed by Anders Carlsson.
2061 * .gitignore: Remove references to autotools files.
2062 * GNUmakefile.am: Removed.
2063 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
2064 * Source/autotools/CustomMacros.m4: Removed.
2065 * Source/autotools/FindDependencies.m4: Removed.
2066 * Source/autotools/PrintBuildConfiguration.m4: Removed.
2067 * Source/autotools/ReadCommandLineArguments.m4: Removed.
2068 * Source/autotools/SetupAutoconfHeader.m4: Removed.
2069 * Source/autotools/SetupAutomake.m4: Removed.
2070 * Source/autotools/SetupCompilerFlags.m4: Removed.
2071 * Source/autotools/SetupLibtool.m4: Removed.
2072 * Source/autotools/SetupWebKitFeatures.m4: Removed.
2073 * Source/autotools/Versions.m4: Removed.
2074 * Source/autotools/acinclude.m4: Removed.
2075 * Source/autotools/dolt.m4: Removed.
2076 * Source/autotools/gsettings.m4: Removed.
2077 * Source/cmake/OptionsGTK.cmake:
2078 * autogen.sh: Removed.
2079 * configure.ac: Removed.
2081 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
2083 [EFL] Add ARM64 build support
2084 https://bugs.webkit.org/show_bug.cgi?id=130506
2086 Rubber stamped by Gyuyoung Kim.
2088 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
2090 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2092 [EFL][WK2] Add NETWORK_PROCESS build option
2093 https://bugs.webkit.org/show_bug.cgi?id=130131
2095 Reviewed by Gyuyoung Kim.
2097 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
2100 * Source/cmake/OptionsEfl.cmake:
2102 2014-03-24 Brian Burg <bburg@apple.com>
2104 Web Replay: capture and replay keyboard events
2105 https://bugs.webkit.org/show_bug.cgi?id=130314
2107 Reviewed by Joseph Pecoraro.
2109 * ManualTests/inspector/replay-keyboard-events.html: Added.
2111 2014-03-24 Sangyong Park <sy302.park@gmail.com>
2113 [EFL] Inspector page is not loaded.
2114 https://bugs.webkit.org/show_bug.cgi?id=130661
2116 Reviewed by Gyuyoung Kim.
2118 Inspector page is not loaded, because some javascript files are not installed.
2119 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
2121 * Source/PlatformEfl.cmake:
2123 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
2125 [EFL][GTK] Get CMake to find Freetype2 properly
2126 https://bugs.webkit.org/show_bug.cgi?id=130150
2128 Reviewed by Martin Robinson.
2130 Newer versions of CMake are not able to find Freetype2 correctly.
2131 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
2132 freetype2 repo, because a completely different version number is found in freetype2.pc.
2134 * Source/cmake/FindFreetype2.cmake: Added.
2135 * Source/cmake/OptionsEfl.cmake:
2136 * Source/cmake/OptionsGTK.cmake:
2138 2014-03-20 Brian Burg <bburg@apple.com>
2140 Web Replay: capture and replay mouse events
2141 https://bugs.webkit.org/show_bug.cgi?id=129395
2143 Reviewed by Joseph Pecoraro.
2145 Create a manual test for capture/replay of mouse events.
2146 Copy over the crypto-md5.js library from SunSpider.
2148 * ManualTests/inspector/replay-mouse-events.html: Added.
2149 * ManualTests/inspector/resources/crypto-md5.js: Added.
2151 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
2153 [GTK][CMake] Add support for building with Clang
2154 https://bugs.webkit.org/show_bug.cgi?id=130260
2156 Reviewed by Martin Robinson.
2158 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
2159 to the list C compiler flags as constructed by CMake.
2160 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
2161 compiler option to suppress verbose warnings about arguments that went unused by the driver.
2162 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
2163 -fno-tree-dce should be used only for GCC.
2164 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
2165 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
2167 2014-03-20 Commit Queue <commit-queue@webkit.org>
2169 Unreviewed, rolling out r165962.
2170 https://bugs.webkit.org/show_bug.cgi?id=130512
2172 It broke the build (Requested by Ossy on #webkit).
2176 "[EFL][GTK] Get CMake to find Freetype2 properly"
2177 https://bugs.webkit.org/show_bug.cgi?id=130150
2178 http://trac.webkit.org/changeset/165962
2180 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
2182 [EFL][GTK] Get CMake to find Freetype2 properly
2183 https://bugs.webkit.org/show_bug.cgi?id=130150
2185 Reviewed by Csaba Osztrogonác.
2187 Newer versions of CMake are not able to find Freetype2 correctly.
2188 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
2189 freetype2 repo, because a completely different version number is found in freetype2.pc.
2191 * Source/cmake/FindFreetype2.cmake: Added.
2192 * Source/cmake/OptionsEfl.cmake:
2193 * Source/cmake/OptionsGTK.cmake:
2195 2014-03-17 Brendan Long <b.long@cablelabs.com>
2197 [GStreamer] human readable language code for tracks
2198 https://bugs.webkit.org/show_bug.cgi?id=124514
2200 Reviewed by Martin Robinson.
2202 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
2203 * Source/cmake/FindGStreamer.cmake: Same.
2204 * Source/cmake/OptionsEfl.cmake: Same.
2205 * Source/cmake/OptionsGTK.cmake: Same.
2207 2014-03-17 Martin Robinson <mrobinson@igalia.com>
2209 [GTK][CMake] Credential storage is not enabled
2210 https://bugs.webkit.org/show_bug.cgi?id=130149
2212 Reviewed by Philippe Normand.
2214 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
2215 and look libsecret when it's enabled.
2216 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
2218 2014-03-17 Martin Robinson <mrobinson@igalia.com>
2220 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
2221 https://bugs.webkit.org/show_bug.cgi?id=130155
2223 Reviewed by Philippe Normand.
2225 * Source/cmake/FindGTKUnixPrint.cmake: Added.
2226 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
2227 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
2229 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
2231 [EFL] Enable TOUCH_SLIDER macro.
2232 https://bugs.webkit.org/show_bug.cgi?id=130186
2234 Reviewed by Gyuyoung Kim.
2236 * Source/cmake/OptionsEfl.cmake:
2238 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
2240 [GTK][CMake] Build with -fno-rtti
2241 https://bugs.webkit.org/show_bug.cgi?id=130261
2243 Reviewed by Martin Robinson.
2245 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
2246 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
2247 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
2248 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
2249 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
2250 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
2251 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
2253 2014-03-16 Brendan Long <b.long@cablelabs.com>
2255 [GStreamer] CMake doesn't find the include path for gstreamer-base
2256 https://bugs.webkit.org/show_bug.cgi?id=130098
2258 Reviewed by Philippe Normand.
2260 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
2262 2014-03-14 Maciej Stachowiak <mjs@apple.com>
2264 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
2265 https://bugs.webkit.org/show_bug.cgi?id=130276
2266 <rdar://problem/16266927>
2268 Reviewed by Simon Fraser.
2270 * ManualTests/NPN_Invoke/Info.plist:
2271 * ManualTests/NPN_Invoke/main.c:
2272 * ManualTests/accessibility/resources/AppletTest.java:
2274 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
2276 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
2277 https://bugs.webkit.org/show_bug.cgi?id=130258
2279 Reviewed by Martin Robinson.
2281 GCC compilers 4.7 and later are supported, so there's no need for disabling
2282 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
2284 * Source/cmake/WebKitHelpers.cmake:
2286 2014-03-14 Landry Breuil <landry@openbsd.org>
2288 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
2289 https://bugs.webkit.org/show_bug.cgi?id=129966
2291 Reviewed by Andreas Kling.
2293 * Source/autotools/CheckSystemAndBasicDependencies.m4:
2294 * Source/autotools/SetupAutomake.m4:
2296 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
2298 [CMake] Failure to link with older installations of WebP
2299 https://bugs.webkit.org/show_bug.cgi?id=130195
2301 Reviewed by Gustavo Noronha Silva.
2303 Fix the issue by using a temporary variable as the output parameter
2304 to check_include_files(), setting WEBP_FOUND accordingly later.
2306 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
2307 variable in check_include_files(), as it will lead to misleading
2308 results (will always be FALSE). Use a temporary variable instead
2309 and explicitly set WEBP_FOUND to TRUE later if needed.
2311 2014-03-12 Martin Robinson <mrobinson@igalia.com>
2313 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
2314 https://bugs.webkit.org/show_bug.cgi?id=130170
2316 Reviewed by Daniel Bates.
2318 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
2319 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
2320 fake "TestRunner" generator.
2322 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
2324 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
2325 https://bugs.webkit.org/show_bug.cgi?id=130014
2327 Reviewed by Martin Robinson.
2329 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
2331 * Source/cmake/OptionsGTK.cmake:
2332 * Source/cmakeconfig.h.cmake:
2334 2014-03-12 Martin Robinson <mrobinson@igalia.com>
2336 [GTK][CMAKE] Too verbose build output
2337 https://bugs.webkit.org/show_bug.cgi?id=130076
2339 Reviewed by Carlos Garcia Campos.
2341 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
2342 works around an issue where cmake --build doesn't support ninja's pretty printing.
2344 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
2346 [GTK] Add support for Geoclue2
2347 https://bugs.webkit.org/show_bug.cgi?id=120185
2349 Reviewed by Carlos Garcia Campos.
2351 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
2353 Add support for Geoclue2 using autotools.
2355 * Source/autotools/FindDependencies.m4: Add support for handling
2356 both Geoclue 1.0 and 2.0.
2357 * Source/autotools/PrintBuildConfiguration.m4: Print the version
2358 of geoclue that is being used.
2359 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
2360 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
2361 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
2363 Add support for Geoclue2 using CMake.
2365 * Source/cmake/FindGeoClue2.cmake: Added.
2366 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
2367 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
2369 2014-03-10 Martin Robinson <mrobinson@igalia.com>
2371 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
2372 https://bugs.webkit.org/show_bug.cgi?id=130016
2374 Reviewed by Carlos Garcia Campos.
2376 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
2377 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
2378 HTML version will still run when building the distribution tarball.
2380 2014-03-10 Martin Robinson <mrobinson@igalia.com>
2382 [GTK] [CMake] Clean up library linking
2383 https://bugs.webkit.org/show_bug.cgi?id=129782
2385 Reviewed by Philippe Normand.
2387 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
2388 so that unused symbols are not dropped. This is useful when building up shared libraries
2389 from convenience libraries.
2391 2014-03-08 Landry Breuil <landry@openbsd.org>
2393 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
2394 https://bugs.webkit.org/show_bug.cgi?id=129973
2396 Reviewed by Martin Robinson.
2398 * Source/autotools/FindDependencies.m4:
2400 2014-03-06 Anders Carlsson <andersca@apple.com>
2402 Build WebKit2 before building WebKit
2403 https://bugs.webkit.org/show_bug.cgi?id=129831
2404 <rdar://problem/15920020>
2406 Reviewed by Dan Bernstein.
2409 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2410 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2412 2014-03-06 Commit Queue <commit-queue@webkit.org>
2414 Unreviewed, rolling out r165193.
2415 http://trac.webkit.org/changeset/165193
2416 https://bugs.webkit.org/show_bug.cgi?id=129823
2418 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
2419 env confuses libtool (Requested by zdobersek on #webkit).
2421 * Source/autotools/SetupCompilerFlags.m4:
2423 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
2425 [GTK][Autotools] Default to libc++ when compiling with Clang
2426 https://bugs.webkit.org/show_bug.cgi?id=129798
2428 Reviewed by Anders Carlsson.
2430 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
2431 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
2432 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
2434 2014-03-05 Martin Robinson <mrobinson@igalia.com>
2436 [CMake] Ninja generator builds fail with "Argument list too long"
2437 https://bugs.webkit.org/show_bug.cgi?id=129771
2439 Reviewed by Daniel Bates.
2441 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
2442 by forcing the use of response files.
2444 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
2446 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
2447 https://bugs.webkit.org/show_bug.cgi?id=108330
2449 Reviewed by Martin Robinson.
2451 In order to get non-shared debug builds, this patch applied T option for
2452 thin archives to the flags passed to ar when cmake based ports build on linux.
2453 In addition, applied u option which avoids adding a file twice.
2455 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
2456 * Source/cmake/OptionsEfl.cmake:
2457 Removed error messages for non-shared-core debug builds.
2458 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
2460 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
2462 [GTK] Build the Udis86 disassembler
2463 https://bugs.webkit.org/show_bug.cgi?id=129679
2465 Reviewed by Michael Saboff.
2467 * GNUmakefile.am: Add the Udis86_nosources variable.
2468 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
2470 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2472 [GTK] Simplify the GObject DOM bindings API break check into one step
2473 https://bugs.webkit.org/show_bug.cgi?id=129571
2475 Reviewed by Carlos Garcia Campos.
2477 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
2478 Add the check to 'make check.'
2480 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2482 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
2483 https://bugs.webkit.org/show_bug.cgi?id=129502
2485 Reviewed by Carlos Garcia Campos.
2487 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
2489 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
2491 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
2492 https://bugs.webkit.org/show_bug.cgi?id=129031
2494 Reviewed by Csaba Osztrogonác.
2496 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
2498 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
2500 [GTK] WebKit2WebExtension GIR can't be used in vala
2501 https://bugs.webkit.org/show_bug.cgi?id=127179
2503 Reviewed by Martin Robinson.
2505 Add a different pkg-config file for the web extensions API.
2507 * Source/cmake/OptionsGTK.cmake:
2510 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
2512 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
2513 https://bugs.webkit.org/show_bug.cgi?id=129575
2515 Reviewed by Philippe Normand.
2517 * Source/cmake/OptionsEfl.cmake:
2518 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2519 * Source/cmake/OptionsGTK.cmake:
2520 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2521 * Source/cmake/WebKitFeatures.cmake:
2522 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2523 * Source/cmakeconfig.h.cmake:
2524 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
2526 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
2528 Enable support of X-Content-Type-Options: nosniff header for EFL
2529 https://bugs.webkit.org/show_bug.cgi?id=128673
2531 Reviewed by Gyuyoung Kim.
2533 * Source/cmake/OptionsEfl.cmake:
2534 Enabled NOSNIFF feature flag for EFL.
2536 2014-02-27 Koop Mast <kwm@FreeBSD.org>
2538 Fallback on checking for libz manualy if zlib.pc isn't available.
2539 https://bugs.webkit.org/show_bug.cgi?id=127061
2541 Reviewed by Gustavo Noronha Silva.
2543 * Source/autotools/FindDependencies.m4:
2545 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
2547 [CSS Grid Layout] Add ENABLE flag
2548 https://bugs.webkit.org/show_bug.cgi?id=129153
2550 Reviewed by Simon Fraser.
2552 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
2553 autotools build systems. The feature is disabled by default for
2556 * Source/autotools/SetupWebKitFeatures.m4:
2557 * Source/cmake/OptionsEfl.cmake:
2558 * Source/cmake/OptionsGTK.cmake:
2559 * Source/cmake/WebKitFeatures.cmake:
2560 * Source/cmakeconfig.h.cmake:
2562 2014-02-24 Martin Robinson <mrobinson@igalia.com>
2564 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
2565 https://bugs.webkit.org/show_bug.cgi?id=128417
2567 Reviewed by Carlos Garcia Campos.
2569 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
2570 may one day be used in the webkitdom config file generation.
2572 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2574 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
2575 https://bugs.webkit.org/show_bug.cgi?id=128961
2577 Reviewed by Ryosuke Niwa.
2579 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
2580 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
2581 EFL port needs not to check "uninitialized" build warning as error in order to
2582 adjust the option to EFL port. This patch don't take it as error temporarily.
2584 * Source/cmake/OptionsEfl.cmake:
2585 * Source/cmake/WebKitHelpers.cmake:
2587 2014-02-16 Martin Robinson <mrobinson@igalia.com>
2589 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
2590 https://bugs.webkit.org/show_bug.cgi?id=128434
2592 Reviewed by Anders Carlsson.
2594 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
2595 port as well as -fno-tree-dce, like it is used in the autotools build.
2597 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
2599 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
2600 https://bugs.webkit.org/show_bug.cgi?id=128799
2602 Reviewed by Philippe Normand.
2604 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
2605 if building with autotools. cmake system has enabled it as default. So I propose
2606 enabling VIDEO_TRACK as well.
2608 * Source/autotools/SetupWebKitFeatures.m4:
2610 2014-02-14 Commit Queue <commit-queue@webkit.org>
2612 Unreviewed, rolling out r164090.
2613 http://trac.webkit.org/changeset/164090
2614 https://bugs.webkit.org/show_bug.cgi?id=128807
2616 It broke the EFL build (Requested by Ossy on #webkit).
2618 * Source/cmake/OptionsCommon.cmake:
2619 * Source/cmake/OptionsEfl.cmake:
2621 2014-02-09 Martin Robinson <mrobinson@igalia.com>
2623 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
2624 https://bugs.webkit.org/show_bug.cgi?id=128434
2626 Extend a fix for EFL to all ports that use GCC. Also include further fixes
2627 that were applied only to the autotools build.
2629 Reviewed by Gyuyoung Kim.
2631 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
2632 as -fno-tree-dce, which is necessary for GTK+.
2633 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
2635 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
2637 [GTK][CMake] Generate GObject DOM bindings .symbols files
2638 https://bugs.webkit.org/show_bug.cgi?id=126210
2640 Reviewed by Martin Robinson.
2642 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
2643 for documentation generation.
2645 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
2647 [GTK] MEDIA_CONTROLS_SCRIPT support
2648 https://bugs.webkit.org/show_bug.cgi?id=123097
2650 Reviewed by Jer Noble.
2652 Part of the Autotools and CMake structure to build the media
2655 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
2656 controls script by default.
2657 * Source/cmake/OptionsGTK.cmake: Activated the media controls
2659 * Source/cmake/WebKitFeatures.cmake: Created the option to
2660 activate the controls script.
2661 * Source/cmakeconfig.h.cmake: Created the define template the the
2662 media controls script.
2664 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
2666 [GDB] Add .gdbinit to the list of files ignored by Git
2667 https://bugs.webkit.org/show_bug.cgi?id=128455
2669 Reviewed by Anders Carlsson.
2671 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
2672 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
2673 that covers already removed entries.
2675 2014-02-11 Oliver Hunt <oliver@apple.com>
2677 Make it possible to implement JS builtins in JS
2678 https://bugs.webkit.org/show_bug.cgi?id=127887
2680 Reviewed by Michael Saboff.
2683 * Source/cmake/gtest/CMakeLists.txt:
2685 2014-02-12 Ryan Lortie <desrt@desrt.ca>
2687 'ar T' is not portable and breaks the build on FreeBSD
2688 https://bugs.webkit.org/show_bug.cgi?id=128596
2690 Reviewed by Gustavo Noronha Silva.
2692 Create thin archives only if we are using GNU ar.
2694 * Source/autotools/SetupLibtool.m4:
2696 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
2698 Add the CSS_SHAPE_INSIDE to CMake feature list
2699 https://bugs.webkit.org/show_bug.cgi?id=128530
2701 Reviewed by Gyuyoung Kim.
2703 CSS_SHAPE_INSIDE flag was added in r163333,
2704 this patch is adding this flag to CMake feature list.
2706 * Source/cmake/WebKitFeatures.cmake:
2707 * Source/cmakeconfig.h.cmake:
2709 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
2711 [GTK] Enable touch features
2712 https://bugs.webkit.org/show_bug.cgi?id=98931
2714 Reviewed by Carlos Garcia Campos.
2716 * Source/autotools/SetupWebKitFeatures.m4:
2717 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
2719 2014-02-06 Andreas Kling <akling@apple.com>
2721 Remove unused ENABLE(REPAINT_THROTTLING) flag.
2722 <https://webkit.org/b/128329>
2724 Reviewed by Antti Koivisto.
2726 * Source/cmake/WebKitFeatures.cmake:
2727 * Source/cmakeconfig.h.cmake:
2729 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
2731 [iOS] make should build WebKit2
2732 https://bugs.webkit.org/show_bug.cgi?id=128351
2734 Reviewed by Daniel Bates.
2738 2014-02-05 Andreas Kling <akling@apple.com>
2740 Remove ENABLE(DIRECTORY_UPLOAD).
2741 <https://webkit.org/b/128275>
2743 Rubber-stamped by Ryosuke Niwa.
2745 * Source/autotools/SetupWebKitFeatures.m4:
2746 * Source/cmake/WebKitFeatures.cmake:
2748 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
2750 Remove ENABLE(SVG) guards
2751 https://bugs.webkit.org/show_bug.cgi?id=127991
2753 Reviewed by Sam Weinig.
2755 * Source/autotools/FindDependencies.m4:
2756 * Source/autotools/PrintBuildConfiguration.m4:
2757 * Source/autotools/ReadCommandLineArguments.m4:
2758 * Source/autotools/SetupAutomake.m4:
2759 * Source/autotools/SetupWebKitFeatures.m4:
2760 * Source/cmake/OptionsEfl.cmake:
2761 * Source/cmake/OptionsGTK.cmake:
2762 * Source/cmake/WebKitFeatures.cmake:
2763 * Source/cmakeconfig.h.cmake:
2765 2014-02-04 Andreas Kling <akling@apple.com>
2767 Remove <iframe seamless> support.
2768 <https://webkit.org/b/128213>
2770 Rubber-stamped by Antti Koivisto.
2772 * Source/autotools/SetupWebKitFeatures.m4:
2773 * Source/cmake/WebKitFeatures.cmake:
2774 * Source/cmakeconfig.h.cmake:
2776 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
2778 Remove LEGACY_VIEWPORT_ADAPTION
2779 https://bugs.webkit.org/show_bug.cgi?id=128028
2781 Reviewed by Anders Carlsson.
2783 * Source/cmake/WebKitFeatures.cmake:
2784 * Source/cmakeconfig.h.cmake:
2786 2014-01-31 Oliver Hunt <oliver@apple.com>
2788 Rollout r163195 and related patches
2791 * Source/cmake/gtest/CMakeLists.txt:
2793 2014-01-29 Oliver Hunt <oliver@apple.com>
2795 Make it possible to implement JS builtins in JS
2796 https://bugs.webkit.org/show_bug.cgi?id=127887
2798 Reviewed by Michael Saboff.
2802 * Source/cmake/gtest/CMakeLists.txt:
2804 2014-01-30 Martin Robinson <mrobinson@igalia.com>
2806 [GTK] [CMake] Add support for building against GTK+ 2
2807 https://bugs.webkit.org/show_bug.cgi?id=127959
2809 Reviewed by Anders Carlsson.
2811 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
2812 library API version. When using GTK 2 do not build WebKit 2.
2814 2014-01-30 Martin Robinson <mrobinson@igalia.com>
2816 [GTK] [CMake] Add a "make dist" target
2817 https://bugs.webkit.org/show_bug.cgi?id=116378
2819 Reviewed by Gustavo Noronha Silva.
2821 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
2822 script and then turning the tarfile into a LZMA compressed file.
2824 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
2826 [GTK] Only disable -ftree-dce optimization when compiling with GCC
2827 https://bugs.webkit.org/show_bug.cgi?id=127911
2829 Reviewed by Carlos Garcia Campos.
2831 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
2832 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
2833 at the moment, but is added for the sake of completeness.
2835 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
2837 [EFL] Fix the regression caused by the jsCStack branch merge
2838 https://bugs.webkit.org/show_bug.cgi?id=127898
2840 Reviewed by Zoltan Herczeg.
2842 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
2844 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
2846 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
2847 https://bugs.webkit.org/show_bug.cgi?id=127845
2849 Reviewed by Joseph Pecoraro.
2851 * Source/autotools/SetupWebKitFeatures.m4:
2853 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
2855 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
2856 https://bugs.webkit.org/show_bug.cgi?id=127840
2858 Reviewed by Mark Lam.
2860 * Source/cmake/WebKitFeatures.cmake:
2861 * Source/cmakeconfig.h.cmake:
2863 2014-01-25 Darin Adler <darin@apple.com>
2865 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
2866 https://bugs.webkit.org/show_bug.cgi?id=127623
2868 Reviewed by Anders Carlsson.
2870 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
2871 * Source/cmake/OptionsGTK.cmake: Ditto.
2872 * Source/cmake/OptionsWinCE.cmake: Ditto.
2874 2014-01-23 Max Vujovic <mvujovic@adobe.com>
2876 Remove CSS Custom Filters code and tests
2877 https://bugs.webkit.org/show_bug.cgi?id=127382
2879 Reviewed by Simon Fraser.
2881 * Source/autotools/FindDependencies.m4:
2882 * Source/autotools/SetupWebKitFeatures.m4:
2883 * Source/cmake/WebKitFeatures.cmake:
2884 * Source/cmakeconfig.h.cmake:
2886 2014-01-22 Martin Robinson <mrobinson@igalia.com>
2888 [GTK][CMake] Add support for building the NetworkProcess
2889 https://bugs.webkit.org/show_bug.cgi?id=127195
2891 Reviewed by Daniel Bates.
2893 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
2894 a name like the WebProcess.
2896 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
2898 [CMAKE] Remove Nix from CMake scripts
2899 https://bugs.webkit.org/show_bug.cgi?id=127264
2901 Reviewed by Anders Carlsson.
2904 * Source/CMakeLists.txt:
2905 * Source/cmake/FindEGL.cmake:
2906 * Source/cmake/OptionsCommon.cmake:
2908 2014-01-18 Anders Carlsson <andersca@apple.com>
2910 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
2911 https://bugs.webkit.org/show_bug.cgi?id=127225
2913 Reviewed by Andreas Kling.
2915 This concludes the removal of over 8.8 million lines of threaded parser code.
2917 * Source/autotools/SetupWebKitFeatures.m4:
2918 * Source/cmake/WebKitFeatures.cmake:
2919 * Source/cmakeconfig.h.cmake:
2921 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
2923 Remove Nix files from WebCore
2924 https://bugs.webkit.org/show_bug.cgi?id=127176
2926 Reviewed by Anders Carlsson.
2928 * Source/cmake/OptionsNix.cmake: Removed.
2930 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
2932 [GTK] Bump the minimum required Clang version to 3.3
2933 https://bugs.webkit.org/show_bug.cgi?id=127178
2935 Reviewed by Martin Robinson.
2937 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
2938 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
2939 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
2941 2014-01-14 Dan Bernstein <mitz@apple.com>
2943 Only use color in make output when it’s going to a terminal.
2945 Reviewed by Mark Rowe.
2949 2014-01-13 Martin Robinson <mrobinson@igalia.com>
2951 [CMake] Mark all dependency include paths and libraries as advanced variables
2952 https://bugs.webkit.org/show_bug.cgi?id=126504
2954 Reviewed by Daniel Bates.
2956 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
2957 * Source/cmake/FindCairo.cmake: Ditto.
2958 * Source/cmake/FindEGL.cmake: Ditto.
2959 * Source/cmake/FindEnchant.cmake: Ditto.
2960 * Source/cmake/FindGLIB.cmake: Ditto.
2961 * Source/cmake/FindGStreamer.cmake: Ditto.
2962 * Source/cmake/FindHarfBuzz.cmake: Ditto.
2963 * Source/cmake/FindLibSoup.cmake: Ditto.
2965 2014-01-13 Martin Robinson <mrobinson@igalia.com>
2967 [GTK][CMake] Add a 'check' target
2968 https://bugs.webkit.org/show_bug.cgi?id=126770
2970 Reviewed by Daniel Bates.
2972 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
2974 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
2976 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
2978 * Source/autotools/Versions.m4: Bump version numbers.
2980 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
2982 [EFL][WK2] Make API tests work again
2983 https://bugs.webkit.org/show_bug.cgi?id=126769
2985 Reviewed by Gyuyoung Kim.
2987 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
2988 [E]WebKit2, respectively, and this causes problems because the logic to find
2989 where WebProcess is to look in the same directory of the running process and
2990 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
2992 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
2993 Gtk port, which allows us to look for WebProcess initially in this directory,
2996 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
2999 2014-01-11 Dan Bernstein <mitz@apple.com>
3001 [Mac] xcodebuild color output is suppressed when using make
3002 https://bugs.webkit.org/show_bug.cgi?id=126815
3004 Reviewed by Anders Carlsson.
3006 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
3007 format its output with color and emphasis.
3009 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
3010 xcodebuild limitations, this restores some of the formatting, but not all of it.
3012 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
3014 Remove the BlackBerry port from trunk
3015 https://bugs.webkit.org/show_bug.cgi?id=126715
3017 Reviewed by Anders Carlsson.
3020 * Source/cmake/OptionsCommon.cmake:
3022 2014-01-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3024 [EFL][JSC] Enable udis86 disassembler on efl.
3025 https://bugs.webkit.org/show_bug.cgi?id=125502
3027 Reviewed by Michael Saboff.
3029 Enable udis86 disassembler on efl and fix build warnings.
3031 * Source/cmake/OptionsEfl.cmake:
3032 Enable udis86 disassembler.
3034 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
3036 Remove the BlackBerry port from trunk
3037 https://bugs.webkit.org/show_bug.cgi?id=126715
3039 Reviewed by Anders Carlsson.
3043 2014-01-09 Benjamin Poulain <bpoulain@apple.com>
3045 Remove the BlackBerry files outside WebCore
3046 https://bugs.webkit.org/show_bug.cgi?id=126715
3048 Reviewed by Anders Carlsson.
3050 * ManualTests/blackberry: Removed.
3051 * Source/cmake/OptionsBlackBerry.cmake: Removed.
3053 2014-01-08 Martin Robinson <mrobinson@igalia.com>
3055 [GTK] [CMake] Specify the executable and library output locations in the build
3056 https://bugs.webkit.org/show_bug.cgi?id=126671
3058 Reviewed by Gustavo Noronha Silva.
3060 * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
3062 2014-01-08 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3064 [EFL] Make FTL buildable
3065 https://bugs.webkit.org/show_bug.cgi?id=125777
3067 Reviewed by Csaba Osztrogonác.
3069 * Source/cmake/OptionsEfl.cmake:
3070 * Source/cmakeconfig.h.cmake:
3072 2014-01-08 Alberto Garcia <berto@igalia.com>
3074 REGRESSION(r160304): [GTK] Disable libtool fast install
3075 https://bugs.webkit.org/show_bug.cgi?id=126381
3077 Reviewed by Gustavo Noronha Silva.
3079 Don't disable the libtool fast-install mode unconditionally by
3082 If the fast-install mode is disabled, binaries are generated ready
3083 to use the libraries directly from the build tree. If we use the
3084 GNU linker, those binaries are then relinked when they are
3087 However, libtool fails to do it properly when an installation
3088 prefix is set with DESTDIR, and ends up installing the libtool
3089 wrappers instead of the actual binaries.
3091 * Source/autotools/SetupLibtool.m4:
3093 2014-01-07 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3095 Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
3096 in output and dependencies declarations, so docs are not built needlessly
3099 * Source/PlatformGTK.cmake:
3101 2014-01-04 Carlos Garcia Campos <cgarcia@igalia.com>
3103 [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI
3104 https://bugs.webkit.org/show_bug.cgi?id=126342
3106 Reviewed by Gustavo Noronha Silva.
3108 * GNUmakefile.am: Remove unused variable.
3109 * Source/PlatformGTK.cmake: No longer include the old unit tests directories.
3111 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
3113 [GTK] configure errors out when building with libc++
3114 https://bugs.webkit.org/show_bug.cgi?id=126431
3116 Reviewed by Martin Robinson.
3118 Ease up the Clang and libstdc++ combination test to only fail if libstdc++ < 4.8.1 is actually used.
3119 This allows for libc++ to be used as well. The test is moved into SetupCompilerFlags.m4 and is done
3120 after the CXXFLAGS variable is properly set up, that is when all the C++ compiler options are determined.
3122 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3123 * Source/autotools/SetupCompilerFlags.m4:
3125 2014-01-06 Martin Robinson <mrobinson@igalia.com>
3127 [CMake] [GTK] Fix the build for the WebKitGTK+ developer configuration
3128 https://bugs.webkit.org/show_bug.cgi?id=126505
3130 Reviewed by Gustavo Noronha Silva.
3132 * Source/cmake/FindGLIB.cmake: Add support for finding the gio-unix include directory location.
3133 * Source/cmake/FindGUdev.cmake: Added.
3134 * Source/cmake/FindGeoClue.cmake: Added.
3135 * Source/cmake/OptionsGTK.cmake: When gamepad is enabled look for gio-unix and GUdev. When
3136 geolocation is enabled look for GeoClue.
3138 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
3140 [GTK] Use libc++ for C++11 on darwin
3141 https://bugs.webkit.org/show_bug.cgi?id=126325
3143 Reviewed by Martin Robinson.
3145 * Source/autotools/SetupCompilerFlags.m4: Don't default to libstdc++ when compiling with Clang.
3146 Instead, the compiler should determine itself what standard library to use, except on Darwin,
3147 where libc++ should be enforced. The standard library of user's choosing can still be enforced
3148 through the CXXFLAGS environment variable.
3150 2014-01-05 Martin Robinson <mrobinson@igalia.com>
3152 [GTK] [CMake] Ensure that the autotools build and the CMake install the same files
3153 https://bugs.webkit.org/show_bug.cgi?id=116379
3155 Reviewed by Gustavo Noronha Silva.
3157 * Source/PlatformGTK.cmake: Install the documentation.
3158 * Source/cmake/OptionsCommon.cmake: Add a LIBEXEC variable for WebKit2 executables, and
3159 don't use the default locations on GTK+. We will get them from the CMake-provided GNU installation
3161 * Source/cmake/OptionsGTK.cmake: Setup the installation variables using the ones provided
3162 by CMake's GNU installation directory support. Fix the definition of DATADIR. Always install
3165 2014-01-05 Carlos Garcia Campos <cgarcia@igalia.com>
3167 [GTK] Stop installing WebKit2 C API headers
3168 https://bugs.webkit.org/show_bug.cgi?id=126489
3170 Reviewed by Martin Robinson.
3174 2014-01-04 Martin Robinson <mrobinson@igalia.com>
3176 [GTK] [CMake] Improve the way we locate gobject-introspection
3177 https://bugs.webkit.org/show_bug.cgi?id=126452
3179 Reviewed by Philippe Normand.
3181 * Source/cmake/FindGObjectIntrospection.cmake: Added.
3182 * Source/cmake/OptionsGTK.cmake: Load the new FindGObjectIntrospection file.
3184 2014-01-04 Martin Robinson <mrobinson@igalia.com>
3186 [GTK] [CMake] Fix the video and audio build
3187 https://bugs.webkit.org/show_bug.cgi?id=126464
3189 Reviewed by Philippe Normand.
3191 * Source/cmake/OptionsGTK.cmake: GStreamer files look for USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER),
3192 so define those when appropriate. Web audio is one by default in autotools, so turn it on for cmake
3195 2014-01-03 Martin Robinson <mrobinson@igalia.com>
3197 [CMake] The forwarding headers generated by WebKitMacros.m4 are incompatible with the headers generated by generate-forwarding-headers.pl
3198 https://bugs.webkit.org/show_bug.cgi?id=126361
3200 Reviewed by Philippe Normand.
3202 Make the forwarding headers generated by WebKitMacros.m4 compatible with the headers
3203 generated by the WebKit2 forwarding headers generation script.
3205 * Source/cmake/WebKitMacros.cmake: Try to convert absolute paths in the forwarding headers
3206 to ones that are relative to the Source directory.
3208 2014-01-02 Carlos Garcia Campos <cgarcia@igalia.com>
3210 REGRESSION(r160304): [GTK] Disable libtool fast install
3211 https://bugs.webkit.org/show_bug.cgi?id=126381
3213 Reviewed by Martin Robinson.
3215 After r160304 we are building some of our binaries that are
3216 installed with the -no-fast-install ld flag. This makes that the
3217 binaries are installed with the source code path hardcoded in
3218 binary RPATH. Disabling fast install globally, the libtool script
3219 always relinks the binaries right before being installed.
3221 * Source/autotools/SetupLibtool.m4: Add AC_DISABLE_FAST_INSTALL.
3223 2014-01-02 Jaehun Lim <ljaehun.lim@samsung.com>
3225 [CMake][EFL] Fix some typos in OptionsEfl.cmake
3226 https://bugs.webkit.org/show_bug.cgi?id=126376
3228 Reviewed by Gyuyoung Kim.
3230 * Source/cmake/WebKitFeatures.cmake: Correct a wrong word and remove comma(,).
3232 2013-12-30 Martin Robinson <mrobinson@igalia.com>
3234 [CMake] [GTK] Add support for GObject introspection
3235 https://bugs.webkit.org/show_bug.cgi?id=126162
3237 Reviewed by Daniel Bates.
3239 * Source/PlatformGTK.cmake: Add a 'gir' target that builds all GIR files.
3240 * Source/cmake/OptionsGTK.cmake: Add a macro for propagating typelib
3241 targets to the Source level of the build.
3243 2013-12-29 Martin Robinson <mrobinson@igalia.com>
3245 [GTK][CMake] Translations must be built
3246 https://bugs.webkit.org/show_bug.cgi?id=125513
3248 Reviewed by Gustavo Noronha Silva.
3250 * Source/PlatformGTK.cmake: Add the po subdirectory.
3252 2013-12-28 Giovanni Campagna <gcampagna@src.gnome.org>
3254 [GTK] Fix release builds with NetworkProcess enabled
3255 https://bugs.webkit.org/show_bug.cgi?id=126247
3257 Reviewed by Carlos Garcia Campos.
3259 * Source/autotools/symbols.filter:
3261 2013-12-26 Martin Robinson <mrobinson@igalia.com>
3263 [GTK] [CMake] Add a production build type
3264 https://bugs.webkit.org/show_bug.cgi?id=126179
3266 Reviewed by Daniel Bates.
3268 * Source/PlatformGTK.cmake: When the API tests are enabled compile the WebKit GObject
3269 API unit tests. The inclusion of these build files was inadvertently removed in an earlier
3271 * Source/cmake/OptionsGTK.cmake: When in production mode turn off all tools and tests and
3272 use the autotools linker script.
3274 2013-12-25 Martin Robinson <mrobinson@igalia.com>
3276 [GTK] [CMake] Properly name the JavaScriptCore library
3277 https://bugs.webkit.org/show_bug.cgi?id=126220
3279 Reviewed by Gustavo Noronha Silva.
3281 * Source/cmake/OptionsGTK.cmake: Set the JSC library name properly.
3283 2013-12-25 Martin Robinson <mrobinson@igalia.com>
3285 [GTK] [CMake] Clean up generated sources directories
3286 https://bugs.webkit.org/show_bug.cgi?id=126216
3288 Reviewed by Gustavo Noronha Silva.
3290 * Source/cmake/OptionsGTK.cmake: Pre-define the main derived sources directories
3291 so that they definitions can be shared easily throughout the build system.
3293 2013-12-23 Jinwoo Song <jinwoo7.song@samsung.com>
3295 [EFL][CMAKE] Case insensitive string comparison of build type
3296 https://bugs.webkit.org/show_bug.cgi?id=126153
3298 Reviewed by Daniel Bates.
3300 Compare CMAKE_BUILD_TYPE with "debug" ignoring case.
3302 * Source/cmake/OptionsEfl.cmake:
3304 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
3306 [GTK] [CMake] Add support for generating gtkdoc
3307 https://bugs.webkit.org/show_bug.cgi?id=116376
3309 Reviewed by Martin Robinson.
3311 * Source/PlatformGTK.cmake: Added. New custom target that depends on a custom command
3312 which calls our generate-gtkdoc script. It uses a docs-build.stamp for simplicity,
3313 like the autotools build.
3315 2013-12-23 Martin Robinson <mrobinson@igalia.com>
3317 [GTK] [CMake] Build the WebKit2 GObject API tests
3318 https://bugs.webkit.org/show_bug.cgi?id=125683
3320 Reviewed by Daniel Bates.
3322 * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
3323 * Source/cmake/FindATSPI.cmake: Added.
3324 * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
3326 2013-12-23 Martin Robinson <mrobinson@igalia.com>
3328 [GTK] [CMake] Build the WebKit1 GObject API tests
3329 https://bugs.webkit.org/show_bug.cgi?id=125684
3331 Reviewed by Daniel Bates.
3333 * Source/PlatformGTK.cmake: Added.
3335 2013-12-22 Martin Robinson <mrobinson@igalia.com>
3337 https://bugs.webkit.org/show_bug.cgi?id=125511
3339 [GTK][CMake] libtool-compatible soversion calculation
3340 Reviewed by Gustavo Noronha Silva.
3342 * Source/cmake/OptionsGTK.cmake: Specify the appropriate libtool triples and use
3343 the CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE macro to specify the library-specific
3344 version information.
3345 * Source/cmake/WebKitHelpers.cmake: Add some helpful macros.
3347 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
3349 [GTK] [CMake] Generate pkg-config files
3350 https://bugs.webkit.org/show_bug.cgi?id=125685
3352 Reviewed by Martin Robinson.
3354 * Source/cmake/OptionsGTK.cmake: set variables used for filling in the values in the
3357 2013-12-23 Carlos Garcia Campos <cgarcia@igalia.com>
3359 [GTK] Build with network process unconditionally
3360 https://bugs.webkit.org/show_bug.cgi?id=126128
3362 Reviewed by Martin Robinson.
3364 * Source/autotools/SetupAutomake.m4: Remove network process
3365 conditional for Makefiles.
3366 * Source/autotools/SetupWebKitFeatures.m4: Remove network process
3369 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3371 [GTK][CMake] make libjavascriptcoregtk a public shared library again
3372 https://bugs.webkit.org/show_bug.cgi?id=125512
3374 Reviewed by Martin Robinson.
3376 * CMakeLists.txt: make JavaScriptCore always be a shared library for the GTK+ port.
3377 * Source/cmake/WebKitHelpers.cmake: make -fvisibility=hidden not be applied for GTK+,
3378 visibility of some symbols is required for threading to be initialized properly by
3379 WebKit2 processes, and we will rely on a linker script that will be added later on,
3380 for production builds.
3382 2013-12-16 Martin Robinson <mrobinson@igalia.com>
3384 [GTK] [CMake] Add support for building WebKit1
3385 https://bugs.webkit.org/show_bug.cgi?id=116377
3387 Reviewed by Gustavo Noronha Silva.
3389 * Source/cmake/OptionsGTK.cmake: Turn off some features that do not build properly
3390 for WebKit1 and stop using the version script which we haven't implemented yet. Turn
3393 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3395 [GTK][CMake] Use thin archives if building on Linux, only way to get non-shared-core debug builds
3396 https://bugs.webkit.org/show_bug.cgi?id=125951
3398 Reviewed by Martin Robinson.
3400 * Source/cmake/OptionsGTK.cmake: append T for thin archives to the flags passed to ar,
3401 also use u, which is used in the autotools build (it avoids adding a file twice).
3403 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
3405 [GTK][CMake] Remove binary size optimizations we do not use in the autotools build
3406 https://bugs.webkit.org/show_bug.cgi?id=125947
3408 Reviewed by Martin Robinson.
3410 * Source/cmake/OptionsGTK.cmake: remove the relevant flags.
3412 2013-12-18 Carlos Garcia Campos <cgarcia@igalia.com>
3414 Unreviewed. Update NEWS and Versions.m4 for 2.3.3 release.
3416 * Source/autotools/Versions.m4: Bump version numbers.
3418 2013-12-12 Martin Robinson <mrobinson@igalia.com>
3420 [GTK] [CMake] Build the plugin process against GTK+ 2
3421 https://bugs.webkit.org/show_bug.cgi?id=116374
3423 Reviewed by Gustavo Noronha Silva.
3425 * Source/cmake/FindGDK2.cmake: Added.
3426 * Source/cmake/FindGTK2.cmake: Added.
3427 * Source/cmake/OptionsGTK.cmake: Look for GTK2 and GDK2.
3428 * Source/cmake/WebKitMacros.cmake: Abstract WebKit2 IPC generation here so it
3429 can be shared between the WebKit2 library and the plugin process.
3431 2013-12-17 Simon Pena <simon.pena@samsung.com>
3433 [NIX] Enable full debug builds by having ar creating thin archives
3434 https://bugs.webkit.org/show_bug.cgi?id=125850
3436 Reviewed by Csaba Osztrogonác.
3438 By default, CMake uses ar to generate libWebCore.a with cr parameters
3439 (do not warn if the library has to be created, and replace existing
3440 files in the archive). That results in a very large file, and ar fails
3441 with sizes over 4GB.
3443 Previously, debug builds on NIX were overriding CFLAGS in order to reduce
3444 the size of the WebCore library. Once that ar creates thin archives, overriding
3445 CFLAGS is no longer needed.
3447 * Source/cmake/OptionsNix.cmake: Remove CFLAGS override for debug builds.
3449 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3451 [GTK] Remove Warnings in building about duplicate INSPECTOR variables
3452 https://bugs.webkit.org/show_bug.cgi?id=125710
3454 Reviewed by Tim Horton.
3458 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3460 Web Inspector: Add Inspector Code Generation to JavaScriptCore for Runtime Domain
3461 https://bugs.webkit.org/show_bug.cgi?id=125595
3463 Reviewed by Timothy Hatcher.
3467 2013-12-13 Zan Dobersek <zdobersek@igalia.com>
3469 [GTK] Remove the -Wno-c++11-extensions compiler option for Clang builds
3470 https://bugs.webkit.org/show_bug.cgi?id=125639
3472 Reviewed by Anders Carlsson.
3474 * Source/autotools/SetupCompilerFlags.m4: The -Wno-c++11-extensions compiler option was in use
3475 when building with Clang. It is now removed as the C++11 standard is enabled throughout the project.
3477 2013-12-11 Martin Robinson <mrobinson@igalia.com> and Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
3479 Adding a .ycm_extra_conf file for webkitGtk
3480 https://bugs.webkit.org/show_bug.cgi?id=119618
3482 Reviewed by Gustavo Noronha Silva.
3484 Added a YouCompleteMe flag discovery script for Vim and the GTK+ port. The script
3485 read the GTK+ build files to determine dynamically what flags to compile a source
3486 file with. This allows Vim to provide auto-complete for C++/C language. See
3487 https://github.com/Valloric/YouCompleteMe for how to use this file.
3489 * .gitignore: Ignore the YCM symlinks in the tree.
3491 2013-12-12 Zan Dobersek <zdobersek@igalia.com>
3493 Use of ar T option not supported by older binutils
3494 https://bugs.webkit.org/show_bug.cgi?id=118732
3496 Reviewed by Gustavo Noronha Silva.
3498 * Source/autotools/SetupLibtool.m4: Make the AR_FLAGS value usable inside makefiles as an Automake variable.
3500 2013-12-11 Javier Fernandez <jfernandez@igalia.com>
3502 Arithmetic overflow when computing max-height CSS property with subpixel layout
3503 https://bugs.webkit.org/show_bug.cgi?id=119273
3505 Reviewed by Martin Robinson.
3507 Enabled SATURATED_LAYOUT_ARITHMETIC for the gtk+ port.
3509 * Source/autotools/SetupWebKitFeatures.m4:
3511 2013-12-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3513 [CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
3514 https://bugs.webkit.org/show_bug.cgi?id=125492
3516 Reviewed by Zoltan Herczeg.
3518 Remove the code that disables these warnings for GCC >= 4.6.0
3520 * Source/cmake/WebKitHelpers.cmake:
3522 2013-12-10 Martin Robinson <mrobinson@igalia.com>
3524 Various fixes for the CMake GTK+ build
3526 Reviewed by Gustavo Noronha.
3528 * Source/cmake/OptionsGTK.cmake: Disable Quota support to maintain consistency with
3531 2013-12-09 Brian Holt <brian.holt@samsung.com>
3533 [WK2][Gtk] Add support for ENABLE_NETWORK_PROCESS to the build system
3534 https://bugs.webkit.org/show_bug.cgi?id=118231
3536 Reviewed by Martin Robinson.
3538 Original patch by Kwang Yul Seo <skyul@company100.net>.
3540 Disabled ENABLE_NETWORK_PROCESS by default.
3542 * Source/autotools/SetupAutomake.m4:
3543 * Source/autotools/SetupWebKitFeatures.m4:
3545 2013-12-06 Alberto Garcia <berto@igalia.com>
3547 [GTK] Enable web audio by default
3548 https://bugs.webkit.org/show_bug.cgi?id=124888
3550 Reviewed by Martin Robinson.
3552 When building with ./configure, enable_web_audio defaults to
3553 "no". However the basic functionality has been working for months
3554 so it's safe to enable it now.
3556 * Source/autotools/ReadCommandLineArguments.m4:
3558 2013-12-04 Ryosuke Niwa <rniwa@webkit.org>
3560 Enable HTMLTemplateElement by default
3561 https://bugs.webkit.org/show_bug.cgi?id=123851
3563 Reviewed by Antti Koivisto.
3565 * Source/autotools/SetupWebKitFeatures.m4:
3566 * Source/cmake/WebKitFeatures.cmake:
3568 2013-12-04 László Langó <lango@inf.u-szeged.hu>
3570 Allow --cloop option to work correctly in case of EFL.
3571 https://bugs.webkit.org/show_bug.cgi?id=125217
3573 Reviewed by Zoltan Herczeg.
3575 * Source/cmake/OptionsEfl.cmake:
3576 * Source/cmake/WebKitFeatures.cmake:
3577 * Source/cmakeconfig.h.cmake:
3579 2013-12-03 Ryuan Choi <ryuan.choi@samsung.com>
3581 [EFL] Disable RTTI for release build
3582 https://bugs.webkit.org/show_bug.cgi?id=125138
3584 Reviewed by Gyuyoung Kim.
3586 Binary size will be reduced about 1M bytes without RTTI.
3587 ewebkit.so : 43,449,275 -> 42,510,224
3588 ewebkit2.so: 46,715,870 -> 45,653,989
3590 * Source/cmake/OptionsEfl.cmake: Added -fno-rtti option to CMAKE_CXX_FLAGS_RELEASE.
3592 2013-12-02 Adrian Bunk <bunk@stusta.de>
3594 [GTK] Remove unneeded autoconf macros
3595 https://bugs.webkit.org/show_bug.cgi?id=125044
3597 Compilers that do not support const/inline/volatile and
3598 systems with pre-C89-headers are anyway not supported.
3600 Reviewed by Gustavo Noronha Silva.
3602 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3604 2013-11-29 Laszlo Vidacs <lac@inf.u-szeged.hu>
3606 [cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
3607 https://bugs.webkit.org/show_bug.cgi?id=124899
3609 Reviewed by Gyuyoung Kim.
3611 * Source/cmake/FindCairo.cmake:
3612 * Source/cmake/FindGStreamer.cmake:
3614 2013-11-28 Antti Koivisto <antti@apple.com>
3616 Remove feature: CSS variables
3617 https://bugs.webkit.org/show_bug.cgi?id=114119
3619 Reviewed by Andreas Kling.
3621 * Source/cmakeconfig.h.cmake:
3623 2013-11-27 László Langó <lango@inf.u-szeged.hu>
3625 [EFL] The remote inspector does not show the base page.
3626 https://bugs.webkit.org/show_bug.cgi?id=124942
3628 Reviewed by Gyuyoung Kim.
3630 On EFL the remote inspector does not show the base page about
3631 which pages are available for debug. This should be fixed for
3632 further inspector development.
3634 * Source/PlatformEfl.cmake:
3636 2013-11-26 Marcelo Lira <marcelo.lira@openbossa.org>
3638 Nix upstreaming - Adding build files and supporting scripts
3639 https://bugs.webkit.org/show_bug.cgi?id=118367
3641 Reviewed by Ryosuke Niwa.
3644 * Source/CMakeLists.txt:
3645 * Source/cmake/FindEGL.cmake:
3646 * Source/cmake/FindOpenGLES2.cmake: Added.
3647 * Source/cmake/OptionsCommon.cmake:
3648 * Source/cmake/OptionsNix.cmake: Added.
3650 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
3652 [EFL] E_DBus should be an optional
3653 https://bugs.webkit.org/show_bug.cgi?id=124881
3655 Reviewed by Gyuyoung Kim.
3657 * Source/cmake/OptionsEfl.cmake:
3658 Checked E_DBus when only ENABLE_BATTERY_STATUS is on.
3660 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
3662 [EFL] Use Config mode of find_package for EFL 1.8
3663 https://bugs.webkit.org/show_bug.cgi?id=124555
3665 Reviewed by Gyuyoung Kim.
3667 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
3668 which parses header files to know the version. Instead, EFL 1.8 supports
3669 FooConfig.cmake such as EinaConfig.cmake.
3671 This patch tries to use a config mode if it is available.
3672 If config mode is not available with Eo, FindFoo.cmake will be used without
3673 version requirement.
3675 * Source/cmake/FindEo.cmake: Removed.
3676 EoConfig.cmake is only preffered for EFL 1.8.
3677 * Source/cmake/OptionsEfl.cmake:
3679 2013-11-23 Xabier Rodriguez Calvar <calvaris@igalia.com>
3681 [GStreamer] Remove 0.10 codepath
3682 https://bugs.webkit.org/show_bug.cgi?id=124534
3684 Reviewed by Philippe Normand.
3686 * Source/cmake/OptionsEfl.cmake: Removed GST_API_VERSION_1
3689 2013-11-22 Manuel Rego Casasnovas <rego@igalia.com>
3691 [GTK] Review enabled/disabled CSS features for release builds
3692 https://bugs.webkit.org/show_bug.cgi?id=124791
3694 Reviewed by Martin Robinson.
3696 Enable and disable some CSS features according to what last versions of
3699 * Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and
3700 ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
3703 2013-11-21 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3705 Remove ENABLE_WORKERS
3706 https://bugs.webkit.org/show_bug.cgi?id=105784
3708 Reviewed by Darin Adler.
3710 * Source/autotools/SetupWebKitFeatures.m4:
3711 * Source/cmake/WebKitFeatures.cmake:
3712 * Source/cmakeconfig.h.cmake:
3714 2013-11-20 Commit Queue <commit-queue@webkit.org>
3716 Unreviewed, rolling out r159496.
3717 http://trac.webkit.org/changeset/159496
3718 https://bugs.webkit.org/show_bug.cgi?id=124641
3720 It caused warning and build break with cmake lower than 2.8.8
3721 (Requested by ryuan on #webkit).
3723 * Source/cmake/OptionsEfl.cmake:
3725 2013-11-19 Ryuan Choi <ryuan.choi@samsung.com>
3727 [EFL] Use Config mode of find_package for EFL 1.8
3728 https://bugs.webkit.org/show_bug.cgi?id=124555
3730 Reviewed by Gyuyoung Kim.
3732 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
3733 which parses header file to know the version. Instead, EFL 1.8 supports
3734 Config mode of find_package using XXXConfig.cmake such as EinaConfig.cmake.
3736 This patch tries to use Config mode if it is available after checking Eo.
3738 * Source/cmake/OptionsEfl.cmake:
3740 2013-11-18 Carlos Garcia Campos <cgarcia@igalia.com>
3742 Unreviewed. Update NEWS and Versions.m4 for 2.3.2 release.
3744 * Source/autotools/Versions.m4: Bump version numbers.
3746 2013-11-06 Krzysztof Czech <k.czech@samsung.com>
3748 [EFL] Change required version of ATK to 2.10.0
3749 https://bugs.webkit.org/show_bug.cgi?id=123883
3751 Reviewed by Mario Sanchez Prada.
3753 Changing a required version of ATK to 2.10.0
3755 * Source/cmake/OptionsEfl.cmake:
3757 2013-11-05 Zalan Bujtas <zalan@apple.com>
3759 Widget's position change should not initiate layout, only when its size changes.
3760 https://bugs.webkit.org/show_bug.cgi?id=123860
3762 Reviewed by Andreas Kling.
3764 RenderWidgets initiate unnecessary layouts while scrolling when they are embedded to
3765 overflow:scroll containers. Scroll position change doesn't dirty the render tree
3766 so it should not trigger layout either.
3768 * ManualTests/layouts-on-renderwidgets-while-scrolling.html: Added.
3770 2013-11-05 Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu>
3772 Remove leftover Qt related things from WebKitMacros.cmake
3773 https://bugs.webkit.org/show_bug.cgi?id=123798
3775 Reviewed by Anders Carlsson.
3777 * Source/cmake/WebKitMacros.cmake:
3779 2013-11-02 Patrick Gansterer <paroga@webkit.org>
3781 [WINCE] Disable export macros
3782 https://bugs.webkit.org/show_bug.cgi?id=123679
3784 Reviewed by Darin Adler.
3786 Avoid useless exports by turning of the export macros
3787 since the WinCE port works as a static library only.
3789 * Source/cmake/OptionsWinCE.cmake:
3791 2013-10-31 Ryuan Choi <ryuan.choi@samsung.com>
3793 [EFL][GLES] OpenGL should be an optional
3794 https://bugs.webkit.org/show_bug.cgi?id=123399
3796 Reviewed by Noam Rosenthal.
3798 * Source/cmake/OptionsEfl.cmake:
3799 Refactor the check routine of GL dependencies to use OpenGL as optional.
3801 2013-10-29 Carlos Garcia Campos <cgarcia@igalia.com>
3803 Unreviewed. Update NEWS and Versions.m4 for 2.3.1 release.
3805 * Source/autotools/Versions.m4: Bump version numbers.
3807 2013-10-24 Ryuan Choi <ryuan.choi@samsung.com>
3809 [EFL] Build break with latest EFL 1.8 libraries.
3810 https://bugs.webkit.org/show_bug.cgi?id=123245
3812 Reviewed by Gyuyoung Kim.
3814 After fixed build break on EFL 1.8 at r138326, EFL libraries are changed
3815 Eo typedef and splitted header files which contain version macro.
3817 * Source/cmake/EFLHelpers.cmake: Checked whether include path exist.
3818 * Source/cmake/FindEcore.cmake: Added 1.8 Header which have version macro.
3819 * Source/cmake/FindEdje.cmake: Ditto.
3820 * Source/cmake/FindEina.cmake: Ditto.
3821 * Source/cmake/FindEo.cmake: Ditto.
3822 * Source/cmake/FindEvas.cmake: Ditto.
3824 2013-10-22 Ryuan Choi <ryuan.choi@samsung.com>
3826 [EFL] Remove HAVE_GLX macro
3827 https://bugs.webkit.org/show_bug.cgi?id=123191
3829 Reviewed by Gyuyoung Kim.
3831 * Source/cmake/OptionsEfl.cmake: Removed unnecessary HAVE_GLX macro
3833 2013-10-21 Gergo Balogh <geryxyz@inf.u-szeged.hu>
3835 Remove .qmake.conf files
3836 https://bugs.webkit.org/show_bug.cgi?id=123091
3838 Reviewed by Csaba Osztrogonác.
3840 * .qmake.conf: Removed.
3842 2013-10-18 Carlos Garcia Campos <cgarcia@igalia.com>
3844 [GTK] Generate API documentation for GObject DOM bindings
3845 https://bugs.webkit.org/show_bug.cgi?id=121538
3847 Reviewed by Gustavo Noronha Silva.
3849 * GNUmakefile.am: Initialize gdom_symbol_files variable.
3851 2013-10-17 Afonso R. Costa Jr. <afonso.costa@samsung.com>
3853 [CMAKE] Update code to take advantage of CMake version 2.8.3+.
3854 https://bugs.webkit.org/show_bug.cgi?id=97516
3856 Reviewed by Gyuyoung Kim.
3858 CMake's version was changed to 2.8.3. So, these files below
3859 can be simplified to take advantage of CMake's new version.
3861 * Source/cmake/FindCairo.cmake: Simplified according to CMake 2.8.3+.
3862 * Source/cmake/FindGStreamer.cmake: Ditto.
3864 2013-10-16 Ryosuke Niwa <rniwa@webkit.org>
3866 Add a new flakiness dashboard clone
3867 https://bugs.webkit.org/show_bug.cgi?id=122936
3869 Reviewed by Anders Carlsson.
3871 Added the initial prototype.
3873 * Websites/test-results: Added.
3874 * Websites/test-results/.htaccess: Added.
3875 * Websites/test-results/admin: Added.
3876 * Websites/test-results/admin/index.php: Added.
3877 * Websites/test-results/api: Added.
3878 * Websites/test-results/api/manifest.php: Added.
3879 * Websites/test-results/api/report.php: Added.
3880 * Websites/test-results/api/results.php: Added.
3881 * Websites/test-results/include: Added.
3882 * Websites/test-results/include/config.json: Added.
3883 * Websites/test-results/include/db.php: Added.
3884 * Websites/test-results/include/init-database.sql: Added.
3885 * Websites/test-results/include/json-shared.php: Added.
3886 * Websites/test-results/include/test-results.php: Added.
3887 * Websites/test-results/index.html: Added.
3888 * Websites/test-results/js: Added.
3889 * Websites/test-results/js/autocompleter.js: Added.
3890 * Websites/test-results/js/build.js: Added.
3891 * Websites/test-results/js/dom.js: Added.
3893 2013-10-16 Csaba Osztrogonác <ossy@webkit.org>
3895 [WK2][Efl][CMake] Add support for ENABLE_NETWORK_PROCESS to the build system
3896 https://bugs.webkit.org/show_bug.cgi?id=110139
3898 Reviewed by Laszlo Gombos.
3900 Original patch by Balazs Kelemen <kbalazs@webkit.org>
3902 * Source/cmake/WebKitFeatures.cmake:
3903 * Source/cmakeconfig.h.cmake:
3905 2013-10-10 Marcelo Morais <m.morais@samsung.com>
3907 Web Inspector: Remove the old front-end from WebKit
3908 https://bugs.webkit.org/show_bug.cgi?id=122295
3910 Reviewed by Timothy Hatcher.
3912 * Source/PlatformGTK.cmake: Removed. This file was using files from the
3913 old inspector, not needed anymore.
3915 2013-10-09 Julien Brianceau <jbriance@cisco.com>
3917 [sh4] Add sh4 support when building with CMake.
3918 https://bugs.webkit.org/show_bug.cgi?id=122542
3920 Reviewed by Csaba Osztrogonác.
3924 2013-10-08 Martin Robinson <mrobinson@igalia.com>
3926 [GTK] Re-enable MathML for release builds
3927 https://bugs.webkit.org/show_bug.cgi?id=122361
3929 Reviewed by Darin Adler.
3931 * Source/autotools/SetupWebKitFeatures.m4: Enable MathML for release builds.
3933 2013-10-02 Anders Carlsson <andersca@apple.com>
3935 Remove Qt related files from the root directories
3936 https://bugs.webkit.org/show_bug.cgi?id=122249
3938 Reviewed by Andreas Kling.
3940 * Source/QtWebKit.pro: Removed.
3941 * Source/api.pri: Removed.
3942 * Source/qtwebkit.qdocconf: Removed.
3943 * Source/sync.profile: Removed.
3944 * Source/tests.pri: Removed.
3945 * Source/widgetsapi.pri: Removed.
3946 * WebKit.pro: Removed.
3948 2013-09-30 Sam Weinig <sam@webkit.org>
3950 Remove support for DOMFileSystem
3951 https://bugs.webkit.org/show_bug.cgi?id=122137
3953 Reviewed by Anders Carlsson.
3955 * Source/autotools/SetupWebKitFeatures.m4:
3956 * Source/cmake/OptionsBlackBerry.cmake:
3957 * Source/cmake/WebKitFeatures.cmake:
3958 * Source/cmakeconfig.h.cmake:
3960 2013-09-30 Benjamin Poulain <benjamin@webkit.org>
3962 Remove the code guarded by STYLE_SCOPED
3963 https://bugs.webkit.org/show_bug.cgi?id=122123
3965 Reviewed by Anders Carlsson.
3967 * Source/autotools/SetupWebKitFeatures.m4:
3968 * Source/cmake/OptionsBlackBerry.cmake:
3969 * Source/cmake/WebKitFeatures.cmake:
3970 * Source/cmakeconfig.h.cmake:
3972 2013-09-30 Allan Sandfeld Jensen <allan.jensen@digia.com>
3974 [Qt] Fix force_static_libs_as_shared in WebKit2
3975 https://bugs.webkit.org/show_bug.cgi?id=121961
3977 Reviewed by Csaba Osztrogonác.
3979 Get rid of the unused WebKit2QML library
3983 2013-09-26 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3985 [GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
3986 https://bugs.webkit.org/show_bug.cgi?id=121836
3988 Reviewed by Martin Robinson.
3990 * Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
3991 been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
3992 generates warnings in newer glibc.
3994 2013-09-25 Allan Sandfeld Jensen <allan.jensen@digia.com>
3996 [Qt] Fix build with Qt 5.2 QtPosition module
3997 https://bugs.webkit.org/show_bug.cgi?id=121089
3999 Reviewed by Simon Hausmann.
4001 QtLocation -> QtPositioning
4003 * Source/sync.profile:
4005 2013-09-24 Zan Dobersek <zdobersek@igalia.com>
4007 [GTK] Enable the Wayland target if GTK+ dependency is found
4008 https://bugs.webkit.org/show_bug.cgi?id=121704
4010 Reviewed by Gustavo Noronha Silva.
4012 The Wayland target should be enabled by default if the GTK+ dependency is of version 3.9.14 or later.
4014 * Source/autotools/FindDependencies.m4: If the Wayland target was not strictly disabled, the GTK+ dependency
4015 is tested if it can provide the Wayland GDK backend, and that the version of that backend matches the version
4016 of the master GTK+ dependency for which we already tested. If found, the target is enabled, otherwise we either
4017 warn or error out, depending on whether the build target was set to auto or completely disabled through configuration.
4018 * Source/autotools/ReadCommandLineArguments.m4: Switch the default Wayland target status to 'auto', meaning
4019 it will be disabled if the GTK+ dependency is not found.
4020 * Source/autotools/Versions.m4: Require GTK+ 3.9.14 for the Wayland target only.
4022 2013-09-23 Zan Dobersek <zdobersek@igalia.com>
4024 [Autotools] Rework the build target selection
4025 https://bugs.webkit.org/show_bug.cgi?id=121703
4027 Reviewed by Gustavo Noronha Silva.
4029 Replace the --with-target configuration flag with target-specific --enable-*-target flags:
4030 - --enable-x11-target
4031 - --enable-wayland-target
4032 - --enable-win32-target
4033 - --enable-quartz-target
4034 - --enable-directfb-target
4036 By default, the X11 target is enabled. This default is preserved only if no --enable-*-target flag
4037 is passed on the command line. When that occurs, the newly-constructed list of build targets is
4038 used to determine what build targets should actually be built. So for instance, executing just
4039 `./configure` would only enable the X11 target as that's the default, and executing
4040 `./configure --enable-wayland-target` would only enable the Wayland target, as the defaults are
4043 * Source/autotools/CheckSystemAndBasicDependencies.m4: Abort if grep was not found, just in case.
4044 * Source/autotools/CustomMacros.m4: The new file that contains helpful custom macros.
4045 * Source/autotools/FindDependencies.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4046 * Source/autotools/PrintBuildConfiguration.m4: Use the new AM_APPEND_TO_DESCRIPTION macro to construct a pretty-looking
4047 description string of what targets will be built.
4048 * Source/autotools/ReadCommandLineArguments.m4: Replace the --with-target configuration flag and the related
4049 hacks with the set of --enable-*-target flags. The new AM_DETERMINE_BUILD_TARGET_STATUS macro is used to determine
4050 whether to enable specific build targets, based indirectly on the passed-in --enable-*-target flags.
4051 * Source/autotools/SetupAutoconfHeader.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4052 * Source/autotools/SetupAutomake.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
4053 * configure.ac: Include the new CustomMacros.m4 file.
4055 2013-09-23 Claudio Saavedra <csaavedra@igalia.com>
4059 Reviewed by Carlos Garcia Campos.
4061 * Source/autotools/Versions.m4: Bump to 2.3.0
4063 2013-09-20 Sergio Correia <sergio.correia@openbossa.org>
4065 [CMAKE] FindHarfBuzz: Handle harfbuzz / harfbuzz-icu split
4066 https://bugs.webkit.org/show_bug.cgi?id=121688
4068 Reviewed by Martin Robinson.
4070 HarfBuzz 0.9.18 split ICU support into a separate harfbuzz-icu library.
4071 To be able to build with earlier and newer versions of HarfBuzz, we should
4072 check for harfbuzz-icu as well, if version >= 0.9.18.
4074 * Source/cmake/FindHarfBuzz.cmake: Check for harfbuzz-icu, if version
4077 2013-09-16 Gustavo Noronha Silva <gns@gnome.org>
4079 [GTK] Make symbol export filter more strict, and disable for dev/test builds
4080 https://bugs.webkit.org/show_bug.cgi?id=120586
4082 Reviewed by Martin Robinson.
4084 * GNUmakefile.am: only include test-related automake files when developer
4086 * Source/autotools/ReadCommandLineArguments.m4: add --enable-developer-mode,
4087 defaults to no, and to yes for debug builds.
4088 * Source/autotools/SetupAutomake.m4: add ENABLE_DEVELOPER_MODE conditional.
4089 * Source/autotools/symbols.filter: make the exported symbols list much shorter,
4090 covering only the public ABI and a few symbols required by WebKit2 processes.
4092 2013-09-13 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
4094 [GTK] Move to the new web inspector
4095 https://bugs.webkit.org/show_bug.cgi?id=120647
4097 Reviewed by Carlos Garcia Campos.
4099 * GNUmakefile.am: include the new WebInspectorUI GNUmakefile.am.
4101 2013-09-13 Allan Sandfeld Jensen <allan.jensen@digia.com>
4103 [Qt] Update sync.profile
4104 https://bugs.webkit.org/show_bug.cgi?id=121295
4106 Reviewed by Simon Hausmann.
4108 Ensure we let the dependencies pick the right branch instead of always master
4109 and list all the dependencies we need on all platforms.
4111 * Source/sync.profile:
4113 2013-09-11 Mario Sanchez Prada <mario.prada@samsung.com>
4115 [GTK] Remove Gail dependency from build system for GTK3
4116 https://bugs.webkit.org/show_bug.cgi?id=119673
4118 Reviewed by Gustavo Noronha Silva.
4120 * Source/autotools/FindDependencies.m4: Don't look for GAIL at all.
4121 * Source/autotools/Versions.m4: Removed any reference to GAIL.
4122 * Source/cmake/FindGAIL3.cmake: Removed.
4123 * Source/cmake/OptionsGTK.cmake: Don't look for the GAIL package.
4125 2013-09-11 Patrick Gansterer <paroga@webkit.org>
4127 [CMake] Split out generic Windows files into its own file
4128 https://bugs.webkit.org/show_bug.cgi?id=119514
4130 Reviewed by Gyuyoung Kim.
4132 This allows us to add smaller CMakeLists.txt files when
4133 adding additional Windows ports.
4135 * Source/cmake/OptionsWinCE.cmake:
4136 * Source/cmake/WebKitMacros.cmake:
4138 2013-09-11 Alberto Garcia <berto@igalia.com>
4140 autogen.sh: fix removal of autom4te.cache
4141 https://bugs.webkit.org/show_bug.cgi?id=121150
4143 Reviewed by Carlos Garcia Campos.
4145 The removal of autom4te.cache is wrong, it uses 'rm -f' instead of
4146 'rm -rf' and it relies on an undefined variable.
4148 In addition to that, it should be done after running autoreconf,
4149 which is when it's no longer needed.
4153 2013-09-11 Alberto Garcia <berto@igalia.com>
4155 Unquoted $ORIGDIR in autogen.sh
4156 https://bugs.webkit.org/show_bug.cgi?id=19512
4158 Reviewed by Carlos Garcia Campos.
4160 Quote all directory names. This doesn't mean that all possible
4161 directory names are safe for building webkit, but the configure
4162 script already runs a sanity check.
4166 2013-09-11 Zan Dobersek <zdobersek@igalia.com>
4168 [GTK] Stop disabling deprecated symbols in debug builds
4169 https://bugs.webkit.org/show_bug.cgi?id=121145
4171 Reviewed by Carlos Garcia Campos.
4173 Disabling the dependencies' deprecated symbols in debug builds is only causing unnecessary
4174 build failures. Compiler warnings are being thrown whenever a deprecated symbol is being
4175 used, so a build failure is an overreach in this case.
4177 * Source/autotools/SetupAutoconfHeader.m4:
4179 2013-09-10 Marcelo Morais <m.morais@samsung.com>
4181 [EFL] WebInspector: Move to new webinspector
4182 https://bugs.webkit.org/show_bug.cgi?id=119559
4184 Reviewed by Gyuyoung Kim.
4186 Enabling the new Web Inspector on EFL port.
4187 Co-author: Andre Loureiro <andre.vl@samsung.com>
4189 * Source/PlatformEfl.cmake:
4190 * Source/cmake/OptionsEfl.cmake:
4192 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
4194 REGRESSION(r155143): Build failures on GTK port with Clang and libstdc++ < 4.8.1
4195 https://bugs.webkit.org/show_bug.cgi?id=120896
4197 Reviewed by Anders Carlsson.
4199 The GTK port currently only permits using the libstdc++ standard library when compiling with
4200 Clang. After r155143, build failures are occurring when using Clang and libstdc++ that predates
4201 the 4.8.0 release due to the use of std::is_trivially_destructible that isn't available in
4204 To not add additional special casing, the GTK port should move onto requiring libstdc++ >= 4.8.1
4205 when compiling with the Clang compiler. Version 4.8.1 was chosen since it's C++11 feature-complete.
4206 This strict requirement is possible as compiling the GTK port with the Clang compiler is not really
4207 widespread, so we can afford to adjust the required dependencies to match other ports' progression
4208 instead of modifying the code.
4210 * Source/autotools/CheckSystemAndBasicDependencies.m4: If the detected compiler is Clang, also check
4211 that the libstdc++ standard library is used by testing for the __GLIBCXX__ macro that should be defined
4212 to the value lesser than the '20130531', the date stamp used by the 4.8.1 release of libstdc++. Since
4213 possible future releases of the 4.6 or 4.7 series of libstdc++ will also match this check due to a newer
4214 date stamp contained in __GLIBCXX__, the std::is_trivially_destructible struct is also used so the
4215 compilation will fail if the libstdc++ that's used is older than allowed (and therefor does not support
4216 the feature). If the check fails, a fatal error is thrown, describing the requirement. Everything carries
4217 on as normal otherwise.
4219 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
4221 [GTK] Bump the required Clang version to 3.2
4222 https://bugs.webkit.org/show_bug.cgi?id=112537
4224 Reviewed by Gustavo Noronha Silva.
4226 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
4227 when the Clang compiler is specified.
4229 2013-09-05 Brendan Long <b.long@cablelabs.com>
4231 [Qt] DefaultFullScreenVideoHandler and PlatformVideoWindow are included in the build when they are disabled
4232 https://bugs.webkit.org/show_bug.cgi?id=117206
4234 Reviewed by Philippe Normand.
4236 * Source/widgetsapi.pri: Don't include DefaultFullScreenVideoHandler when it's disabled.
4238 2013-09-05 Ryuan Choi <ryuan.choi@samsung.com>
4240 [CMAKE] Add c++0x into CXX_FLAGS as a default
4241 https://bugs.webkit.org/show_bug.cgi?id=120812
4243 Unreviewed build fix for EFL ports.
4245 * Source/cmake/OptionsCommon.cmake: Moved c++0x option here from WebKitHelpers.
4246 * Source/cmake/WebKitHelpers.cmake:
4248 2013-09-04 Michael Brüning <michael.bruning@digia.com>
4250 [Qt] Use correct library paths for prefix builds on Mac.
4251 https://bugs.webkit.org/show_bug.cgi?id=120635
4253 Reviewed by Tor Arne Vestbø.
4255 Due to a change of scope of the qmake force_independent configuration
4256 flag, the library paths in QtWebKit builds on the Mac are set to the
4257 QtWebKit build directory even for production builds.
4259 This patch sets the correct library paths for prefixed production builds
4260 while keeping the scope of the force_independent flag for non-production
4264 * Source/widgetsapi.pri:
4266 2013-09-04 Zan Dobersek <zdobersek@igalia.com>
4268 [GTK] Add support for the Wayland build target
4269 https://bugs.webkit.org/show_bug.cgi?id=120627
4271 Reviewed by Gustavo Noronha Silva.
4273 Add support for building the GTK port with Wayland as the target. The Wayland target can be the sole target
4274 that's enabled, or it can be enabled in parallel with the X11 target.
4276 Each of those two targets, when enabled, checks for the corresponding GTK+ windowing dependency being present.
4277 In the case of only the Wayland target being enabled, the accelerated compositing feature is disabled at
4278 build-time as the feature is not yet supported under the Wayland display protocol. X11-based plugin support is
4279 also disabled under that configuration, even if the WebKitPluginProcess is still built but is left non-operational.
4280 GLX support is also disabled if not building the X11 target.
4282 The Wayland target can be enabled through using the --with-target configuration option that now accepts two
4284 - 'wayland' - only enables the Wayland target,
4285 - 'x11,wayland' - enables the X11 and Wayland targets that are to be built in parallel.
4287 This makes it possible to build the GTK port of WebKit with the Wayland target, relying solely on the GTK+
4288 dependency that only has the Wayland backend enabled, and removes linking against any X11-related library.
4289 Note that at the moment there seem to be other dependencies that still link to X11-related libraries.
4290 Complete functionality is not yet guaranteed, but is of course the goal.
4292 * Source/autotools/FindDependencies.m4: Store the version of the basic GTK+ dependency that was found.
4293 This is later used to check that the GTK+ X11 and GTK+ Wayland dependencies are of the same version. The
4294 X11-specific dependencies are grouped into one section (apart from the XComposite and XDamage dependencies),
4295 also checking for the GTK+ X11 dependency. If the X11 target is not enabled, the GLX dependency is disabled.
4296 Additionally check for the GTK+ Wayland dependency if the Wayland target is enabled.
4297 We only check for the presence and correct version of the GTK+ X11 and Wayland dependencies, if necessary.
4298 Check for the XComposite and XDamage dependencies if the X11 target is enabled (in addition to the OpenGL
4299 headers being present).
4300 In case of the Wayland target being enabled while the X11 target is not, disable the accelerated compositing
4301 feature as there's no support yet for it under the Wayland display protocol.
4302 * Source/autotools/PrintBuildConfiguration.m4: The build configuration should now print out 'GDK targets'.
4303 * Source/autotools/ReadCommandLineArguments.m4: The --with-target option can now take two additional values,
4304 'wayland' and 'x11,wayland'. The first one enables only the Wayland target, while the second one enables both
4305 X11 and Wayland targets. This makes it possible to build the GTK port with both X11 and Wayland display protocols
4306 supported in the same build.
4307 We must now check the outcoming with_target variable to see if the special case of building one or both of the
4308 possible parallel targets was chosen. We define with_x11_target and with_wayland_target variables if the
4309 with_target value applies to that case.
4310 * Source/autotools/SetupAutoconfHeader.m4: Do not define the XP_UNIX macro on builds that enable the Wayland-only
4311 target. It should still be defined if we're building both X11 and Wayland targets in parallel.
4312 * Source/autotools/SetupAutomake.m4: Define TARGET_X11 and TARGET_WAYLAND Automake conditionals if the new
4313 with_x11_target or with_wayland_target variables were set, respectively. Additionall, define the TARGET_X11_OR_WAYLAND
4314 Automake conditional if we're building either of the two targets.
4316 2013-09-03 Patrick Gansterer <paroga@webkit.org>
4318 [CMake] Fix detection of x86_64 platform with MSVC
4319 https://bugs.webkit.org/show_bug.cgi?id=116662
4321 Reviewed by Gyuyoung Kim.
4323 Use ${MSVC_CXX_ARCHITECTURE_ID} instead of ${CMAKE_SYSTEM_PROCESSOR}, since
4324 the later one just resolves to the host processor on Windows.
4328 2013-08-29 Sam Weinig <sam@webkit.org>
4330 Add ENABLE guards for Promises
4331 https://bugs.webkit.org/show_bug.cgi?id=120488
4333 Reviewed by Andreas Kling.
4335 * Source/autotools/SetupWebKitFeatures.m4:
4336 * Source/cmake/WebKitFeatures.cmake:
4337 * Source/cmakeconfig.h.cmake:
4339 2013-08-28 Gustavo Noronha Silva <gns@gnome.org>
4341 [GTK] Enable maintainer mode configure switch
4342 https://bugs.webkit.org/show_bug.cgi?id=120424
4344 Reviewed by Martin Robinson.
4346 The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
4347 regeneration will happen for a regular tarball build; ostree builders, for instance, are very
4348 conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
4349 (2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
4350 the version of aclocal that was used for generating the tarball (1.13).
4352 * configure.ac: enable maintainer mode feature.
4354 2013-08-28 Zan Dobersek <zdobersek@igalia.com>
4356 [GTK] Add support for building JSC with FTL JIT enabled
4357 https://bugs.webkit.org/show_bug.cgi?id=120270
4359 Reviewed by Filip Pizlo.
4361 * Source/autotools/FindDependencies.m4: Disable FTL JIT if the JIT itself is disabled or if the C++ compiler
4362 being used is not Clang. Check for llvm-config and use it to properly test for the LLVM >= 3.4 dependency.
4363 * Source/autotools/PrintBuildConfiguration.m4: Print out the status of the FTL JIT support.
4364 * Source/autotools/ReadCommandLineArguments.m4: Add a configuration flag for enabling the feature, defaulting
4365 to 'no' used as the default value for now. This should switch to 'auto' at some point in future.
4366 * Source/autotools/SetupAutoconfHeader.m4: Define ENABLE_FTL_JIT to a specific value if possible.
4367 Also define HAVE_LLVM to 1 if the LLVM dependency was satisfied.
4369 2013-08-28 Simon Hausmann <simon.hausmann@digia.com>
4371 [Qt] Unreviewed trivial build adjustment
4373 * Source/sync.profile: Don't depend on qtjsbackend anymore. It's not needed in Qt 5.2
4374 anymore (but this section of sync.profile is only used by the CI system, so no impact
4377 2013-08-24 Carlos Garcia Campos <cgarcia@igalia.com>
4379 Unreviewed. Fix GTK+ build after r154541.
4381 * Source/autotools/symbols.filter: Export symbols required by
4384 2013-08-15 Zan Dobersek <zdobersek@igalia.com>
4386 Unreviewed GTK build fix after r154106.
4388 * Source/autotools/symbols.filter: Export the proper Element::shadowRoot() symbol.
4390 2013-08-14 Filip Pizlo <fpizlo@apple.com>
4392 Typed arrays should be rewritten
4393 https://bugs.webkit.org/show_bug.cgi?id=119064
4395 Reviewed by Oliver Hunt.
4397 Automake work courtesy of Zan Dobersek <zdobersek@igalia.com>.
4399 * Source/autotools/symbols.filter:
4401 2013-08-14 Tim Horton <timothy_horton@apple.com>
4403 Un-inline dataLog dumpers for IntSize and IntPoint
4404 https://bugs.webkit.org/show_bug.cgi?id=119697
4406 Reviewed by Sam Weinig.
4408 Avoid regressing build performance by moving IntSize::dump and IntPoint::dump elsewhere.
4410 * Source/autotools/symbols.filter:
4412 2013-08-14 Martin Robinson <mrobinson@igalia.com>
4414 [GTK] [CMake] Add support for building TestWebKitAPI
4415 https://bugs.webkit.org/show_bug.cgi?id=116987
4417 Reviewed by Philippe Normand.
4419 * Source/cmake/OptionsGTK.cmake: Turn on the API tests in the settings.
4421 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
4423 [Autotools] Unicode's CFLAGS enforce -D_FORTIFY_SOURCE=2, -D_REENTRANT=1, causing faulty Clang builds
4424 https://bugs.webkit.org/show_bug.cgi?id=119685
4426 Reviewed by Gustavo Noronha Silva.
4428 icu-config includes '-D_FORTIFY_SOURCE=2 -D_REENTRANT=1' when printing out C preprocessor flags that are used
4429 as the C compiler flags to avoid other unwanted compiler options. This causes problems when building optimized
4430 builds with Clang because of a bug in that compiler:
4431 http://llvm.org/bugs/show_bug.cgi?id=16821
4433 To avoid that, the C preprocessor search flags, as printed by `icu-config --cppflags-searchpath` are now used
4434 the Unicode dependency's C compiler flags, avoiding unconditionally specifying the two macros.
4436 To adjust for that, the `-pthread` flag is added to the global CFLAGS and CXXFLAGS variables, ensuring
4437 the _REENTRANT define is set to 1 and declaring the flag globally instead of relying on Glib dependency's
4438 C compiler flags to do so for us. -D_FORTIFY_SOURCE=2 is only added to the CFLAGS and CXXFLAGS variables if
4439 the compiler in use is gcc or g++, preventing the Clang builds to malfunction.
4441 * Source/autotools/FindDependencies.m4:
4442 * Source/autotools/SetupCompilerFlags.m4:
4444 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
4446 [Autotools] Don't compare $CC, $CXX to exact compiler names
4447 https://bugs.webkit.org/show_bug.cgi?id=119683
4449 Reviewed by Gustavo Noronha Silva.
4451 Instead of comparing $CC and $CXX to exact compiler names (like 'gcc', 'clang++' etc.),
4452 use the compiler version checks to also specify the broader compiler collection of which
4453 the used compiler is a member of. This avoids failures in some border-line cases where
4454 the user would still use either a GCC or a Clang compiler but provide it through a symbolic
4455 link that was specified via the CC/CXX environment variables.
4457 * Source/autotools/CheckSystemAndBasicDependencies.m4: Store the detected C/C++ compiler collection
4458 in c_compiler/cxx_compiler. Throw an error if no supported compiler was found.
4459 * Source/autotools/SetupCompilerFlags.m4: Test for a specific compiler by checking against
4460 c_compiler/cxx_compiler rather than CC/CXX values.
4462 2013-08-12 Zan Dobersek <zdobersek@igalia.com>
4464 [Autotools] Adjust the help string for the configure's --enable-optimizations flag
4465 https://bugs.webkit.org/show_bug.cgi?id=119682
4467 Reviewed by Martin Robinson.
4469 * Source/autotools/ReadCommandLineArguments.m4: Remove the 'GCC only' part of the help
4470 string for the --enable-optimizations flag. This is not true and can lead to confusion
4471 since the optimizations can be applied when compiling with Clang as well.
4473 2013-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
4475 Unreviewed. Update NEWS and Versions.m4 for 2.1.4 release.
4477 * Source/autotools/Versions.m4: Update version numbers.
4479 2013-08-09 Zan Dobersek <zdobersek@igalia.com>
4481 [Automake] Clean up OpenGL graphics configuration sections
4482 https://bugs.webkit.org/show_bug.cgi?id=119554
4484 Reviewed by Martin Robinson.
4486 Clean up sections in the Automake configuration process that are configuring the OpenGL graphics
4487 features and dependencies. Remove unnecessary variable assignments, merge similar code paths,
4488 clarify a couple of comments and error messages and fix a few whitespace problems.
4490 * Source/autotools/FindDependencies.m4:
4491 * Source/autotools/ReadCommandLineArguments.m4:
4492 * Source/autotools/SetupAutomake.m4:
4494 2013-08-04 Sam Weinig <sam@webkit.org>
4496 Remove support for HTML5 MicroData
4497 https://bugs.webkit.org/show_bug.cgi?id=119480
4499 Reviewed by Anders Carlsson.
4501 * Source/autotools/SetupWebKitFeatures.m4:
4502 * Source/cmake/OptionsBlackBerry.cmake:
4503 * Source/cmake/OptionsEfl.cmake:
4504 * Source/cmake/OptionsGTK.cmake:
4505 * Source/cmake/WebKitFeatures.cmake:
4506 * Source/cmakeconfig.h.cmake:
4508 2013-08-06 Simon Pena <simon.pena@samsung.com>
4510 Build fix for GTK 32-bit after r153736
4512 * Source/autotools/symbols.filter: expose WebCore::SerializedScriptValue::create.
4514 2013-08-06 Simon Pena <simon.pena@samsung.com>
4516 Build fix for GTK after r153736
4518 * Source/autotools/symbols.filter: expose missing symbols
4519 WebCore::SerializedScriptValue::create and WebCore::toJS to Internals.
4521 2013-08-05 Zan Dobersek <zdobersek@igalia.com>
4523 [Automake] Define ENABLE_JIT through the Autoconf header
4524 https://bugs.webkit.org/show_bug.cgi?id=119445
4526 Reviewed by Martin Robinson.
4528 Instead of defining the ENABLE_JIT value through JSC_CPPFLAGS, the feature define is
4529 set to be either enabled or disabled through the Autoconf header, based on the value
4530 passed through the configuration flag. The 'auto' value is used as default, meaning
4531 that the feature is enabled or disabled in the Platform.h header based on the platform
4532 configuration (OS, architecture etc.).
4534 * Source/autotools/FindDependencies.m4: Remove the JSC_CPPFLAGS definition.
4535 * Source/autotools/ReadCommandLineArguments.m4: Change the default value to 'auto' instead
4536 of 'autodetect', as used by other configuration options that take a similar approach to enabling
4538 * Source/autotools/SetupAutoconfHeader.m4: Set a strict value for the ENABLE_JIT define through
4539 the Autoconf header if the feature was specifically enabled or disabled.
4541 2013-08-04 Zalan Bujtas <zalan@apple.com>