1 2015-07-23 Alex Christensen <achristensen@webkit.org>
3 Remove compile and runtime flags for promises.
4 https://bugs.webkit.org/show_bug.cgi?id=147244
6 Reviewed by Yusuke Suzuki.
8 * Source/cmake/OptionsMac.cmake:
9 * Source/cmake/OptionsWindows.cmake:
10 * Source/cmake/WebKitFeatures.cmake:
12 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
14 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
15 https://bugs.webkit.org/show_bug.cgi?id=147212
17 Reviewed by Filip Pizlo.
19 * Source/cmake/WebKitFeatures.cmake:
21 2015-07-22 Alex Christensen <achristensen@webkit.org>
23 Fix quirks in CMake build on Mac and Windows
24 https://bugs.webkit.org/show_bug.cgi?id=147174
26 Reviewed by Gyuyoung Kim.
29 * Source/cmake/OptionsWindows.cmake:
30 Added options I removed in r187022. They are indeed needed.
31 * Source/cmake/WebKitFS.cmake:
32 Make the DerivedSources/WebKit directory.
34 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
36 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
38 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
40 2015-07-20 Alex Christensen <achristensen@webkit.org>
42 Resurrect CMake build on Windows.
43 https://bugs.webkit.org/show_bug.cgi?id=147083
45 Reviewed by Gyuyoung Kim.
47 * Source/cmake/OptionsCommon.cmake:
48 * Source/cmake/OptionsWindows.cmake:
49 Change features to get it to compile. Still not a complete feature set.
51 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
53 [GTK] Add seccomp filters support
54 https://bugs.webkit.org/show_bug.cgi?id=110014
56 Reviewed by Žan Doberšek.
58 Find needed compiler and linker flags for libseccomp.
60 * Source/cmake/OptionsGTK.cmake:
62 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
64 Bring back the GNU ar check to create thin archives on non-Linux systems
65 https://bugs.webkit.org/show_bug.cgi?id=146681
67 Reviewed by Martin Robinson.
69 We already use GNU ar thin archive feature to save time and disk space
70 on creating static archives, but it is only enabled on Linux. Without
71 this feature, the debug build of WebCore can be larger than 4 GiB,
72 which can cause error because GNU ar format uses 32-bit integer to
73 store offsets in the symbol table. This patch is similar to
74 https://bugs.webkit.org/show_bug.cgi?id=128596.
76 * Source/cmake/OptionsCommon.cmake:
78 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
80 [GTK] [Wayland] Build by default the X11 and Wayland targets.
81 https://bugs.webkit.org/show_bug.cgi?id=146057
83 Reviewed by Carlos Garcia Campos.
85 * Source/cmake/OptionsGTK.cmake:
87 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
89 [GTK] ar warning when linking static libraries
90 https://bugs.webkit.org/show_bug.cgi?id=144988
92 Reviewed by Carlos Garcia Campos.
94 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
95 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
96 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
97 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
98 should either stop using 'u' or else add 'U' as well in order to disable deterministic
99 archives. Using 'U' should result in a somewhat faster build (at least when using the
100 Makefile generator), but it's unlikely that the difference is significant, so let's simply
101 remove 'u' until someone determines otherwise. This seems like a better option than adding
102 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
103 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
104 behavior change on distributions that do not use --enable-deterministic-archives, notably
107 * Source/cmake/OptionsCommon.cmake:
109 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
111 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
112 https://bugs.webkit.org/show_bug.cgi?id=146590
114 Reviewed by Martin Robinson.
116 * Source/PlatformGTK.cmake: override the cached variables to
117 forcefully disable gtk-doc and gobject-introspection when
119 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
120 documentation syntax when cross-building.
123 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
125 [EFL] test_ewk2_application_cache_manager has been failed since r185527
126 https://bugs.webkit.org/show_bug.cgi?id=146016
128 Reviewed by Gyuyoung Kim.
130 In order to handle properly WebApplicationCacheManagerProxy implementation which use
131 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
132 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
134 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
136 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
138 Implement ECMAScript Internationalization API
139 https://bugs.webkit.org/show_bug.cgi?id=90906
141 Reviewed by Benjamin Poulain.
143 Begin implementing the Intl apis behind ENABLE_INTL flag.
144 Create the base Intl namespace object.
146 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
148 2015-06-30 Philippe Normand <pnormand@igalia.com>
150 [CMake] Error when gst-plugins-base is missing is too confusing
151 https://bugs.webkit.org/show_bug.cgi?id=145682
153 Reviewed by Carlos Garcia Campos.
155 * Source/cmake/OptionsGTK.cmake: Error out if the required
156 GStreamer libraries are not found on the host.
158 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
160 CairoGL should be checked unconditionally
161 https://bugs.webkit.org/show_bug.cgi?id=146390
163 Reviewed by Darin Adler.
165 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
166 it is run unconditionally; this is necessary because its result
167 is used later on, outside of any conditions.
169 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
171 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
172 https://bugs.webkit.org/show_bug.cgi?id=146318
174 Reviewed by Sergio Villar Senin.
176 Enable PUBLIC_SUFFIX_LIST for GTK+.
178 * Source/cmake/OptionsGTK.cmake:
180 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
182 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
184 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
186 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
188 [EFL] Hyphenation is not supported
189 https://bugs.webkit.org/show_bug.cgi?id=89830
191 Reviewed by Gyuyoung Kim.
193 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
195 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
197 [CMake] Add support for building with various sanitizer tools
198 https://bugs.webkit.org/show_bug.cgi?id=131941
200 Reviewed by Martin Robinson.
202 * Source/PlatformGTK.cmake: Don't generate any documentation
203 when compiling with sanitizers enabled.
204 * Source/cmake/OptionsCommon.cmake: Allow linking with
205 undefined symbols when compiling with sanitizers enabled.
207 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
209 libwebkit2gtk fails to link without opengl
210 https://bugs.webkit.org/show_bug.cgi?id=138332
212 Reviewed by Carlos Garcia Campos.
214 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
215 enabled regardless of whether OpenGL is, because certain symbols
216 such as WebCore::GraphicsLayer::create() need to be built.
218 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
220 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
221 https://bugs.webkit.org/show_bug.cgi?id=146181
223 Reviewed by Martin Robinson.
225 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
227 * Source/cmake/OptionsGTK.cmake:
229 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
231 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
232 https://bugs.webkit.org/show_bug.cgi?id=146171
234 Reviewed by Gyuyoung Kim.
236 * Source/cmake/OptionsEfl.cmake:
237 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
239 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
241 [CMake] FindGTK3.cmake should not modify the values of build options
242 https://bugs.webkit.org/show_bug.cgi?id=144613
244 Reviewed by Martin Robinson.
246 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
247 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
248 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
249 GTK3_SUPPORTS_GESTURES for consistency.
250 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
251 available. It's not possible to automatically select a backend correctly anymore, since all
252 options are set at the same time.
254 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
256 Remove unnecessary svn:executable flags
257 https://bugs.webkit.org/show_bug.cgi?id=146107
259 Reviewed by Alexey Proskuryakov.
261 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
262 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
263 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
264 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
265 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
267 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
269 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
270 https://bugs.webkit.org/show_bug.cgi?id=146108
272 Reviewed by Gyuyoung Kim.
274 * Source/cmake/OptionsEfl.cmake:
276 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
278 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
279 https://bugs.webkit.org/show_bug.cgi?id=146035
281 Reviewed by Gyuyoung Kim.
283 * Source/cmake/OptionsEfl.cmake:
285 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
287 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
288 https://bugs.webkit.org/show_bug.cgi?id=145701
290 Reviewed by Darin Adler.
292 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
294 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
296 [iOS] Crash long pressing on <input type=file>
297 https://bugs.webkit.org/show_bug.cgi?id=146009
298 <rdar://problem/21234453>
300 Reviewed by Ryosuke Niwa.
302 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
304 2015-06-16 Brent Fulgham <bfulgham@apple.com>
306 Rollout accidental Xcode project change.
308 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
310 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
312 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
313 https://bugs.webkit.org/show_bug.cgi?id=145909
315 Reviewed by Csaba Osztrogonác.
317 Bump EWebKit version based on efl library version used by the EWebKit.
319 * Source/cmake/OptionsEfl.cmake:
321 2015-06-11 Commit Queue <commit-queue@webkit.org>
323 Unreviewed, rolling out r185453.
324 https://bugs.webkit.org/show_bug.cgi?id=145881
326 it broke the 32-bit build (Requested by clopez on #webkit).
330 "[GTK] [Wayland] Should be possible to build with support for
331 both X11 and Wayland."
332 https://bugs.webkit.org/show_bug.cgi?id=145701
333 http://trac.webkit.org/changeset/185453
335 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
337 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
338 https://bugs.webkit.org/show_bug.cgi?id=145701
340 Reviewed by Žan Doberšek.
342 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
344 2015-06-03 Daniel Bates <dabates@apple.com>
346 Caps lock indicator should not be shown in read-only or disabled field
347 https://bugs.webkit.org/show_bug.cgi?id=145612
348 <rdar://problem/21227454>
350 Reviewed by Darin Adler.
352 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
353 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
354 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
356 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
358 [cmake] Suppress parentheses-equality warnings
359 https://bugs.webkit.org/show_bug.cgi?id=145126
361 Reviewed by Darin Adler.
363 * Source/cmake/WebKitHelpers.cmake:
365 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
367 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
368 https://bugs.webkit.org/show_bug.cgi?id=145408
370 Reviewed by Carlos Garcia Campos.
372 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
373 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
374 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
376 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
377 libraries. Detect also GLX libraries.
378 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
379 libraries. Use find_path() to get the include path.
380 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
382 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
383 depending on the libraries found on the system.
384 Move the detection of GLX (and the include of CMakePushCheckState)
386 Ensure that we only define USE_GLX when we build with OpenGL
387 (but not with GLESv2).
389 2015-05-27 Dean Jackson <dino@apple.com>
391 img.currentSrc problem in strict mode with old picturefill
392 https://bugs.webkit.org/show_bug.cgi?id=144095
393 <rdar://problem/21087013>
395 Reviewed by Simon Fraser.
397 Add a PICTURE_SIZES flag.
399 * Source/cmake/OptionsEfl.cmake:
400 * Source/cmake/OptionsGTK.cmake:
401 * Source/cmake/OptionsMac.cmake:
402 * Source/cmake/OptionsWindows.cmake:
403 * Source/cmake/WebKitFeatures.cmake:
405 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
407 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
409 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
411 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
413 Unreviewed. Export DatabaseProcessMainUnix symbol.
415 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
416 is exported in production builds.
418 * Source/cmake/gtksymbols.filter:
420 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
422 [GTK] Enable IndexedDB
423 https://bugs.webkit.org/show_bug.cgi?id=98932
425 Reviewed by Žan Doberšek.
427 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
428 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
430 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
432 [GTK] Bump GCC requirements to 4.9.0
433 https://bugs.webkit.org/show_bug.cgi?id=145211
435 Reviewed by Žan Doberšek.
437 It's required to build with IndexedDB support when using GCC,
438 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
440 * Source/cmake/OptionsGTK.cmake:
442 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
444 [CMake] Ignore warnings in system headers
445 https://bugs.webkit.org/show_bug.cgi?id=144747
447 Reviewed by Darin Adler.
449 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
450 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
451 use the SYSTEM argument to the command (added in 2.8.12).
455 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
457 [CMake] Error out when ruby is too old
458 https://bugs.webkit.org/show_bug.cgi?id=145014
460 Reviewed by Martin Robinson.
462 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
467 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
469 [GTK] Enable plugin-related CMake options and variables for the X11 target only
470 https://bugs.webkit.org/show_bug.cgi?id=144995
472 Reviewed by Carlos Garcia Campos.
474 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
475 the X11 windowing target at the moment, so the following options
476 and variables should be enabled or disabled accordingly:
477 - ENABLE_PLUGIN_PROCESS_GTK2
478 - ENABLE_NETSCAPE_PLUGIN_API
479 - ENABLE_PLUGIN_PROCESS
481 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
483 Linker fails without -DDEVELOPER_MODE=ON
484 https://bugs.webkit.org/show_bug.cgi?id=144117
486 Reviewed by Gyuyoung Kim.
488 * Source/cmake/OptionsEfl.cmake:
489 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
490 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
492 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
494 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
495 https://bugs.webkit.org/show_bug.cgi?id=144846
497 Reviewed by Martin Robinson.
499 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
500 CAIRO_GL_* throughout, because find_package will define
502 * Source/cmake/OptionsGTK.cmake: Ditto.
504 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
506 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
507 https://bugs.webkit.org/show_bug.cgi?id=144845
509 Reviewed by Martin Robinson.
511 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
512 if their corresponding WTF options are ON. The code in npapi.h
513 relies on these being undefined if they are to be switched off.
515 2015-05-09 Yoav Weiss <yoav@yoav.ws>
517 Remove the PICTURE_SIZES build flag
518 https://bugs.webkit.org/show_bug.cgi?id=144679
520 Reviewed by Benjamin Poulain.
522 Removed the PICTURE_SIZES build time flag.
524 * Source/cmake/OptionsEfl.cmake:
525 * Source/cmake/OptionsGTK.cmake:
526 * Source/cmake/OptionsMac.cmake:
527 * Source/cmake/OptionsWindows.cmake:
528 * Source/cmake/WebKitFeatures.cmake:
530 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
532 [GTK] [CMake] Check for required X libraries
533 https://bugs.webkit.org/show_bug.cgi?id=144823
535 Reviewed by Martin Robinson.
537 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
539 * Source/cmake/OptionsGTK.cmake:
541 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
543 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
544 https://bugs.webkit.org/show_bug.cgi?id=144746
546 Reviewed by Carlos Garcia Campos.
548 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
549 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
550 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
552 * Source/cmake/OptionsGTK.cmake:
554 2015-05-08 Daniel Bates <dabates@apple.com>
556 [iOS] WebSQL operations are not performed after device is locked
557 https://bugs.webkit.org/show_bug.cgi?id=137503
558 <rdar://problem/20844952>
560 Rubber-stamped by Alexey Proskuryakov.
562 Add a manual test to help verify that we do not regress this issue.
564 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
566 2015-05-08 Commit Queue <commit-queue@webkit.org>
568 Unreviewed, rolling out r183945.
569 https://bugs.webkit.org/show_bug.cgi?id=144789
571 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
575 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
576 https://bugs.webkit.org/show_bug.cgi?id=144746
577 http://trac.webkit.org/changeset/183945
579 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
581 Cleanup after r183940
582 https://bugs.webkit.org/show_bug.cgi?id=144768
586 Looks like the empty directories were not deleted.
588 * Source/PAL: Removed.
589 * Source/PAL/Configurations: Removed.
590 * Source/PAL/PAL.xcodeproj: Removed.
591 * Source/PAL/graphics: Removed.
593 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
595 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
596 https://bugs.webkit.org/show_bug.cgi?id=144746
598 Reviewed by Martin Robinson.
600 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
601 what it is defined to, so defining it to 0 effectively turned it on always.
603 * Source/cmake/OptionsGTK.cmake:
605 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
607 Revert "Introducing the Platform Abstraction Layer (PAL)"
608 https://bugs.webkit.org/show_bug.cgi?id=144751
612 PAL should be a new target inside WebCore, rather than a top-level folder.
614 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
616 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
618 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
620 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
622 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
624 Introducing the Platform Abstraction Layer (PAL)
625 https://bugs.webkit.org/show_bug.cgi?id=143358
627 Reviewed by Simon Fraser.
629 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
631 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
633 [cmake] Disable GNU Gold linker on Cortex A53
634 https://bugs.webkit.org/show_bug.cgi?id=144382
636 Reviewed by Carlos Garcia Campos.
638 * Source/cmake/OptionsCommon.cmake:
640 2015-05-01 Martin Robinson <mrobinson@igalia.com>
642 USE(...) macro should expect unprefixed variables
643 https://bugs.webkit.org/show_bug.cgi?id=144454
645 Reviewed by Daniel Bates.
647 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
648 * Source/cmake/OptionsEfl.cmake: Ditto.
649 * Source/cmake/OptionsGTK.cmake: Ditto.
650 * Source/cmake/OptionsMac.cmake: Ditto.
651 * Source/cmake/OptionsWinCairo.cmake: Ditto.
652 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
655 2015-04-30 Martin Robinson <mrobinson@igalia.com>
657 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
658 https://bugs.webkit.org/show_bug.cgi?id=144394
660 Reviewed by Carlos Garcia Campos.
662 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
663 is that it fixes the redirected XComposite window for GTK+, which was accidentally
664 disabled in previous reworking of the CMake configuration.
666 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
667 version of USE variables.
668 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
669 is exposed to the build.
671 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
673 Unreviewed. Bump GTK+ version numbers.
675 * Source/cmake/OptionsGTK.cmake:
677 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
679 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
680 https://bugs.webkit.org/show_bug.cgi?id=144435
682 Reviewed by Gyuyoung Kim.
684 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
685 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
687 * Source/cmake/OptionsEfl.cmake:
689 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
691 REGRESSION(183583): [Mac] make without SDKROOT has issues
692 https://bugs.webkit.org/show_bug.cgi?id=144431
694 Reviewed by Dan Bernstein.
697 Assume an empty SDKROOT means an macosx variant, so only
698 enable settings if the SDKROOT is not empty and does not
701 2015-04-29 Martin Robinson <mrobinson@igalia.com>
703 Fix the GTK+ build after r183584
705 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
707 2015-04-29 Martin Robinson <mrobinson@igalia.com>
709 [GTK] Add support for automatic hyphenation
710 https://bugs.webkit.org/show_bug.cgi?id=44478
712 Reviewed by Carlos Garcia Campos.
714 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
715 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
716 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
718 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
720 Failure when building WebKit for appletvsimulator.
721 https://bugs.webkit.org/show_bug.cgi?id=144356
723 Reviewed by Alexey Proskuryakov.
725 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
726 make TVOS and WatchOS behave correctly.
730 2015-04-29 Martin Robinson <mrobinson@igalia.com>
732 [CMake] [GTK] Organize and clean up unused CMake variables
733 https://bugs.webkit.org/show_bug.cgi?id=144364
735 Reviewed by Gyuyoung Kim.
737 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
738 specific to certain projects into their PlatformGTK.cmake files.
740 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
742 [EFL] Build failure to find gio-unix
743 https://bugs.webkit.org/show_bug.cgi?id=144083
745 Reviewed by Gyuyoung Kim.
747 Original patch by Doug Newgard <scimma22@outlook.com>
749 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
751 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
753 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
754 https://bugs.webkit.org/show_bug.cgi?id=143001
756 Reviewed by Gyuyoung Kim.
758 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
759 * Source/cmake/OptionsGTK.cmake: Ditto.
761 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
763 Unreviewed, fix typo in previous commit
765 libsecretr -> libsecret in the error message.
767 * Source/cmake/OptionsGTK.cmake:
769 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
771 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
772 https://bugs.webkit.org/show_bug.cgi?id=143546
774 Reviewed by Martin Robinson.
776 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
777 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
778 default. Fail the build with an informative error message if an optional dependency required
779 for an enabled feature is not present. Perform find_package commands only when necessary.
780 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
783 * Source/cmake/OptionsGTK.cmake:
785 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
787 [GTK] Make all options actually options
788 https://bugs.webkit.org/show_bug.cgi?id=144106
790 Reviewed by Martin Robinson.
792 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
793 ENABLE_WAYLAND_TARGET.
795 * Source/cmake/OptionsGTK.cmake:
797 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
799 Unreviewed, fix GTK build after r183452
801 * Source/cmake/OptionsGTK.cmake:
803 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
805 [GTK] Add one single option to control all OpenGL-related options
806 https://bugs.webkit.org/show_bug.cgi?id=144105
808 Reviewed by Martin Robinson.
810 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
811 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
812 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
813 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
814 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
817 * Source/cmake/OptionsGTK.cmake:
819 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
821 [GTK] ENABLE_SMOOTH_SCROLLING should be private
822 https://bugs.webkit.org/show_bug.cgi?id=144306
824 Reviewed by Martin Robinson.
826 Make ENABLE_SMOOTH_SCROLLING private instead of public.
828 * Source/cmake/OptionsGTK.cmake:
830 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
832 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
833 https://bugs.webkit.org/show_bug.cgi?id=144193
835 Reviewed by Darin Adler.
837 * Source/cmake/OptionsEfl.cmake:
838 * Source/cmake/OptionsGTK.cmake:
839 * Source/cmake/OptionsWinCairo.cmake:
840 * Source/cmake/WebKitFeatures.cmake:
842 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
844 [CMake] Should be possible for an option to conflict with other options
845 https://bugs.webkit.org/show_bug.cgi?id=143956
847 Reviewed by Martin Robinson.
849 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
851 * Source/cmake/WebKitFeatures.cmake:
853 2015-04-22 Martin Robinson <mrobinson@igalia.com>
855 [CMake] Autogenerate cmakeconfig.h.cmake
856 https://bugs.webkit.org/show_bug.cgi?id=143997
858 Reviewed by Csaba Osztrogonác.
860 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
861 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
862 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
863 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
864 Do some other miscellaneous related cleanup.
865 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
866 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
867 build exposed variables. Add a macro to generate a configuration from them.
868 * Source/cmakeconfig.h.cmake: Removed.
870 2015-04-24 Philippe Normand <pnormand@igalia.com>
872 [JHBuild] Move to upstream OpenWebRTC
873 https://bugs.webkit.org/show_bug.cgi?id=144145
875 Reviewed by Carlos Garcia Campos.
877 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
880 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
882 [ES6] Implement ES6 template literals
883 https://bugs.webkit.org/show_bug.cgi?id=142691
885 Reviewed by Darin Adler.
887 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
889 * Source/cmake/WebKitFeatures.cmake:
890 * Source/cmakeconfig.h.cmake:
892 2015-04-25 Martin Robinson <mrobinson@igalia.com>
894 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
895 https://bugs.webkit.org/show_bug.cgi?id=144182
897 Reviewed by Simon Fraser.
899 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
900 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
901 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
902 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
903 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
905 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
907 [GTK] Add more public options
908 https://bugs.webkit.org/show_bug.cgi?id=144116
910 Reviewed by Martin Robinson.
912 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
914 * Source/cmake/OptionsGTK.cmake:
916 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
918 [CMake] Some internal variables are not marked as advanced
919 https://bugs.webkit.org/show_bug.cgi?id=143595
921 Reviewed by Martin Robinson.
923 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
924 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
926 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
928 [GTK] Mark as advanced the build options we don't want to expose
929 https://bugs.webkit.org/show_bug.cgi?id=143558
931 Reviewed by Martin Robinson.
933 Mark various options as private instead of public.
935 * Source/cmake/OptionsGTK.cmake:
937 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
939 [CMake] Should be possible for an option to depend on multiple options
940 https://bugs.webkit.org/show_bug.cgi?id=143839
942 Reviewed by Martin Robinson.
944 Use a list instead of a single variable to track the dependencies of each option. Iterate
945 over the list as many times as necessary to ensure all options are properly disabled.
947 * Source/cmake/WebKitFeatures.cmake:
949 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
951 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
952 https://bugs.webkit.org/show_bug.cgi?id=144103
954 Reviewed by Martin Robinson.
956 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
958 * Source/cmake/WebKitFeatures.cmake:
960 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
962 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
963 https://bugs.webkit.org/show_bug.cgi?id=144102
965 Reviewed by Martin Robinson.
967 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
968 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
969 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
971 * Source/cmake/OptionsGTK.cmake:
973 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
975 [CMake] Clean up JSC JIT options
976 https://bugs.webkit.org/show_bug.cgi?id=143998
978 Reviewed by Filip Pizlo.
980 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
981 define for ENABLE_FTL_NATIVE_CALL_INLINING.
982 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
983 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
984 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
985 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
987 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
989 [CMake] Use lowercase for local variables in macros
990 https://bugs.webkit.org/show_bug.cgi?id=144059
992 Reviewed by Martin Robinson.
994 Convert some variable names to lowercase.
996 * Source/cmake/WebKitFeatures.cmake:
998 2015-04-22 Commit Queue <commit-queue@webkit.org>
1000 Unreviewed, rolling out r183116.
1001 https://bugs.webkit.org/show_bug.cgi?id=144060
1003 Inadvertently deleted a file... (Requested by mcatanzaro on
1008 "[CMake] Use lowercase for local variables in macros"
1009 https://bugs.webkit.org/show_bug.cgi?id=144059
1010 http://trac.webkit.org/changeset/183116
1012 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1014 [CMake] Use lowercase for local variables in macros
1015 https://bugs.webkit.org/show_bug.cgi?id=144059
1017 Reviewed by Martin Robinson.
1019 Convert some variable names to lowercase.
1021 * Source/cmake/WebKitFeatures.cmake:
1023 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1025 [CMake] Features list should print dots every other row
1026 https://bugs.webkit.org/show_bug.cgi?id=143832
1028 Reviewed by Martin Robinson.
1030 Discount private options when determining whether to print dots on a given row of the
1031 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
1032 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
1033 wasn't noticed because it only affects the first line, and use of the variable name as a
1034 string in a conditional.)
1036 * Source/cmake/WebKitFeatures.cmake:
1038 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1040 [CMake] Require specifying visibility of WebKit options
1041 https://bugs.webkit.org/show_bug.cgi?id=143831
1043 Reviewed by Alex Christensen.
1045 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
1046 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
1047 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
1048 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
1049 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
1050 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
1051 cross-platform options as PRIVATE.
1053 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1055 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
1056 https://bugs.webkit.org/show_bug.cgi?id=143935
1058 Reviewed by Darin Adler.
1060 Some variables aren't defined in these files or unused variables aren't removed. This
1061 patch cleans up it as well as fix wrong alphabet order.
1063 * Source/cmake/WebKitFeatures.cmake:
1064 * Source/cmakeconfig.h.cmake:
1066 2015-04-19 Simon Fraser <simon.fraser@apple.com>
1068 Restore the WebKit.xcworkspace to the way it was before r182899,
1069 which inadvertently added the Source directory and a couple of source
1072 * WebKit.xcworkspace/contents.xcworkspacedata:
1074 2015-04-16 Basile Clement <basile_clement@apple.com>
1076 Extract the allocation profile from JSFunction into a rare object
1077 https://bugs.webkit.org/show_bug.cgi?id=143807
1079 Reviewed by Filip Pizlo.
1081 * WebKit.xcworkspace/contents.xcworkspacedata:
1083 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
1085 [EFL] Bump LLVM to version 3.6.0 on X86_64
1086 https://bugs.webkit.org/show_bug.cgi?id=143604
1088 Reviewed by Gyuyoung Kim.
1090 * Source/cmake/FindLLVM.cmake: Added version handling.
1091 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
1093 2015-04-15 Timothy Horton <timothy_horton@apple.com>
1095 Custom CSS cursors do not use -webkit-image-set on retina displays
1096 https://bugs.webkit.org/show_bug.cgi?id=120783
1098 Reviewed by Beth Dakin.
1099 Patch by Evan Wallace <evan.exe@gmail.com>.
1101 Add a manual test for custom CSS cursors on retina displays.
1103 * ManualTests/retina-cursors.html: Added.
1105 2015-04-15 Alex Christensen <achristensen@webkit.org>
1107 Progress towards CMake on Mac.
1108 https://bugs.webkit.org/show_bug.cgi?id=143785
1110 Reviewed by Csaba Osztrogonác.
1113 * Source/cmake/OptionsMac.cmake:
1114 * Source/cmake/WebKitFS.cmake:
1116 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
1118 Cannot click "Next" button on Google two-factor auth setup page
1120 <https://bugs.webkit.org/show_bug.cgi?id=143624>
1121 <rdar://problem/19175714>
1123 Reviewed by Darin Adler.
1125 * ManualTests/button-that-focuses-itself-on-click.html: Added.
1127 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
1129 [cmake] REGRESSION(182663): It broke feature dependency handling
1130 https://bugs.webkit.org/show_bug.cgi?id=143665
1132 Reviewed by Csaba Osztrogonác.
1134 Don't try to check the value of options before defining the options.
1136 * Source/cmake/WebKitFeatures.cmake:
1138 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
1140 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
1141 https://bugs.webkit.org/show_bug.cgi?id=143664
1143 Reviewed by Gyuyoung Kim.
1145 * Source/cmake/OptionsEfl.cmake:
1146 * Source/cmake/OptionsGTK.cmake:
1147 * Source/cmake/WebKitFeatures.cmake:
1148 * Source/cmakeconfig.h.cmake:
1150 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1152 [EFL] Enable Media Source
1153 https://bugs.webkit.org/show_bug.cgi?id=143635
1155 Reviewed by Csaba Osztrogonác.
1157 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
1159 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1161 [CMake] Miscellaneous issues in WebKitFeatures.cmake
1162 https://bugs.webkit.org/show_bug.cgi?id=143636
1164 Reviewed by Martin Robinson.
1166 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
1167 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
1169 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
1170 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
1172 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
1174 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
1176 Fix ENABLE_TOUCH_SLIDER so that it can be used
1180 * Source/cmake/WebKitFeatures.cmake:
1182 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1184 [CMake] Print sorted feature list at the very end of the configure process
1185 https://bugs.webkit.org/show_bug.cgi?id=143596
1187 Reviewed by Martin Robinson.
1189 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
1190 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
1191 and sort the options before printing. Reorder some code so that features still get
1192 propagated to the bindings generators.
1194 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1196 [CMake] Options should be marked as advanced by default
1197 https://bugs.webkit.org/show_bug.cgi?id=143572
1199 Reviewed by Gyuyoung Kim.
1201 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
1202 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
1203 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
1204 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
1205 option without making it public.
1207 * Source/cmake/WebKitFeatures.cmake:
1209 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1211 [CMake] Remove unnecessary ENABLE_WEBCORE switch
1212 https://bugs.webkit.org/show_bug.cgi?id=143584
1214 Reviewed by Csaba Osztrogonác.
1216 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
1220 * Source/CMakeLists.txt:
1221 * Source/cmake/OptionsGTK.cmake:
1222 * Source/cmake/WebKitFS.cmake:
1224 2015-04-08 Filip Pizlo <fpizlo@apple.com>
1226 Unreviewed, revert accidental commit.
1230 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
1232 Add CMake build system for WinCairo port.
1233 https://bugs.webkit.org/show_bug.cgi?id=115944
1235 Reviewed by Chris Dumez.
1237 * Source/cmake/OptionsWindows.cmake:
1238 * Source/cmake/WebKitMacros.cmake:
1239 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1241 2015-04-06 Alberto Garcia <berto@igalia.com>
1243 [GTK] Fix HPPA build
1244 https://bugs.webkit.org/show_bug.cgi?id=143453
1246 Reviewed by Darin Adler.
1248 Add HPPA to the list of supported CPUs.
1252 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
1254 Unreviewed, kick the GTK bots to fix an incremental build issue.
1256 * Source/cmake/OptionsGTK.cmake:
1258 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
1260 Fix the EFL and GTK build after r182243
1261 https://bugs.webkit.org/show_bug.cgi?id=143361
1263 Reviewed by Csaba Osztrogonác.
1265 * Source/PlatformEfl.cmake: Add a custom command that copies
1266 the InspectorBackendCommands.js file into the proper directory
1267 under DerivedSources/WebInspectorUI/.
1269 2015-04-01 Alex Christensen <achristensen@webkit.org>
1271 Progress towards CMake on Windows and Mac.
1272 https://bugs.webkit.org/show_bug.cgi?id=143293
1274 Reviewed by Filip Pizlo.
1277 Set DERIVED_SOURCES_WTF_DIR for Windows.
1278 * Source/CMakeLists.txt:
1279 Don't compile bmalloc on Windows.
1280 * Source/cmake/OptionsCommon.cmake:
1281 Use the absolute path of the C preprocessor.
1282 * Source/cmake/OptionsWinCairo.cmake:
1283 Added needed definitions.
1284 * Source/cmake/OptionsWindows.cmake:
1285 Set some default values and removed support for old Visual Studio versions before /MP.
1286 * Source/cmake/WebKitFS.cmake:
1287 Make WTF DerivedSources directory.
1288 * Source/cmake/WebKitMacros.cmake:
1289 Added ADD_PRECOMPILED_HEADER macro based on
1290 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1292 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
1294 Use colored diagnostics when building with cmake + ninja + clang
1295 https://bugs.webkit.org/show_bug.cgi?id=143297
1297 Reviewed by Žan Doberšek.
1299 Because that ninja sets subprocess stdout/stderr to a pipe, clang
1300 disables colored output.
1301 This patch forces clang to use colored diagnostics when we are using
1304 * Source/cmake/OptionsCommon.cmake:
1306 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1308 [CMake] Update old CMakeList.txt in gtest
1309 https://bugs.webkit.org/show_bug.cgi?id=143192
1311 Reviewed by Darin Adler.
1313 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
1314 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
1315 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
1317 * Source/CMakeLists.txt:
1318 * Source/cmake/gtest/CMakeLists.txt: Removed.
1320 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1322 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
1323 https://bugs.webkit.org/show_bug.cgi?id=143138
1325 Reviewed by Csaba Osztrogonác.
1327 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
1328 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
1330 * Source/cmake/OptionsWindows.cmake:
1331 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
1332 * Source/cmake/WebKitMacros.cmake:
1334 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1336 [GStreamer] share GL context in pipeline, part 2
1337 https://bugs.webkit.org/show_bug.cgi?id=143049
1339 Reviewed by Carlos Garcia Campos.
1341 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
1342 OpenGL/ES2 is found and GLX/EGL is found too.
1344 2015-03-26 Alex Christensen <achristensen@webkit.org>
1346 Progress towards CMake on Mac.
1347 https://bugs.webkit.org/show_bug.cgi?id=143112
1349 Reviewed by Chris Dumez.
1351 * Source/cmake/OptionsMac.cmake:
1353 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
1355 [EFL] Add OpenWebRTC in jhbuild
1356 https://bugs.webkit.org/show_bug.cgi?id=142778
1358 Reviewed by Gyuyoung Kim.
1360 Original patch by Philippe Normand <pnormand@igalia.com>
1362 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
1363 mediastream build is enabled.
1365 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
1367 [GTK] Add a configure option to build without Redirected XComposite Window
1368 https://bugs.webkit.org/show_bug.cgi?id=142865
1370 Reviewed by Žan Doberšek.
1372 The Redirected XComposite Window was added to support some
1373 features like GtkOverlay, but in cases where we don't need such
1374 features, it's more efficient to use the XID of the WebKitWebView
1375 window as the native surface handle for the accelerated
1376 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
1377 that is enabled by default for X11 target when OpenGL is enabled.
1379 * Source/cmake/OptionsGTK.cmake:
1381 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
1383 [GTK] Search for the Wayland dependency when enabling Wayland target
1384 https://bugs.webkit.org/show_bug.cgi?id=142876
1386 Reviewed by Carlos Garcia Campos.
1388 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
1389 requirement of either the GTK+ or GDK pkg-config files, so we have to
1390 search for it ourselves when WebKitGTK+ has been configured to support
1391 the Wayland windowing target.
1393 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1395 Unreviewed, kick the GTK bots to regenerate makefile.
1396 https://bugs.webkit.org/show_bug.cgi?id=137394
1398 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
1399 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
1401 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1403 Unreviewed, kick the GTK bots to regenerate makefile.
1404 https://bugs.webkit.org/show_bug.cgi?id=137394
1406 * Source/cmake/OptionsEfl.cmake:
1408 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
1410 [GTK] Fix inspector userinterface related incremental build issue
1411 https://bugs.webkit.org/show_bug.cgi?id=142849
1413 Reviewed by Carlos Garcia Campos.
1415 * Source/cmake/OptionsGTK.cmake: Revert r181733.
1417 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
1419 Unreviewed, kick the GTK bots to regenerate makefile.
1421 * Source/cmake/OptionsGTK.cmake:
1423 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
1425 [EFL] Expose JavaScript binding interface through ewk_extension
1426 https://bugs.webkit.org/show_bug.cgi?id=142033
1428 Reviewed by Gyuyoung Kim.
1430 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
1432 2015-03-17 Philippe Normand <pnormand@igalia.com>
1434 [GTK] basic OpenWebRTC build support
1435 https://bugs.webkit.org/show_bug.cgi?id=142393
1437 Reviewed by Carlos Garcia Campos.
1439 * Source/cmake/FindOpenWebRTC.cmake: Added.
1440 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
1441 mediastream build is enabled.
1443 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1445 [CMake][EFL] Build test tools only for developer mode
1446 https://bugs.webkit.org/show_bug.cgi?id=142761
1448 Reviewed by Csaba Osztrogonác.
1450 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
1452 * Source/cmake/OptionsEfl.cmake:
1453 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
1454 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
1455 * Source/cmakeconfig.h.cmake:
1457 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
1459 Enable ES6 classes by default
1460 https://bugs.webkit.org/show_bug.cgi?id=142774
1462 Reviewed by Gavin Barraclough.
1464 * Source/cmake/WebKitFeatures.cmake:
1466 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1468 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
1469 https://bugs.webkit.org/show_bug.cgi?id=142722
1471 Reviewed by Csaba Osztrogonác.
1473 Categorize to define cmake variables, to find necessary packages,
1474 use upper case for "glib_conponents" cmake variable name, re-arrange
1475 wrong alphabet sorting, and so on.
1477 * CMakeLists.txt: Remove WinCE port.
1478 * Source/cmake/OptionsEfl.cmake:
1480 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1482 [GStreamer] share GL context in pipeline
1483 https://bugs.webkit.org/show_bug.cgi?id=142693
1485 Reviewed by Philippe Normand.
1487 Add search of gstreamer-gl library in the GStreamer installation. If
1488 it is found, WTF_USE_GSTREAMER_GL macro is defined.
1490 * Source/cmake/FindGStreamer.cmake:
1491 * Source/cmake/OptionsGTK.cmake:
1493 2015-03-13 Alex Christensen <achristensen@webkit.org>
1495 Progress towards CMake on Mac.
1496 https://bugs.webkit.org/show_bug.cgi?id=142680
1498 Reviewed by Gyuyoung Kim.
1501 * Source/PlatformMac.cmake: Added stub.
1502 * Source/cmake/OptionsMac.cmake:
1503 Change defines to get CMake working.
1505 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1507 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
1508 https://bugs.webkit.org/show_bug.cgi?id=126688
1510 Reviewed by Gustavo Noronha Silva.
1512 Add ENABLE_MINIBROWSER option, enabled by default for development
1513 builds and disabled for production builds unless explicilty enabled.
1515 * Source/cmake/OptionsGTK.cmake:
1517 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1519 [GTK] Do not look for child processes in the UI process binary path
1520 https://bugs.webkit.org/show_bug.cgi?id=135752
1522 Reviewed by Gustavo Noronha Silva.
1524 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
1525 build for development builds.
1527 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
1529 [GTK] Add a configure option to build with OpenGL ES 2
1530 https://bugs.webkit.org/show_bug.cgi?id=142498
1532 Reviewed by Martin Robinson.
1534 Add ENABLE_GLES2 option. It's disabled by default, but if passed
1535 GLES2 is required and OpenGL is not even searched. Otherwise we
1536 search for OpenGL as usual, using it only if present.
1538 * Source/cmake/OptionsGTK.cmake:
1540 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
1542 [cmake] Handle unused parameter warnings as build errors except in WebKit2
1543 https://bugs.webkit.org/show_bug.cgi?id=142338
1545 Reviewed by Gyuyoung Kim.
1547 * Source/cmake/WebKitHelpers.cmake:
1549 2015-03-03 Daniel Bates <dabates@apple.com>
1551 Convert ManualTests/svg-tooltip.svg to a DRT test
1552 https://bugs.webkit.org/show_bug.cgi?id=140480
1554 Reviewed by Alex Christensen.
1556 * ManualTests/svg-tooltip.svg: Removed.
1558 2015-03-02 Debarshi Ray <debarshir@gnome.org>
1560 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
1561 https://bugs.webkit.org/show_bug.cgi?id=142165
1563 Reviewed by Carlos Garcia Campos.
1565 * Source/cmake/gtksymbols.filter:
1567 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
1569 [EFL] Remove unnecessary comment after r179110
1570 https://bugs.webkit.org/show_bug.cgi?id=142042
1572 Reviewed by Gyuyoung Kim.
1574 * Source/cmake/OptionsEfl.cmake:
1576 2015-02-23 Tomas Popela <tpopela@redhat.com>
1578 [GTK] Fails to compile with cmake 3.2.x
1579 https://bugs.webkit.org/show_bug.cgi?id=141796
1581 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
1582 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
1583 added and the build will fail.
1585 Reviewed by Martin Robinson.
1587 * Source/cmake/OptionsGTK.cmake:
1589 2015-02-20 Alexey Proskuryakov <ap@apple.com>
1591 Remove svn:keywords property.
1593 As far as I can tell, the property had no effect on any of these files, but also,
1594 when it has effect it's likely harmful.
1596 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
1597 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
1598 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
1599 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
1600 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
1601 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
1602 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
1603 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
1604 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
1605 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
1606 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
1607 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
1608 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
1609 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
1611 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1613 [CMAKE] Remove CMakeLists.txt in WK1 port
1614 https://bugs.webkit.org/show_bug.cgi?id=141617
1616 Reviewed by Anders Carlsson.
1618 Nobody uses CMake in WK1 port. Remove it.
1622 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
1624 Unreviewed, remove empty directories.
1626 * ManualTests/qt: Removed.
1628 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1630 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
1631 https://bugs.webkit.org/show_bug.cgi?id=141481
1633 Reviewed by Csaba Osztrogonác.
1635 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
1637 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1639 [EFL][GTK] Use bmalloc instead of tcmalloc
1640 https://bugs.webkit.org/show_bug.cgi?id=140162
1642 Reviewed by Carlos Garcia Campos.
1644 Add bmalloc directory to build list.
1646 * CMakeLists.txt: Define BMALLOC_DIR directory.
1647 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
1649 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
1651 [GTK] Add default color chooser implementation using GtkColorChooserDialog
1652 https://bugs.webkit.org/show_bug.cgi?id=141392
1654 Reviewed by Gustavo Noronha Silva.
1656 Enable INPUT_TYPE_COLOR by default for GTK+ port.
1658 * Source/cmake/OptionsGTK.cmake:
1660 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
1662 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
1663 https://bugs.webkit.org/show_bug.cgi?id=141328
1665 Reviewed by Darin Adler.
1667 Added as manual test because it involves a huge grid allocation
1668 which is very slow on Debug bots, the only ones capable to trigger
1671 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
1673 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
1675 [Streams API] Implement a barebone ReadableStream interface
1676 https://bugs.webkit.org/show_bug.cgi?id=141045
1678 Reviewed by Benjamin Poulain.
1680 * Source/cmake/WebKitFeatures.cmake:
1681 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
1683 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1685 Revert accidental change in r179490.
1689 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1691 Unreviewed, revert accidental change to Makefile.shared in r179478
1695 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1697 [CMake] Minimum python version should be 2.7.
1698 https://bugs.webkit.org/show_bug.cgi?id=140997
1700 Reviewed by Csaba Osztrogonác.
1704 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1706 Apply feTurbulence spec change to fix zero length vector generation
1707 https://bugs.webkit.org/show_bug.cgi?id=140812
1709 Reviewed by Darin Adler.
1711 Recently a bug with the turbulence algorithm was corrected in the
1712 Filter Effects specification.
1713 For some seed values this bug allowed zero length vectors to be generated.
1714 This resulted in large solid color squares being present in the generated image.
1715 The feTurbulence algorithm was updated to reject zero length vectors. This patch
1716 applies that change in WebCore.
1718 Test: svg/filters/feTurbulence_bad_seeds.html
1720 * platform/graphics/filters/FETurbulence.cpp:
1721 (WebCore::FETurbulence::initPaint):
1722 Added rejection sampling during vector generation to avoid zero length vectors.
1724 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1726 [cmake] Remove compiler version calculate cruft
1727 https://bugs.webkit.org/show_bug.cgi?id=140885
1729 Reviewed by Darin Adler.
1731 * Source/cmake/WebKitHelpers.cmake:
1733 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1735 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
1736 https://bugs.webkit.org/show_bug.cgi?id=140886
1738 Reviewed by Žan Doberšek.
1740 * Source/cmake/WebKitHelpers.cmake:
1742 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
1744 [GTK] gtkdoc does not appear in DevHelp
1745 https://bugs.webkit.org/show_bug.cgi?id=139369
1747 Reviewed by Philippe Normand.
1749 Expect the gtkdoc to be generated in folders named with the API version.
1751 * Source/PlatformGTK.cmake:
1753 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
1755 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
1756 https://bugs.webkit.org/show_bug.cgi?id=140609
1758 Reviewed by Csaba Osztrogonác.
1760 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
1761 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
1762 compilation flags. Those were added after the jsCStack branch merge, but
1763 can now be removed since the -ftree-dce issues were fixed in GCC, and
1764 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
1766 * Source/cmake/OptionsEfl.cmake:
1767 * Source/cmake/OptionsGTK.cmake:
1769 2015-01-26 Commit Queue <commit-queue@webkit.org>
1771 Unreviewed, rolling out r179107.
1772 https://bugs.webkit.org/show_bug.cgi?id=140880
1774 The GCC in the bots doesn't support the AsyncTask
1775 implementation (Requested by KaL on #webkit).
1779 "[GTK] Enable IndexedDB"
1780 https://bugs.webkit.org/show_bug.cgi?id=98932
1781 http://trac.webkit.org/changeset/179107
1783 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
1785 [GTK] Enable IndexedDB
1786 https://bugs.webkit.org/show_bug.cgi?id=98932
1788 Reviewed by Žan Doberšek.
1790 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1791 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1793 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
1795 [GTK] Add initial database process support
1796 https://bugs.webkit.org/show_bug.cgi?id=139491
1798 Reviewed by Sergio Villar Senin.
1800 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
1802 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
1804 Add a build flag for ES6 class syntax
1805 https://bugs.webkit.org/show_bug.cgi?id=140760
1807 Reviewed by Michael Saboff.
1809 * Source/cmake/WebKitFeatures.cmake:
1810 * Source/cmakeconfig.h.cmake:
1812 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1814 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
1815 https://bugs.webkit.org/show_bug.cgi?id=140049
1817 Reviewed by Gyuyoung Kim.
1819 * Source/cmake/OptionsCommon.cmake:
1821 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1823 Remove ENABLE(INSPECTOR) ifdef guards
1824 https://bugs.webkit.org/show_bug.cgi?id=140668
1826 Reviewed by Darin Adler.
1828 * Source/PlatformEfl.cmake:
1829 * Source/cmake/OptionsEfl.cmake:
1830 * Source/cmake/OptionsGTK.cmake:
1831 * Source/cmake/OptionsMac.cmake:
1832 * Source/cmake/WebKitFeatures.cmake:
1833 * Source/cmakeconfig.h.cmake:
1835 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
1837 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
1839 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1841 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1843 [CMAKE] Fix cmake warning
1844 https://bugs.webkit.org/show_bug.cgi?id=140497
1846 Reviewed by Gustavo Noronha Silva.
1848 r173155 already tried to fix cmake warning though, the warning is still exist.
1849 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
1850 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
1851 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
1852 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
1853 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
1857 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
1859 [GTK] Generate the make dist manifest from a CMake template file
1860 https://bugs.webkit.org/show_bug.cgi?id=139387
1862 Reviewed by Martin Robinson.
1864 Generate manifest.txt from manifest.txt.in. Only expose the dist and
1865 distcheck targets for developer builds, as they won't work when
1866 building from a tarball because the manifest is not distributed.
1868 * Source/PlatformGTK.cmake:
1870 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
1872 Remove ENABLE(SQL_DATABASE) guards
1873 https://bugs.webkit.org/show_bug.cgi?id=140434
1875 Reviewed by Darin Adler.
1877 * Source/cmake/OptionsMac.cmake:
1878 * Source/cmake/WebKitFeatures.cmake:
1879 * Source/cmakeconfig.h.cmake:
1881 2015-01-11 Sam Weinig <sam@webkit.org>
1883 Remove support for SharedWorkers
1884 https://bugs.webkit.org/show_bug.cgi?id=140344
1886 Reviewed by Anders Carlsson.
1888 * Source/cmake/OptionsEfl.cmake:
1889 * Source/cmake/OptionsGTK.cmake:
1890 * Source/cmake/OptionsMac.cmake:
1891 * Source/cmake/WebKitFeatures.cmake:
1892 * Source/cmakeconfig.h.cmake:
1894 2015-01-10 Dan Bernstein <mitz@apple.com>
1896 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
1897 https://bugs.webkit.org/show_bug.cgi?id=140339
1899 Reviewed by Mark Rowe.
1901 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
1902 prevents unnecessary rebuilding due to PATH differences.
1904 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
1906 [GTK][ThreadedCompositor] Add support for threaded compositor.
1907 https://bugs.webkit.org/show_bug.cgi?id=118265
1909 Reviewed by Martin Robinson.
1911 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
1912 autotools build systems. The feature is disabled by default.
1913 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
1914 from the feature flags.
1916 * Source/cmake/OptionsEfl.cmake:
1917 * Source/cmake/OptionsGTK.cmake:
1918 * Source/cmake/WebKitFeatures.cmake:
1919 * Source/cmakeconfig.h.cmake:
1921 2014-12-23 Alexey Proskuryakov <ap@apple.com>
1923 Simplify building with ASan
1924 https://bugs.webkit.org/show_bug.cgi?id=139916
1926 Reviewed by Mark Rowe.
1928 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
1930 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
1932 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
1934 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1936 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
1938 Null dereference performing a "TapAndAHalf" gesture in Google search field
1940 <https://bugs.webkit.org/show_bug.cgi?id=139506>
1941 <rdar://problem/19028828>
1943 Reviewed by Darin Adler.
1945 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
1947 2014-12-10 Dean Jackson <dino@apple.com>
1949 Blur filter performance test doesn't provide results
1950 https://bugs.webkit.org/show_bug.cgi?id=139462
1952 Reviewed by Sam Weinig.
1954 This can't currently work under our performance test
1955 infrastructure. Move it to a manual test to avoid
1956 putting FAILures into the results.
1958 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
1960 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1962 [GTK][WK2] Add HTML5 Notifications support
1963 https://bugs.webkit.org/show_bug.cgi?id=61140
1965 Reviewed by Carlos Garcia Campos.
1967 * Source/cmake/FindLibNotify.cmake: Added.
1968 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
1969 libnotify and use it for a default implementation when found.
1971 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
1973 REGRESSION(r155906): Page content disappears on Tuaw article after loading
1974 https://bugs.webkit.org/show_bug.cgi?id=138100
1976 Reviewed by Simon Fraser.
1978 DRT causes an extra paint which makes it impossible to test this with
1981 * ManualTests/float-layer-not-painting.html: Added.
1983 2014-12-07 Alberto Garcia <berto@igalia.com>
1985 [GTK] WebKit has a new required dependency on GnuTLS
1986 https://bugs.webkit.org/show_bug.cgi?id=136158
1988 Reviewed by Martin Robinson.
1990 Detect if GnuTLS is installed and enable or disable subtle crypto
1991 support accordingly.
1993 * Source/cmake/OptionsGTK.cmake:
1995 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
1997 [GTK] Missing API detected in GObject DOM bindings after r176630
1998 https://bugs.webkit.org/show_bug.cgi?id=139201
2000 Reviewed by Gustavo Noronha Silva.
2002 Change GENERATE_BINDINGS macro to receive a list of optional
2003 additional dependencies, so that we can add more dependecies
2004 without having to change the macro.
2006 * Source/cmake/WebKitMacros.cmake:
2008 2014-12-05 Simon Fraser <simon.fraser@apple.com>
2010 Programmatic scrolling and content changes are not always synchronized
2011 https://bugs.webkit.org/show_bug.cgi?id=139245
2012 rdar://problem/18833612
2014 Reviewed by Anders Carlsson.
2016 Manual test that tries to sync layout with programmatic scrolling.
2018 * ManualTests/programmatic-scroll-flicker.html: Added.
2020 2014-12-04 Alberto Garcia <berto@igalia.com>
2022 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
2023 https://bugs.webkit.org/show_bug.cgi?id=136576
2025 Reviewed by Carlos Garcia Campos.
2027 CMake should complain if Accelerated 2D Canvas is explicitly
2028 enabled but cairo-gl is not found.
2030 * Source/cmake/OptionsGTK.cmake:
2032 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2034 [EFL] Add subtle crypto to the build system
2035 https://bugs.webkit.org/show_bug.cgi?id=138612
2037 Reviewed by Csaba Osztrogonác.
2039 * Source/cmake/OptionsEfl.cmake:
2041 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2043 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
2044 https://bugs.webkit.org/show_bug.cgi?id=139085
2046 Reviewed by Andreas Kling.
2048 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
2049 * Source/cmake/WebKitFeatures.cmake: ditto.
2050 * Source/cmakeconfig.h.cmake: ditto.
2052 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
2054 [EFL] Drop support for the EFL 1.7
2055 https://bugs.webkit.org/show_bug.cgi?id=139114
2057 Reviewed by Gyuyoung Kim.
2059 * Source/cmake/EFLHelpers.cmake: Removed.
2060 * Source/cmake/FindEcore.cmake: Removed.
2061 * Source/cmake/FindEdje.cmake: Removed.
2062 * Source/cmake/FindEet.cmake: Removed.
2063 * Source/cmake/FindEeze.cmake: Removed.
2064 * Source/cmake/FindEfreet.cmake: Removed.
2065 * Source/cmake/FindEina.cmake: Removed.
2066 * Source/cmake/FindElementary.cmake: Removed.
2067 * Source/cmake/FindEvas.cmake: Removed.
2068 * Source/cmake/OptionsEfl.cmake:
2070 2014-11-28 Philippe Normand <pnormand@igalia.com>
2072 [CMake] Build failure against GStreamer git master
2073 https://bugs.webkit.org/show_bug.cgi?id=138872
2075 Reviewed by Csaba Osztrogon.
2077 * Source/cmake/FindGStreamer.cmake: Simplified the
2078 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
2079 headers lookup, there's no need to do this manually. Also
2080 explicitely check the version specified in GStreamer_FIND_VERSION.
2082 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
2084 [EFL] Remove E_Dbus dependency
2085 https://bugs.webkit.org/show_bug.cgi?id=136355
2087 Reviewed by Gyuyoung Kim.
2089 * Source/cmake/FindE_DBus.cmake: Removed.
2090 * Source/cmake/OptionsEfl.cmake:
2092 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
2094 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2096 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2098 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
2100 [CMake] Use ld.gold if it is available to speedup builds
2101 https://bugs.webkit.org/show_bug.cgi?id=137953
2103 Reviewed by Carlos Garcia Campos.
2105 * Source/cmake/OptionsCommon.cmake:
2107 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
2109 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
2110 https://bugs.webkit.org/show_bug.cgi?id=138840
2112 Reviewed by Csaba Osztrogonác.
2114 * Source/cmake/OptionsCommon.cmake:
2116 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
2118 Remove Source/Platform cruft
2119 https://bugs.webkit.org/show_bug.cgi?id=138658
2121 Reviewed by Anders Carlsson.
2124 * Source/Platform: Removed.
2126 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
2128 Enable Cortex-A53-specific code paths by default if core is detected.
2129 https://bugs.webkit.org/show_bug.cgi?id=138499
2131 Reviewed by Csaba Osztrogonác.
2133 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
2134 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
2137 Since on ARM64/Linux the part number that cpuinfo reports depends on
2138 the core the query is run on, the check is bound to and executed on the
2139 available cores one by one.
2141 * Source/cmake/OptionsCommon.cmake:
2143 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2145 [EFL] Remove unnecessary version check from OptionsEfl.cmake
2146 https://bugs.webkit.org/show_bug.cgi?id=138498
2148 Reviewed by Csaba Osztrogonác.
2150 * Source/cmake/OptionsEfl.cmake:
2152 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2154 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
2155 https://bugs.webkit.org/show_bug.cgi?id=138465
2157 Reviewed by Gyuyoung Kim.
2159 * Source/cmake/OptionsEfl.cmake:
2161 2014-11-03 Dean Jackson <dino@apple.com>
2163 Add ENABLE_FILTERS_LEVEL_2 feature guard.
2164 https://bugs.webkit.org/show_bug.cgi?id=138362
2166 Reviewed by Tim Horton.
2168 Add a new feature define for Level 2 of CSS Filters.
2169 http://dev.w3.org/fxtf/filters-2/
2171 * Source/cmake/OptionsEfl.cmake:
2172 * Source/cmake/OptionsGTK.cmake:
2173 * Source/cmake/OptionsMac.cmake:
2174 * Source/cmake/WebKitFeatures.cmake:
2175 * Source/cmakeconfig.h.cmake:
2177 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
2179 Workaround for Cortex-A53 erratum 835769
2180 https://bugs.webkit.org/show_bug.cgi?id=138315
2182 Reviewed by Filip Pizlo.
2184 This patch introduces CMake variable and preprocessor macro
2185 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
2186 code paths, if set true.
2188 * Source/cmake/OptionsCommon.cmake:
2189 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
2191 * Source/cmakeconfig.h.cmake:
2192 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
2194 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
2196 [GTK] Fix the build of FTL JIT
2197 https://bugs.webkit.org/show_bug.cgi?id=138298
2199 Reviewed by Carlos Garcia Campos.
2201 * Source/cmake/OptionsGTK.cmake:
2202 Remove the need for the LIBCXXABI package.
2204 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
2206 REGRESSION(CMake): Make it possible to build without introspection
2207 https://bugs.webkit.org/show_bug.cgi?id=138006
2209 Reviewed by Philippe Normand.
2211 Add ENABLE_INTROSPECTION option.
2213 * Source/PlatformGTK.cmake: Dot not add gir global target if
2214 introspection is disabled.
2215 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
2216 introspection is disabled.
2218 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
2220 [GTK] Support script message handlers WebKitUserContentManager
2221 https://bugs.webkit.org/show_bug.cgi?id=133730
2223 Reviewed by Carlos Garcia Campos.
2225 Support user script message handlers in WebKitUserContentManager.
2226 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
2227 an option is added to the CMake build files. The option is disabled
2228 globally by default, and the WebKitGTK port enables it. On the API
2229 level, two new methods to register and unregister names are provided
2230 in the "window.webkit" namespace, and on message reception the
2231 "WebKitUserContentManager::script-message-received" signal is
2232 emitted, using the registered names as signal detail.
2234 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
2235 ENABLE_USER_MESSAGE_HANDLERS feature by default.
2236 * Source/cmake/WebKitFeatures.cmake: Add feature description for
2237 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
2239 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
2241 [GTK] Bump libsoup's minimum version to 2.42.0.
2242 https://bugs.webkit.org/show_bug.cgi?id=138086
2244 Reviewed by Martin Robinson.
2246 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
2247 soup-version.h header was added to soup.h in 2.41.4, which then becomes
2248 the minimum version required to build the port these days.
2250 In addition, since the autotools build system required 2.42.0 before
2251 being retired, require the same version here. Version 2.42.0 was also
2253 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
2255 * Source/cmake/OptionsGTK.cmake:
2257 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2259 [EFL] Remove unnecessary defines from OptionsEfl.cmake
2260 https://bugs.webkit.org/show_bug.cgi?id=138132
2262 Reviewed by Csaba Osztrogonác.
2264 * Source/cmake/OptionsEfl.cmake:
2266 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
2268 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2270 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2272 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
2274 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
2275 https://bugs.webkit.org/show_bug.cgi?id=137946
2277 Reviewed by Gyuyoung Kim.
2279 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
2281 * Source/cmake/OptionsEfl.cmake:
2283 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2285 Fix FTL Native Inlining for EFL
2286 https://bugs.webkit.org/show_bug.cgi?id=137774
2288 Reviewed by Michael Saboff.
2290 Updated CMake for FTL Native Inlining.
2293 * Source/cmake/FindClang.cmake: Added.
2294 * Source/cmake/OptionsEfl.cmake:
2295 * Source/cmakeconfig.h.cmake:
2297 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
2299 Web Inspector: Generate all Inspector domains together in JavaScriptCore
2300 https://bugs.webkit.org/show_bug.cgi?id=137748
2302 Reviewed by Brian Burg.
2304 * Source/PlatformEfl.cmake:
2306 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
2308 [GTK] Add initial gestures support
2309 https://bugs.webkit.org/show_bug.cgi?id=137812
2311 Reviewed by Sergio Villar Senin.
2313 Check if the GTK+ version supports gestures or not.
2315 * Source/cmake/FindGTK3.cmake:
2316 * Source/cmake/OptionsGTK.cmake:
2318 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
2320 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
2321 https://bugs.webkit.org/show_bug.cgi?id=137781
2323 Reviewed by Martin Robinson.
2325 We used to enable smooth scrolling unconditionally in autotools
2326 (via WebKitFeatures.m4), but since the switch to CMake it's
2327 unconditionally disabled, so changing the setting doesn't have any
2330 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
2332 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
2334 Removing CUSTOM_PROTOCOLS guard
2335 https://bugs.webkit.org/show_bug.cgi?id=137741
2337 Reviewed by Benjamin Poulain.
2339 * Source/cmake/OptionsEfl.cmake:
2341 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
2343 [EFL] Enable WebP support.
2344 https://bugs.webkit.org/show_bug.cgi?id=136156
2346 Reviewed by Gyuyoung Kim.
2348 Add WebP package finding rule.
2350 * Source/cmake/OptionsEfl.cmake:
2352 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
2354 [EFL] Enable custom URI schemes with CustomProtocols
2355 https://bugs.webkit.org/show_bug.cgi?id=128177
2357 Reviewed by Gyuyoung Kim.
2359 Fixing ewk_context_url_scheme_register() ewebkit2 API
2360 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
2362 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
2364 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
2366 Bump version to 2.7.0
2367 https://bugs.webkit.org/show_bug.cgi?id=137301
2369 Rubber-stamped by Carlos Garcia Campos.
2371 * Source/cmake/OptionsGTK.cmake: Bump version numbers
2373 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2375 [EFL] Rename TEST_THEME_DIR macro
2376 https://bugs.webkit.org/show_bug.cgi?id=137244
2378 Reviewed by Csaba Osztrogonác.
2380 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
2382 2014-09-27 Dan Bernstein <mitz@apple.com>
2384 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
2385 https://bugs.webkit.org/show_bug.cgi?id=137053
2387 Reviewed by Mark Rowe.
2389 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2390 In the build pre-action, pass the --wksi and --llvm options to
2391 copy-webkitlibraries-to-product-directory.
2392 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
2394 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
2396 [GTK] Enable CSS_IMAGE_SET in production builds
2397 https://bugs.webkit.org/show_bug.cgi?id=137142
2399 Reviewed by Alejandro G. Castro.
2401 This is required by the inspector to show some of the icons that
2402 has a HiDPI variant.
2404 * Source/cmake/OptionsGTK.cmake:
2406 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
2408 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
2409 https://bugs.webkit.org/show_bug.cgi?id=136377
2411 Reviewed by Philippe Normand.
2413 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
2414 for CMake versions less than 3.
2416 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
2418 Remove WinCE port from trunk
2419 https://bugs.webkit.org/show_bug.cgi?id=136951
2421 Reviewed by Alex Christensen.
2423 * Source/cmake/OptionsWinCE.cmake: Removed.
2424 * Source/cmake/WebKitPackaging.cmake:
2426 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
2428 [EFL][GTK] Remove WebKit1 related codes
2429 https://bugs.webkit.org/show_bug.cgi?id=136853
2431 Reviewed by Csaba Osztrogonác.
2433 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
2436 * Source/PlatformGTK.cmake:
2438 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2441 https://bugs.webkit.org/show_bug.cgi?id=136820
2443 Reviewed by Csaba Osztrogonác.
2445 * Source/cmake/FindICU.cmake:
2447 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
2449 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
2450 https://bugs.webkit.org/show_bug.cgi?id=136814
2452 Reviewed by Philippe Normand.
2454 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
2455 We bundle the wayland-egl dependency with wayland-client and wayland-server
2456 and store the resulting variables with the WAYLAND_ prefix. Because of this
2457 this line wasn't exporting anything useful.
2459 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
2461 URTBF after r173574.
2463 * Source/cmake/WebKitMacros.cmake:
2465 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
2467 [JavaScriptCore] Fix FTL on platform EFL.
2468 https://bugs.webkit.org/show_bug.cgi?id=133571
2470 Reviewed by Filip Pizlo.
2474 * Source/cmake/FindLIBCXXABI.cmake: Removed.
2475 * Source/cmake/OptionsEfl.cmake:
2477 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2480 https://bugs.webkit.org/show_bug.cgi?id=136571
2482 Reviewed by Darin Adler.
2484 * Source/cmake/OptionsEfl.cmake:
2485 * Source/cmake/OptionsGTK.cmake:
2486 * Source/cmake/OptionsMac.cmake:
2487 * Source/cmake/WebKitFeatures.cmake:
2488 * Source/cmakeconfig.h.cmake:
2490 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2492 Remove CSS_FILTERS flag
2493 https://bugs.webkit.org/show_bug.cgi?id=136529
2495 Reviewed by Dirk Schulze.
2497 * Source/cmake/OptionsEfl.cmake:
2498 * Source/cmake/OptionsGTK.cmake:
2499 * Source/cmake/OptionsMac.cmake:
2500 * Source/cmake/WebKitFeatures.cmake:
2501 * Source/cmakeconfig.h.cmake:
2503 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2505 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
2506 https://bugs.webkit.org/show_bug.cgi?id=136194
2508 Reviewed by Csaba Osztrogonác.
2510 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
2514 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2516 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
2517 https://bugs.webkit.org/show_bug.cgi?id=135560
2519 Reviewed by Gyuyoung Kim.
2521 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
2523 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
2525 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
2526 https://bugs.webkit.org/show_bug.cgi?id=136343
2528 Reviewed by David Kilzer.
2530 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
2532 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2533 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2535 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
2537 [EFL] Share fast/speechsynthesis/ with other ports
2538 https://bugs.webkit.org/show_bug.cgi?id=136224
2540 Reviewed by Chris Fleizach.
2542 Enable WebSpeech for EFL.
2544 * Source/cmake/OptionsEfl.cmake:
2546 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
2548 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
2549 https://bugs.webkit.org/show_bug.cgi?id=136127
2551 Reviewed by Gyuyoung Kim.
2553 Add build support for espeak.
2555 * Source/cmake/FindEspeak.cmake: Added.
2556 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
2558 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
2560 [EFL] Build break using clang
2561 https://bugs.webkit.org/show_bug.cgi?id=136245
2563 Reviewed by Gyuyoung Kim.
2565 * Source/cmake/OptionsEfl.cmake:
2566 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
2567 Some warnings are from system libraries.
2569 2014-08-25 Alberto Garcia <berto@igalia.com>
2571 [GTK] Unify webkitgtk and webkit2gtk directories
2572 https://bugs.webkit.org/show_bug.cgi?id=136209
2574 Reviewed by Carlos Garcia Campos.
2576 Use webkit2gtk-X.X both for the process binaries and the injected
2579 * Source/cmake/OptionsGTK.cmake:
2581 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2583 [EFL] Move Efl specific code from Source/CMakeLists.txt
2584 https://bugs.webkit.org/show_bug.cgi?id=136206
2586 Reviewed by Gyuyoung Kim.
2588 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
2589 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
2591 * Source/CMakeLists.txt:
2592 * Source/cmake/OptionsEfl.cmake:
2594 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2596 [EFL] Introduce DEVELOPER_MODE
2597 https://bugs.webkit.org/show_bug.cgi?id=135884
2599 Reviewed by Gyuyoung Kim.
2601 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
2602 instead of SHARED_CORE.
2603 SHARED_CORE can reduce link time and memory consumption but it is slightly different
2604 from release binary.
2606 * Source/cmake/OptionsEfl.cmake:
2607 * Source/cmake/WebKitHelpers.cmake:
2608 Moved fvisibility=hidden to OptionsEfl.cmake
2610 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
2612 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
2613 https://bugs.webkit.org/show_bug.cgi?id=136110
2615 Reviewed by Gyuyoung Kim.
2617 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
2619 * Source/cmake/OptionsEfl.cmake:
2621 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2623 [EFL] Apply eflsymbols.filter to WebKit2
2624 https://bugs.webkit.org/show_bug.cgi?id=136148
2626 Reviewed by Csaba Osztrogonác.
2628 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
2629 in the eflsymbols.filter.
2631 * Source/cmake/OptionsEfl.cmake:
2632 * Source/cmake/eflsymbols.filter:
2634 2014-08-21 Zalan Bujtas <zalan@apple.com>
2636 Enable SATURATED_LAYOUT_ARITHMETIC.
2637 https://bugs.webkit.org/show_bug.cgi?id=136106
2639 Reviewed by Simon Fraser.
2641 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
2642 (No measurable performance regression on Mac.)
2644 * Source/cmake/OptionsMac.cmake:
2645 * Source/cmake/WebKitFeatures.cmake:
2646 * Source/cmakeconfig.h.cmake:
2648 2014-08-19 Zalan Bujtas <zalan@apple.com>
2650 Remove ENABLE(SUBPIXEL_LAYOUT).
2651 https://bugs.webkit.org/show_bug.cgi?id=136077
2653 Reviewed by Simon Fraser.
2655 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
2657 * Source/cmake/OptionsEfl.cmake:
2658 * Source/cmake/OptionsGTK.cmake:
2659 * Source/cmake/OptionsMac.cmake:
2660 * Source/cmake/WebKitFeatures.cmake:
2661 * Source/cmakeconfig.h.cmake:
2663 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
2665 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
2666 https://bugs.webkit.org/show_bug.cgi?id=135980
2668 Reviewed by Martin Robinson.
2670 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
2671 overrides any other disabled optimization that was prepended to these
2672 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
2673 lists first in the final list of compilation flags.
2675 To avoid -On re-enabling optimizations that we'd like to keep disabled,
2676 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
2678 * Source/cmake/OptionsCommon.cmake:
2679 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
2680 * Source/cmake/OptionsGTK.cmake:
2682 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2684 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
2686 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2688 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
2690 [GTK] Disable memory sampler on non-Linux system
2691 https://bugs.webkit.org/show_bug.cgi?id=134483
2693 Reviewed by Philippe Normand.
2695 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
2696 Linux because it uses many Linux-specific features, so we should disable
2697 memory sampler on other systems by default.
2699 * Source/cmake/OptionsGTK.cmake:
2701 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2703 [GTK] HTML API documentation should also be installed versioned
2704 https://bugs.webkit.org/show_bug.cgi?id=135970
2706 Reviewed by Philippe Normand.
2708 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
2711 2014-08-14 Tomas Popela <tpopela@redhat.com>
2713 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
2714 https://bugs.webkit.org/show_bug.cgi?id=135937
2716 Reviewed by Carlos Garcia Campos.
2720 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2722 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
2723 https://bugs.webkit.org/show_bug.cgi?id=135934
2725 Reviewed by Gustavo Noronha Silva.
2727 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
2728 The gir files should installed in $datadir/gir-1.0/ together with all other
2729 gir files. We don't need to install introspection files in a versioned
2730 directory because their filenames already contain the binary version. But before
2731 r171598, the files were only installed to the right directory if the
2732 gobject-instrospection pkg-config file was in the same prefix than the one we
2733 wanted to install, because the gir and typelibs directories were extracted from
2734 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
2735 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
2736 like we do in the autotools build.
2738 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
2739 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2740 * Source/cmake/OptionsGTK.cmake: Define
2741 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2743 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2745 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
2746 https://bugs.webkit.org/show_bug.cgi?id=135836
2748 Reviewed by Philippe Normand.
2750 * Source/PlatformGTK.cmake: Add install command to also install
2751 the GObject DOM bindings API docs.
2753 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
2755 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
2756 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
2757 re-set CMAKE_C_FLAGS with the new string. The two flags should really
2758 be appended to CMAKE_C_FLAGS and the same variable re-set with the
2761 * Source/cmake/OptionsCommon.cmake:
2763 2014-08-13 Alex Christensen <achristensen@webkit.org>
2765 Progress towards CMake on Mac.
2766 https://bugs.webkit.org/show_bug.cgi?id=135819
2768 Reviewed by Laszlo Gombos.
2770 * Source/cmake/OptionsMac.cmake:
2771 Disable some more features temporarily to get CMake working.
2772 * Source/cmake/WebKitMacros.cmake:
2773 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
2775 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2777 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
2778 https://bugs.webkit.org/show_bug.cgi?id=135798
2780 Reviewed by Philippe Normand.
2782 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
2784 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2785 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2786 https://bugs.webkit.org/show_bug.cgi?id=133317
2788 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2790 Reviewed by Philippe Normand.
2792 No new tests since no new functionality has been added.
2794 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2796 2014-08-11 Commit Queue <commit-queue@webkit.org>
2798 Unreviewed, rolling out r172393.
2799 https://bugs.webkit.org/show_bug.cgi?id=135796
2801 discussion needed about GnuTLS version bump on the bots
2802 (Requested by philn on #webkit).
2806 https://bugs.webkit.org/show_bug.cgi?id=133317
2807 http://trac.webkit.org/changeset/172393
2809 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2810 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2811 https://bugs.webkit.org/show_bug.cgi?id=133317
2813 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2815 Reviewed by Philippe Normand.
2817 No new tests since no new functionality has been added.
2819 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2821 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2823 [GTK] Adds stubs for all subtle crypto algorithm implemntations
2824 https://bugs.webkit.org/show_bug.cgi?id=133316
2826 Reviewed by Philippe Normand.
2828 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
2829 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
2830 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
2832 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
2834 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
2836 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2838 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2840 [GTK] REGRESSION(r166239): The ld version script is not being used
2841 https://bugs.webkit.org/show_bug.cgi?id=135694
2843 Reviewed by Martin Robinson.
2845 Move the symbols filter file from Tools/gtk to Source/cmake and rename
2846 it as gtksymbols.filter. Also updated it, since some of the symbols
2847 exported were renamed.
2849 * Source/cmake/OptionsGTK.cmake:
2850 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
2852 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2854 [GTK] Child processes should be installed in a versioned directory
2855 https://bugs.webkit.org/show_bug.cgi?id=135754
2857 Reviewed by Gustavo Noronha Silva.
2859 Define LIBEXEC_INSTALL_DIR as
2860 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
2861 so that the child processes are installed in $libexec/webkitgtk-4.0.
2862 This makes it possible to install 2.6 in parallel to older versions.
2864 * Source/cmake/OptionsGTK.cmake:
2866 2014-08-08 Alex Christensen <achristensen@webkit.org>
2868 Progress towards using CMake on Mac.
2869 https://bugs.webkit.org/show_bug.cgi?id=135662
2871 Reviewed by Laszlo Gombos.
2874 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
2875 * Source/cmake/WebKitFeatures.cmake:
2876 * Source/cmakeconfig.h.cmake:
2877 Added features that are needed by the Mac port.
2878 * Source/cmake/OptionsMac.cmake:
2879 Enable CSS_IMAGE_SET based on FeatureDefines.h.
2880 Disable the FTL with CMake for now.
2881 * Source/cmake/OptionsEFL.cmake:
2882 * Source/cmake/OptionsGTK.cmake:
2883 Enable subpixel layout to not conflict with FeatureDefines.h
2885 2014-08-08 Simon Fraser <simon.fraser@apple.com>
2887 Undo some erroneous changes to the Xcode scheme files from r172259.
2889 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2890 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2892 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
2894 [CMake] Drop the required version of CMake down to 2.8.8
2895 https://bugs.webkit.org/show_bug.cgi?id=135713
2897 Reviewed by Alex Christensen.
2899 * CMakeLists.txt: Require CMake 2.8.8.
2901 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
2903 Get rid of INPUT_SPEECH
2904 https://bugs.webkit.org/show_bug.cgi?id=135672
2906 Reviewed by Andreas Kling.
2908 * Source/cmake/OptionsMac.cmake:
2909 * Source/cmake/WebKitFeatures.cmake:
2910 * Source/cmakeconfig.h.cmake:
2912 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
2914 [GTK] Disable IndexedDB
2915 https://bugs.webkit.org/show_bug.cgi?id=135692
2917 Reviewed by Carlos Garcia Campos.
2919 * Source/cmake/OptionsGTK.cmake:
2921 2014-08-06 Dean Jackson <dino@apple.com>
2923 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
2924 https://bugs.webkit.org/show_bug.cgi?id=135675
2926 Reviewed by Sam Weinig.
2928 * Source/cmake/OptionsGTK.cmake:
2929 * Source/cmake/OptionsMac.cmake:
2930 * Source/cmake/WebKitFeatures.cmake:
2931 * Source/cmakeconfig.h.cmake:
2933 2014-08-06 David Farler <dfarler@apple.com>
2935 Unreviewed build fix: Make includes semicolon in assignment.
2937 * Makefile.shared: Remove a ;
2939 2014-08-06 David Farler <dfarler@apple.com>
2941 Set DSYMUTIL_NUM_THREADS to the number of logical cores
2942 https://bugs.webkit.org/show_bug.cgi?id=135655
2944 Reviewed by Mark Rowe.
2946 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
2948 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
2950 [GTK] Be able to disable gtk2 dependency
2951 https://bugs.webkit.org/show_bug.cgi?id=135505
2953 Reviewed by Gustavo Noronha Silva.
2955 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
2956 required when it's enabled. It's enabled by default.
2958 * Source/cmake/OptionsGTK.cmake:
2960 2014-08-05 Alex Christensen <achristensen@webkit.org>
2963 https://bugs.webkit.org/show_bug.cgi?id=135620
2965 Reviewed by Laszlo Gombos.
2967 * Source/cmake/OptionsMac.cmake:
2968 Use UDIS86 by default on Mac.
2970 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
2972 Add a flag for the CSS Selectors level 4 implementation
2973 https://bugs.webkit.org/show_bug.cgi?id=135535
2975 Reviewed by Andreas Kling.
2977 * Source/cmake/OptionsEfl.cmake:
2978 * Source/cmake/OptionsGTK.cmake:
2979 * Source/cmake/WebKitFeatures.cmake:
2980 * Source/cmakeconfig.h.cmake:
2982 2014-08-04 Alex Christensen <achristensen@webkit.org>
2984 Progress towards CMake on Mac.
2985 https://bugs.webkit.org/show_bug.cgi?id=135528
2987 Reviewed by Gyuyoung Kim.
2989 * Source/cmake/OptionsMac.cmake:
2990 Made options list based on FeatureDefines.xcconfig files.
2992 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2994 [GTK] Windowing target support should reflect the support in the GTK+ dependency
2995 https://bugs.webkit.org/show_bug.cgi?id=134736
2997 Reviewed by Martin Robinson.
2999 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
3000 support the X11 or Wayland windowing targets -- instead, if there's no support
3001 the specific target is disabled, and an error is thrown only if neither of the
3002 backends is enabled at the end..
3003 For now the X11 target remains enabled by default, and the Wayland target is
3004 kept disabled. Once it's possible to have both targets enabled at runtime in
3005 WebKit, the Wayland target will be enabled as well and we'll leave it to the
3006 GTK+ dependency to determine which targets can be enabled.
3008 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3010 [CMake] Add FindWayland.cmake
3011 https://bugs.webkit.org/show_bug.cgi?id=135540
3013 Reviewed by Martin Robinson.
3015 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
3016 dependency. For now bundles the wayland-client, wayland-server and
3017 wayland-egl pkg-config targets into one dependency, but these could
3018 be split in the future if necessary.
3020 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
3022 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
3023 https://bugs.webkit.org/show_bug.cgi?id=135553
3025 Reviewed by Gyuyoung Kim.
3027 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
3028 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
3030 * Source/cmake/OptionsEfl.cmake:
3032 2014-08-01 Bear Travis <betravis@adobe.com>
3034 [Feature Queries] Enable Feature Queries on EFL/GTK
3035 https://bugs.webkit.org/show_bug.cgi?id=134902
3037 Reviewed by Benjamin Poulain.
3039 Enable CSS Feature Queries by default on the EFL and GTK
3042 * Source/cmake/OptionsEfl.cmake:
3043 * Source/cmake/OptionsGTK.cmake:
3045 2014-08-01 Alex Christensen <achristensen@webkit.org>
3047 Progress towards cmake on Windows.
3048 https://bugs.webkit.org/show_bug.cgi?id=135484
3050 Reviewed by Martin Robinson.
3053 Added Mac to list of ports, even though it is not done yet.
3054 Changed minimum bison version to version installed on Macs.
3055 * Source/cmake/OptionsAppleWin.cmake:
3056 Added some definitions.
3057 * Source/cmake/OptionsEfl.cmake:
3058 * Source/cmake/OptionsGTK.cmake:
3059 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
3060 * Source/cmake/OptionsMac.cmake: Added blank for now.
3061 * Source/cmake/OptionsWinCairo.cmake:
3062 * Source/cmake/OptionsWindows.cmake:
3063 Added some definitions.
3064 Removed /WX (warnings treated as error while compiling).
3065 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
3067 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
3069 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
3070 https://bugs.webkit.org/show_bug.cgi?id=135501
3072 Reviewed by Gyuyoung Kim.
3074 Use PROJECT_VERSION_MICRO instead.
3076 * Source/cmake/OptionsEfl.cmake:
3077 * Source/cmake/OptionsGTK.cmake:
3078 * Source/cmake/WebKitHelpers.cmake:
3080 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
3082 [EFL] Bump ewebkit version to 1.11
3083 https://bugs.webkit.org/show_bug.cgi?id=135487
3085 Reviewed by Gyuyoung Kim.
3087 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
3089 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
3091 [EFL] Add support for building with Geoclue2.
3092 https://bugs.webkit.org/show_bug.cgi?id=135455
3094 Reviewed by Gyuyoung Kim.
3096 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
3099 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3101 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
3103 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3105 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3107 [GTK] Bump binary version for 2.6
3108 https://bugs.webkit.org/show_bug.cgi?id=133724
3110 Reviewed by Philippe Normand.
3112 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
3113 update library version numbers.
3115 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
3117 [CMake] Bump the minimum required version
3118 https://bugs.webkit.org/show_bug.cgi?id=135382
3120 Reviewed by Gyuyoung Kim.
3122 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
3123 we introduced usage of target_include_directories().
3125 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
3127 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
3128 https://bugs.webkit.org/show_bug.cgi?id=135376
3130 Reviewed by Gyuyoung Kim.
3132 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
3134 * Source/cmake/OptionsEfl.cmake:
3135 * Source/cmake/OptionsGTK.cmake:
3137 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
3139 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
3140 https://bugs.webkit.org/show_bug.cgi?id=135288
3142 Reviewed by Martin Robinson.
3144 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
3145 datadir to pkgconfig
3146 * Source/cmake/OptionsGTK.cmake: define install directories early
3147 enough to be used in FindGObjectIntrospection.cmake
3149 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
3151 Remove CSS_EXCLUSIONS compile flag and leftover code
3152 https://bugs.webkit.org/show_bug.cgi?id=135175
3154 Reviewed by Zoltan Horvath.
3156 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
3157 stubs. This removes the flag and the useless code.
3159 * Source/cmake/WebKitFeatures.cmake:
3160 * Source/cmakeconfig.h.cmake:
3162 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
3164 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
3165 https://bugs.webkit.org/show_bug.cgi?id=135114
3167 Fix build with GStreamer 1.4
3169 Reviewed by Philippe Normand.
3171 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
3172 gst-mpegts component instead of the unstable 1.3.x verstions.
3174 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
3176 [GTK] Simplify make-dist command line arguments
3177 https://bugs.webkit.org/show_bug.cgi?id=134832
3179 Reviewed by Martin Robinson.
3181 * Source/PlatformGTK.cmake: Use --version instead of
3182 --tarball-root when running make-dist.py.
3184 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
3186 Add a manual test for r135044
3188 <https://bugs.webkit.org/show_bug.cgi?id=135044>
3190 Rubber-stamped by Andy Estes.
3192 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
3194 2014-07-18 Dana Burkart <dburkart@apple.com>
3196 Add a new 'analyze' target to the makefile. This will make use of a new
3197 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
3199 https://bugs.webkit.org/show_bug.cgi?id=135057
3200 <rdar://problem/10193187>
3202 Reviewed by David Kilzer.
3208 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
3210 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
3211 https://bugs.webkit.org/show_bug.cgi?id=134963
3213 Reviewed by Gyuyoung Kim.
3215 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
3217 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
3219 2014-07-14 Daniel Bates <dabates@apple.com>
3221 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
3222 https://bugs.webkit.org/show_bug.cgi?id=134905
3223 <rdar://problem/16602779>
3225 Reviewed by Simon Fraser.
3227 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
3228 on the tapped element when processing a touchend as a result of finger pressing and releasing
3229 on the same element that is initially positioned outside the visible content area.
3231 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
3233 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
3235 [GTK] Enable VIDEO_TRACK by default
3236 https://bugs.webkit.org/show_bug.cgi?id=134801
3238 Reviewed by Philippe Normand.
3240 * Source/cmake/OptionsGTK.cmake:
3242 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3244 [GTK][CMake] Add a 'distcheck' target
3245 https://bugs.webkit.org/show_bug.cgi?id=130675
3247 Reviewed by Gustavo Noronha Silva.
3249 * Source/PlatformGTK.cmake: Add distcheck target.
3251 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3253 [GTK] Use the same default options for production builds that previous stable releases
3254 https://bugs.webkit.org/show_bug.cgi?id=134589
3256 Reviewed by Martin Robinson.
3258 Change the default value of some features to match our stable releases.
3259 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
3260 canvas depend on whether cairo-gl is found.
3262 * Source/cmake/FindCairoGL.cmake: Added.
3263 * Source/cmake/OptionsGTK.cmake:
3265 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
3267 [EFL] Support Encrypted Media Extensions.
3268 https://bugs.webkit.org/show_bug.cgi?id=134750
3270 Reviewed by Gyuyoung Kim.
3272 Webkit needs to play encrypted media contents when media player
3273 is played by Media source extensions and normal video procedure.
3275 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
3277 2014-07-08 Alex Christensen <achristensen@webkit.org>
3279 Steps towards CMake on Windows.
3280 https://bugs.webkit.org/show_bug.cgi?id=134716
3282 Reviewed by Martin Robinson.
3285 Added AppleWin and WinCairo to list of CMake ports.
3286 * Source/cmake/OptionsAppleWin.cmake: Added.
3287 * Source/cmake/OptionsWinCairo.cmake: Added.
3288 * Source/cmake/OptionsWindows.cmake:
3289 Windows needs to use the system malloc. Other options to come.
3291 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3293 [EFL] Support Geolocation
3294 https://bugs.webkit.org/show_bug.cgi?id=134439
3296 Reviewed by Antonio Gomes.
3298 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
3300 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3302 Broken build with build-webkit --no-video
3303 https://bugs.webkit.org/show_bug.cgi?id=134587
3305 Reviewed by Darin Adler.
3307 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
3309 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
3311 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
3313 [GTK] The list of features shown by cmake is not accurate
3314 https://bugs.webkit.org/show_bug.cgi?id=134588
3316 Reviewed by Gustavo Noronha Silva.
3318 The problem is that some options might change after the feature
3319 list has been printed.
3321 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
3322 setting the default values of features and set WEBGL value
3323 depending on the dependencies, and API_TEST depending on whether
3324 developer mode is enabled or not.
3326 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3328 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
3329 https://bugs.webkit.org/show_bug.cgi?id=134578
3331 Reviewed by Gyuyoung Kim.
3333 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
3334 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
3335 disable related option if it is not ON.
3337 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
3338 * Source/cmake/OptionsGTK.cmake: Ditto.
3339 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
3341 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
3343 [GTK] make dist is broken
3344 https://bugs.webkit.org/show_bug.cgi?id=134542
3346 Reviewed by Martin Robinson.
3348 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
3350 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
3352 [CMake] Add necessary support for building for the Wayland target
3353 https://bugs.webkit.org/show_bug.cgi?id=134160
3355 Reviewed by Darin Adler.
3357 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
3358 is enabled, and that its version matches the version of the generic package. Same
3359 for the gtk+-wayland-3.0 package and the Wayland target.
3360 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
3361 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
3362 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
3363 so they keep building the TestNetscapePlugin target.
3364 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
3365 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
3366 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
3367 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
3368 the minimum required version as soon as that target is enabled. Only search for GLX
3369 if the X11 target is enabled.
3371 2014-06-29 Yoav Weiss <yoav@yoav.ws>
3373 Add support for HTMLImageElement's sizes attribute
3374 https://bugs.webkit.org/show_bug.cgi?id=133620
3376 Reviewed by Dean Jackson.
3378 Added an ENABLE_PICTURE_SIZES compile flag.
3380 * Source/cmake/WebKitFeatures.cmake:
3381 * Source/cmakeconfig.h.cmake:
3383 2014-06-26 Daniel Bates <dabates@apple.com>
3385 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
3386 https://bugs.webkit.org/show_bug.cgi?id=134309
3387 <rdar://problem/17427385>
3389 Reviewed by Darin Adler.
3391 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
3394 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
3396 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
3398 Remove build guard for progress element
3399 https://bugs.webkit.org/show_bug.cgi?id=134292
3401 Reviewed by Benjamin Poulain.
3403 The build flag is no longer needed as it is always on.
3405 * Source/cmake/WebKitFeatures.cmake:
3406 * Source/cmakeconfig.h.cmake:
3408 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
3410 [EFL] Platform support for WebSpeech feature.
3411 https://bugs.webkit.org/show_bug.cgi?id=116438
3413 Reviewed by Csaba Osztrogonác.
3415 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3417 * Source/cmake/OptionsEfl.cmake:
3418 * Source/cmake/WebKitFeatures.cmake:
3420 2014-06-23 Philippe Normand <pnormand@igalia.com>
3422 Unreviewed, GTK build fix after r170266.
3424 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
3426 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3428 Disable gamepad feature on EFL and GTK ports by default
3429 https://bugs.webkit.org/show_bug.cgi?id=134169
3431 Reviewed by Brady Eidson.
3433 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
3435 2014-06-21 Brady Eidson <beidson@apple.com>
3437 Gamepad API - Deprecate the existing implementation
3438 https://bugs.webkit.org/show_bug.cgi?id=134108
3440 Reviewed by Timothy Hatcher.
3442 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3443 -Add the "Deprecated" suffix to some implementation files
3445 * Source/cmake/OptionsEfl.cmake:
3446 * Source/cmake/OptionsGTK.cmake:
3447 * Source/cmake/WebKitFeatures.cmake:
3448 * Source/cmakeconfig.h.cmake:
3450 2014-06-21 Commit Queue <commit-queue@webkit.org>
3452 Unreviewed, rolling out r170244.
3453 https://bugs.webkit.org/show_bug.cgi?id=134157
3455 GTK/EFL bindings generator works differently, making this
3456 patch not work there. Will fix entire patch after a rollout.
3457 (Requested by bradee-oh on #webkit).
3461 "Gamepad API - Deprecate the existing implementation"
3462 https://bugs.webkit.org/show_bug.cgi?id=134108
3463 http://trac.webkit.org/changeset/170244
3465 2014-06-21 Brady Eidson <beidson@apple.com>
3467 Gamepad API - Deprecate the existing implementation
3468 https://bugs.webkit.org/show_bug.cgi?id=134108
3470 Reviewed by Timothy Hatcher.
3472 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3473 -Add the "Deprecated" suffix to some implementation files
3475 * Source/cmake/OptionsEfl.cmake:
3476 * Source/cmake/OptionsGTK.cmake:
3477 * Source/cmake/WebKitFeatures.cmake:
3478 * Source/cmakeconfig.h.cmake:
3480 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3482 Removing PAGE_VISIBILITY_API compile guard.
3483 https://bugs.webkit.org/show_bug.cgi?id=133844
3485 Reviewed by Gavin Barraclough.
3487 * Source/cmake/OptionsEfl.cmake:
3488 * Source/cmake/OptionsGTK.cmake:
3489 * Source/cmake/WebKitFeatures.cmake:
3490 * Source/cmakeconfig.h.cmake:
3492 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
3494 [EFL][CMAKE] Disable WebKit1 build as a default
3495 https://bugs.webkit.org/show_bug.cgi?id=134093
3497 Reviewed by Gyuyoung Kim.
3499 Disable WebKit1 build and enable WebKit2 build for the EFL port.
3501 * Source/cmake/OptionsEfl.cmake:
3503 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3505 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
3506 https://bugs.webkit.org/show_bug.cgi?id=130389
3508 Reviewed by Mark Lam.
3510 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
3511 into !ENABLE(JIT) since they are mutually exclusive.
3513 * Source/cmake/OptionsEfl.cmake:
3514 * Source/cmake/OptionsGTK.cmake:
3515 * Source/cmake/WebKitFeatures.cmake:
3516 * Source/cmakeconfig.h.cmake:
3518 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
3520 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
3521 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
3522 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
3523 by the plugin process, but it is searched and utilized separately.
3525 Rubber-stamped by Carlos Garcia Campos.
3527 * Source/cmake/OptionsGTK.cmake:
3529 2014-06-16 Commit Queue <commit-queue@webkit.org>
3531 Unreviewed, rolling out r170003.
3532 https://bugs.webkit.org/show_bug.cgi?id=133938
3534 This patch broke GTK build (Requested by kczech on #webkit).
3538 "[EFL] Platform support for WebSpeech feature."
3539 https://bugs.webkit.org/show_bug.cgi?id=116438
3540 http://trac.webkit.org/changeset/170003
3542 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
3544 [EFL] Platform support for WebSpeech feature.
3545 https://bugs.webkit.org/show_bug.cgi?id=116438
3547 Reviewed by Gyuyoung Kim.
3549 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3551 * Source/cmake/OptionsEfl.cmake:
3552 * Source/cmake/WebKitFeatures.cmake:
3554 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3556 [EFL] Remove duplicated compiler flag
3557 https://bugs.webkit.org/show_bug.cgi?id=133838
3559 Reviewed by Anders Carlsson.
3561 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
3562 it added to common compiler options. So, it is duplicated.
3564 * Source/cmake/WebKitHelpers.cmake:
3566 2014-06-11 Commit Queue <commit-queue@webkit.org>
3568 Unreviewed, rolling out r169877.
3569 https://bugs.webkit.org/show_bug.cgi?id=133784
3571 rollout wrong build fix approach for EFL port (Requested by
3572 gyuyoung on #webkit).
3576 "Unreviewed, EFL build fix since r169869."
3577 http://trac.webkit.org/changeset/169877
3579 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3581 Unreviewed, EFL build fix since r169869.
3583 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
3585 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
3587 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3589 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
3591 * Source/cmake/WebKitHelpers.cmake:
3593 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
3595 [GTK] Make it possible to build with FTL enabled
3596 https://bugs.webkit.org/show_bug.cgi?id=133219
3598 Reviewed by Philippe Normand.
3600 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
3602 * Source/cmake/OptionsGTK.cmake:
3604 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
3606 [CMake] Clean up FAST_MOBILE_SCROLLING
3607 https://bugs.webkit.org/show_bug.cgi?id=133342
3609 Reviewed by Gyuyoung Kim.
3611 FAST_MOBILE_SCROLLING was removed in r168726.
3613 * Source/cmake/OptionsEfl.cmake:
3614 * Source/cmake/OptionsGTK.cmake:
3615 * Source/cmake/WebKitFeatures.cmake:
3616 * Source/cmakeconfig.h.cmake:
3618 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3621 https://bugs.webkit.org/show_bug.cgi?id=132863
3623 Reviewed by Csaba Osztrogonác.
3625 * Source/cmake/OptionsEfl.cmake:
3626 * Source/cmake/OptionsGTK.cmake:
3627 * Source/cmake/WebKitFeatures.cmake:
3628 * Source/cmakeconfig.h.cmake:
3630 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3632 Allow building CMake based ports with WEB_REPLAY
3633 https://bugs.webkit.org/show_bug.cgi?id=133154
3635 Reviewed by Csaba Osztrogonác.
3637 * Source/cmake/WebKitFeatures.cmake:
3638 * Source/cmakeconfig.h.cmake:
3640 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3642 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
3643 https://bugs.webkit.org/show_bug.cgi?id=132907
3645 Reviewed by Gyuyoung Kim.
3647 * Source/cmake/FindLIBCXXABI.cmake: Added.
3648 * Source/cmake/OptionsEfl.cmake:
3650 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3652 [EFL] Turn on ENABLE_CSS_FILTERS
3653 https://bugs.webkit.org/show_bug.cgi?id=133153
3655 Reviewed by Gyuyoung Kim.
3657 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
3659 2014-05-16 Martin Robinson <mrobinson@igalia.com>
3661 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
3662 https://bugs.webkit.org/show_bug.cgi?id=132819
3664 Reviewed by Carlos Garcia Campos.
3666 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
3668 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
3669 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
3671 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
3673 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
3675 [CMake] Support building with Debug Fission
3676 https://bugs.webkit.org/show_bug.cgi?id=131177
3678 Reviewed by Philippe Normand.
3680 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
3681 of http://gcc.gnu.org/wiki/DebugFission.
3683 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
3685 [GTK] Rename translation domain as WebKit2GTK-3.0
3686 https://bugs.webkit.org/show_bug.cgi?id=132953
3688 Reviewed by Gustavo Noronha Silva.
3690 * Source/cmake/OptionsGTK.cmake:
3692 2014-05-18 Rik Cabanier <cabanier@adobe.com>
3694 support for navigator.hardwareConcurrency
3695 https://bugs.webkit.org/show_bug.cgi?id=132588
3697 Reviewed by Filip Pizlo.
3699 * Source/cmake/OptionsEfl.cmake:
3700 * Source/cmake/OptionsGTK.cmake:
3701 * Source/cmake/WebKitFeatures.cmake:
3702 * Source/cmakeconfig.h.cmake:
3704 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3706 Remove CSS_STICKY_POSITION guards
3707 https://bugs.webkit.org/show_bug.cgi?id=132676
3709 Reviewed by Simon Fraser.
3711 * Source/cmake/OptionsEfl.cmake:
3712 * Source/cmake/OptionsGTK.cmake:
3713 * Source/cmake/WebKitFeatures.cmake:
3714 * Source/cmakeconfig.h.cmake:
3716 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
3718 Unreviewed. Bump version numbers.
3720 * Source/cmake/OptionsGTK.cmake:
3722 2014-05-10 Martin Robinson <mrobinson@igalia.com>
3724 [GTK][CMake] Unable to do make install
3725 https://bugs.webkit.org/show_bug.cgi?id=130188
3727 Reviewed by Carlos Garcia Campos.
3729 Only try to install the HTML documentation if the build is configured to generate it via
3730 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3731 to keep the HTML documentation directory as an installation source.
3733 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3734 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3735 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
3736 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
3737 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3739 2014-05-09 Anders Carlsson <andersca@apple.com>
3741 Rename WebKit2.framework to WebKit.framework
3742 https://bugs.webkit.org/show_bug.cgi?id=132743
3743 <rdar://problem/15920046>
3745 Reviewed by Dan Bernstein.
3748 Build WebKit.xcodeproj before WebKit2.xcodeproj.
3750 * WebKit.xcworkspace/xcshareddata/xcschemes/:
3753 2014-05-06 David Kilzer <ddkilzer@apple.com>
3755 Add Makefile targets for copying static libraries (LLVM and WKSI)
3756 <http://webkit.org/b/132619>
3758 Reviewed by Mark Rowe.
3761 (MODULES): Add WebKitLibraries.
3763 2014-05-06 Commit Queue <commit-queue@webkit.org>
3765 Unreviewed, rolling out r168304.
3766 https://bugs.webkit.org/show_bug.cgi?id=132607
3768 Broke the build (Requested by KaL on #webkit).
3772 "[GTK][CMake] Unable to do make install"
3773 https://bugs.webkit.org/show_bug.cgi?id=130188
3774 http://trac.webkit.org/changeset/168304
3776 2014-05-05 Martin Robinson <mrobinson@igalia.com>
3778 [GTK][CMake] Unable to do make install
3779 https://bugs.webkit.org/show_bug.cgi?id=130188
3781 Reviewed by Carlos Garcia Campos.
3783 Only try to install the HTML documentation if the build is configured to generate it via
3784 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3785 to keep the HTML documentation directory as an installation source.
3787 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3788 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3789 never added to the default target, but will be triggered by build-webkit, so that
3790 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
3791 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3793 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3795 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
3796 https://bugs.webkit.org/show_bug.cgi?id=132525
3798 Reviewed by Martin Robinson.
3800 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
3801 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
3802 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
3804 2014-05-01 David Kilzer <ddkilzer@apple.com>
3806 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
3807 <http://webkit.org/b/132432>
3809 Reviewed by Tim Horton.
3811 * Source/cmake/WebKitFeatures.cmake:
3812 * Source/cmakeconfig.h.cmake:
3813 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
3815 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3817 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
3819 Reviewed by Dan Bernstein/Anders Carlsson.
3821 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3822 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3824 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3826 Let Xcode have its way with the WebKit workspace.
3828 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3829 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3831 2014-04-29 Martin Robinson <mrobinson@igalia.com>
3833 [GTK] Make it easier to run CMake for downstreams
3834 https://bugs.webkit.org/show_bug.cgi?id=132370
3836 Reviewed by Carlos Garcia Campos.
3838 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
3840 2014-04-27 Joonghun Park <jh718.park@samsung.com>
3842 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
3843 https://bugs.webkit.org/show_bug.cgi?id=132176
3845 Reviewed by Gyuyoung Kim.
3847 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
3849 * Source/cmake/OptionsEfl.cmake:
3851 2014-04-22 Alex Christensen <achristensen@webkit.org>