1 2015-08-19 Alex Christensen <achristensen@webkit.org>
3 Build TestWTF on Mac with CMake.
4 https://bugs.webkit.org/show_bug.cgi?id=147972
6 Reviewed by Tim Horton.
8 * Source/cmake/OptionsMac.cmake:
9 Enable API tests in Mac's CMake build.
11 2015-08-18 Alex Christensen <achristensen@webkit.org>
13 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
14 https://bugs.webkit.org/show_bug.cgi?id=148127
16 Reviewed by Martin Robinson.
19 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
21 2015-08-17 Alex Christensen <achristensen@webkit.org>
23 [Win CMake] Allow WebKitLibraries directory to be set from the command line
24 https://bugs.webkit.org/show_bug.cgi?id=148112
26 Reviewed by Brent Fulgham.
28 * Source/cmake/OptionsWin.cmake:
29 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
30 Instead, use the default location if nothing is passed in from the command line.
31 This way we can set it from the command line for the AppleInternal build.
32 Also, set the output directories to be consistent between the old and new build systems (and ninja).
34 2015-08-17 Alex Christensen <achristensen@webkit.org>
36 Build Debug Suffix on Windows with CMake
37 https://bugs.webkit.org/show_bug.cgi?id=148083
39 Reviewed by Brent Fulgham.
41 * Source/cmake/OptionsWin.cmake:
42 Use debug libraries in debug suffix builds.
44 2015-08-17 Alex Christensen <achristensen@webkit.org>
46 Move some commands from ./CMakeLists.txt to Source/cmake
47 https://bugs.webkit.org/show_bug.cgi?id=148003
49 Reviewed by Brent Fulgham.
52 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
53 so we can change directory structure from command line parameters.
54 * Source/cmake/OptionsAppleWin.cmake:
55 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
56 * Source/cmake/OptionsWinCairo.cmake:
57 * Source/cmake/OptionsWindows.cmake: Removed.
58 * Source/cmake/WebKitCommon.cmake: Added.
59 * Source/cmake/WebKitFS.cmake:
61 2015-08-13 Commit Queue <commit-queue@webkit.org>
63 Unreviewed, rolling out r188428.
64 https://bugs.webkit.org/show_bug.cgi?id=148015
66 broke cmake build (Requested by alexchristensen on #webkit).
70 "Move some commands from ./CMakeLists.txt to Source/cmake"
71 https://bugs.webkit.org/show_bug.cgi?id=148003
72 http://trac.webkit.org/changeset/188428
74 2015-08-13 Alex Christensen <achristensen@webkit.org>
76 Move some commands from ./CMakeLists.txt to Source/cmake
77 https://bugs.webkit.org/show_bug.cgi?id=148003
79 Reviewed by Brent Fulgham.
82 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
83 so we can change directory structure from command line parameters.
84 * Source/cmake/WebKitCommon.cmake: Added.
85 * Source/cmake/WebKitFS.cmake:
87 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
89 A focused node should not be assisted when handling touch events synchronously
90 https://bugs.webkit.org/show_bug.cgi?id=147836
92 Reviewed by Enrica Casucci.
94 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
96 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
97 input can still be assisted due to a touch event.
98 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
99 event does not automatically cause us to assist the currently focused node.
101 2015-08-12 Alex Christensen <achristensen@webkit.org>
103 Fix Debug CMake builds on Windows
104 https://bugs.webkit.org/show_bug.cgi?id=147940
106 Reviewed by Chris Dumez.
108 * Source/cmake/OptionsWindows.cmake:
109 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
111 2015-08-10 Alex Christensen <achristensen@webkit.org>
113 Build TestWebKitAPI with CMake on Windows
114 https://bugs.webkit.org/show_bug.cgi?id=147851
116 Reviewed by Chris Dumez.
118 * Source/cmake/OptionsWindows.cmake:
119 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
121 2015-08-06 Alex Christensen <achristensen@webkit.org>
123 [Win] CMake build fix after r188098.
125 * Source/cmake/OptionsWinCairo.cmake:
126 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
128 2015-08-04 Alex Christensen <achristensen@webkit.org>
130 Fix quirks with CMake and VS2015
131 https://bugs.webkit.org/show_bug.cgi?id=147663
133 Reviewed by Brent Fulgham.
135 * Source/cmake/OptionsWindows.cmake:
136 Hide some warnings. Using the same variable names in nested scopes is ok for now.
137 Disable INTL for now.
139 2015-08-04 Alex Christensen <achristensen@webkit.org>
141 Enable WebGL on Windows CMake build.
142 https://bugs.webkit.org/show_bug.cgi?id=143311
144 Reviewed by Csaba Osztrogonác.
146 * Source/cmake/OptionsWindows.cmake:
147 Enable WebGL by default in CMake builds now that it works.
149 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
151 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
152 https://bugs.webkit.org/show_bug.cgi?id=147625
154 Reviewed by Martin Robinson.
156 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
157 components unless they were actually found, not to accidentally
158 enable Accelerated 2D canvas, which would cause the build to fail.
160 * Source/cmake/FindCairoGL.cmake: Set this variables only when
161 pkg_check_modules() had actually found the relevant component.
163 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
165 [CMake] Add an option to build AllInOne files
166 https://bugs.webkit.org/show_bug.cgi?id=102647
168 Reviewed by Alex Christensen.
170 * Source/cmake/OptionsEfl.cmake: Disabled by default.
171 * Source/cmake/OptionsGTK.cmake: Disabled by default.
172 * Source/cmake/OptionsWindows.cmake: Enabled by default.
173 * Source/cmake/WebKitFeatures.cmake:
174 * Source/cmake/WebKitMacros.cmake:
176 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
178 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
180 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
182 2015-07-31 Alex Christensen <achristensen@webkit.org>
184 Prepare for debug CMake builds on Windows.
185 https://bugs.webkit.org/show_bug.cgi?id=147484
187 Reviewed by Tim Horton.
189 * Source/cmake/OptionsWindows.cmake:
190 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
192 2015-07-30 Joonghun Park <jh718.park@samsung.com>
194 [EFL] Enable IndexedDB based on DatabaseProcess
195 https://bugs.webkit.org/show_bug.cgi?id=147221
197 Reviewed by Csaba Osztrogonác.
199 * Source/cmake/OptionsEfl.cmake:
201 2015-07-30 Alex Christensen <achristensen@webkit.org>
203 Build AppleWin port with CMake
204 https://bugs.webkit.org/show_bug.cgi?id=147385
206 Reviewed by Martin Robinson.
208 * Source/cmake/OptionsWindows.cmake:
209 Use the static multithreaded runtime. Based on
210 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
212 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
214 Implement basic types for ECMAScript Internationalization API
215 https://bugs.webkit.org/show_bug.cgi?id=146926
217 Reviewed by Benjamin Poulain.
219 Enable flag now that the basic objects are in place.
221 * Source/cmake/WebKitFeatures.cmake: enable INTL
223 2015-07-29 Basile Clement <basile_clement@apple.com>
225 Remove native call inlining
226 https://bugs.webkit.org/show_bug.cgi?id=147417
228 Rubber-stamped by Filip Pizlo.
230 * Source/cmake/OptionsEfl.cmake:
231 * Source/cmake/WebKitFeatures.cmake:
233 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
235 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
236 https://bugs.webkit.org/show_bug.cgi?id=147350
238 Reviewed by Sam Weinig.
240 * Source/cmake/WebKitFeatures.cmake:
242 2015-07-27 Alex Christensen <achristensen@webkit.org>
244 Use Ninja on Windows.
245 https://bugs.webkit.org/show_bug.cgi?id=147228
247 Reviewed by Martin Robinson.
249 * Source/cmake/OptionsWindows.cmake:
250 Only use /MP when using generated Visual Studio solution files to build.
251 It makes compiling parallel in MSVC, but Ninja doesn't like it.
253 2015-07-27 Alex Christensen <achristensen@webkit.org>
255 Progress towards building AppleWin with CMake
256 https://bugs.webkit.org/show_bug.cgi?id=147325
258 Reviewed by Martin Robinson.
260 * Source/cmake/OptionsWindows.cmake:
261 Link with 64-bit libraries if building 64-bit binaries.
262 Don't run regular expressions on empty strings when using Ninja.
263 Removed DebugSuffix Visual Studio environment variables.
265 2015-07-23 Alex Christensen <achristensen@webkit.org>
267 Remove compile and runtime flags for promises.
268 https://bugs.webkit.org/show_bug.cgi?id=147244
270 Reviewed by Yusuke Suzuki.
272 * Source/cmake/OptionsMac.cmake:
273 * Source/cmake/OptionsWindows.cmake:
274 * Source/cmake/WebKitFeatures.cmake:
276 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
278 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
279 https://bugs.webkit.org/show_bug.cgi?id=147212
281 Reviewed by Filip Pizlo.
283 * Source/cmake/WebKitFeatures.cmake:
285 2015-07-22 Alex Christensen <achristensen@webkit.org>
287 Fix quirks in CMake build on Mac and Windows
288 https://bugs.webkit.org/show_bug.cgi?id=147174
290 Reviewed by Gyuyoung Kim.
293 * Source/cmake/OptionsWindows.cmake:
294 Added options I removed in r187022. They are indeed needed.
295 * Source/cmake/WebKitFS.cmake:
296 Make the DerivedSources/WebKit directory.
298 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
300 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
302 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
304 2015-07-20 Alex Christensen <achristensen@webkit.org>
306 Resurrect CMake build on Windows.
307 https://bugs.webkit.org/show_bug.cgi?id=147083
309 Reviewed by Gyuyoung Kim.
311 * Source/cmake/OptionsCommon.cmake:
312 * Source/cmake/OptionsWindows.cmake:
313 Change features to get it to compile. Still not a complete feature set.
315 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
317 [GTK] Add seccomp filters support
318 https://bugs.webkit.org/show_bug.cgi?id=110014
320 Reviewed by Žan Doberšek.
322 Find needed compiler and linker flags for libseccomp.
324 * Source/cmake/OptionsGTK.cmake:
326 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
328 Bring back the GNU ar check to create thin archives on non-Linux systems
329 https://bugs.webkit.org/show_bug.cgi?id=146681
331 Reviewed by Martin Robinson.
333 We already use GNU ar thin archive feature to save time and disk space
334 on creating static archives, but it is only enabled on Linux. Without
335 this feature, the debug build of WebCore can be larger than 4 GiB,
336 which can cause error because GNU ar format uses 32-bit integer to
337 store offsets in the symbol table. This patch is similar to
338 https://bugs.webkit.org/show_bug.cgi?id=128596.
340 * Source/cmake/OptionsCommon.cmake:
342 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
344 [GTK] [Wayland] Build by default the X11 and Wayland targets.
345 https://bugs.webkit.org/show_bug.cgi?id=146057
347 Reviewed by Carlos Garcia Campos.
349 * Source/cmake/OptionsGTK.cmake:
351 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
353 [GTK] ar warning when linking static libraries
354 https://bugs.webkit.org/show_bug.cgi?id=144988
356 Reviewed by Carlos Garcia Campos.
358 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
359 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
360 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
361 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
362 should either stop using 'u' or else add 'U' as well in order to disable deterministic
363 archives. Using 'U' should result in a somewhat faster build (at least when using the
364 Makefile generator), but it's unlikely that the difference is significant, so let's simply
365 remove 'u' until someone determines otherwise. This seems like a better option than adding
366 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
367 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
368 behavior change on distributions that do not use --enable-deterministic-archives, notably
371 * Source/cmake/OptionsCommon.cmake:
373 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
375 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
376 https://bugs.webkit.org/show_bug.cgi?id=146590
378 Reviewed by Martin Robinson.
380 * Source/PlatformGTK.cmake: override the cached variables to
381 forcefully disable gtk-doc and gobject-introspection when
383 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
384 documentation syntax when cross-building.
387 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
389 [EFL] test_ewk2_application_cache_manager has been failed since r185527
390 https://bugs.webkit.org/show_bug.cgi?id=146016
392 Reviewed by Gyuyoung Kim.
394 In order to handle properly WebApplicationCacheManagerProxy implementation which use
395 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
396 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
398 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
400 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
402 Implement ECMAScript Internationalization API
403 https://bugs.webkit.org/show_bug.cgi?id=90906
405 Reviewed by Benjamin Poulain.
407 Begin implementing the Intl apis behind ENABLE_INTL flag.
408 Create the base Intl namespace object.
410 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
412 2015-06-30 Philippe Normand <pnormand@igalia.com>
414 [CMake] Error when gst-plugins-base is missing is too confusing
415 https://bugs.webkit.org/show_bug.cgi?id=145682
417 Reviewed by Carlos Garcia Campos.
419 * Source/cmake/OptionsGTK.cmake: Error out if the required
420 GStreamer libraries are not found on the host.
422 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
424 CairoGL should be checked unconditionally
425 https://bugs.webkit.org/show_bug.cgi?id=146390
427 Reviewed by Darin Adler.
429 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
430 it is run unconditionally; this is necessary because its result
431 is used later on, outside of any conditions.
433 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
435 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
436 https://bugs.webkit.org/show_bug.cgi?id=146318
438 Reviewed by Sergio Villar Senin.
440 Enable PUBLIC_SUFFIX_LIST for GTK+.
442 * Source/cmake/OptionsGTK.cmake:
444 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
446 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
448 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
450 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
452 [EFL] Hyphenation is not supported
453 https://bugs.webkit.org/show_bug.cgi?id=89830
455 Reviewed by Gyuyoung Kim.
457 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
459 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
461 [CMake] Add support for building with various sanitizer tools
462 https://bugs.webkit.org/show_bug.cgi?id=131941
464 Reviewed by Martin Robinson.
466 * Source/PlatformGTK.cmake: Don't generate any documentation
467 when compiling with sanitizers enabled.
468 * Source/cmake/OptionsCommon.cmake: Allow linking with
469 undefined symbols when compiling with sanitizers enabled.
471 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
473 libwebkit2gtk fails to link without opengl
474 https://bugs.webkit.org/show_bug.cgi?id=138332
476 Reviewed by Carlos Garcia Campos.
478 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
479 enabled regardless of whether OpenGL is, because certain symbols
480 such as WebCore::GraphicsLayer::create() need to be built.
482 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
484 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
485 https://bugs.webkit.org/show_bug.cgi?id=146181
487 Reviewed by Martin Robinson.
489 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
491 * Source/cmake/OptionsGTK.cmake:
493 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
495 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
496 https://bugs.webkit.org/show_bug.cgi?id=146171
498 Reviewed by Gyuyoung Kim.
500 * Source/cmake/OptionsEfl.cmake:
501 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
503 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
505 [CMake] FindGTK3.cmake should not modify the values of build options
506 https://bugs.webkit.org/show_bug.cgi?id=144613
508 Reviewed by Martin Robinson.
510 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
511 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
512 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
513 GTK3_SUPPORTS_GESTURES for consistency.
514 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
515 available. It's not possible to automatically select a backend correctly anymore, since all
516 options are set at the same time.
518 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
520 Remove unnecessary svn:executable flags
521 https://bugs.webkit.org/show_bug.cgi?id=146107
523 Reviewed by Alexey Proskuryakov.
525 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
526 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
527 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
528 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
529 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
531 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
533 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
534 https://bugs.webkit.org/show_bug.cgi?id=146108
536 Reviewed by Gyuyoung Kim.
538 * Source/cmake/OptionsEfl.cmake:
540 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
542 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
543 https://bugs.webkit.org/show_bug.cgi?id=146035
545 Reviewed by Gyuyoung Kim.
547 * Source/cmake/OptionsEfl.cmake:
549 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
551 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
552 https://bugs.webkit.org/show_bug.cgi?id=145701
554 Reviewed by Darin Adler.
556 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
558 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
560 [iOS] Crash long pressing on <input type=file>
561 https://bugs.webkit.org/show_bug.cgi?id=146009
562 <rdar://problem/21234453>
564 Reviewed by Ryosuke Niwa.
566 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
568 2015-06-16 Brent Fulgham <bfulgham@apple.com>
570 Rollout accidental Xcode project change.
572 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
574 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
576 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
577 https://bugs.webkit.org/show_bug.cgi?id=145909
579 Reviewed by Csaba Osztrogonác.
581 Bump EWebKit version based on efl library version used by the EWebKit.
583 * Source/cmake/OptionsEfl.cmake:
585 2015-06-11 Commit Queue <commit-queue@webkit.org>
587 Unreviewed, rolling out r185453.
588 https://bugs.webkit.org/show_bug.cgi?id=145881
590 it broke the 32-bit build (Requested by clopez on #webkit).
594 "[GTK] [Wayland] Should be possible to build with support for
595 both X11 and Wayland."
596 https://bugs.webkit.org/show_bug.cgi?id=145701
597 http://trac.webkit.org/changeset/185453
599 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
601 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
602 https://bugs.webkit.org/show_bug.cgi?id=145701
604 Reviewed by Žan Doberšek.
606 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
608 2015-06-03 Daniel Bates <dabates@apple.com>
610 Caps lock indicator should not be shown in read-only or disabled field
611 https://bugs.webkit.org/show_bug.cgi?id=145612
612 <rdar://problem/21227454>
614 Reviewed by Darin Adler.
616 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
617 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
618 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
620 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
622 [cmake] Suppress parentheses-equality warnings
623 https://bugs.webkit.org/show_bug.cgi?id=145126
625 Reviewed by Darin Adler.
627 * Source/cmake/WebKitHelpers.cmake:
629 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
631 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
632 https://bugs.webkit.org/show_bug.cgi?id=145408
634 Reviewed by Carlos Garcia Campos.
636 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
637 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
638 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
640 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
641 libraries. Detect also GLX libraries.
642 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
643 libraries. Use find_path() to get the include path.
644 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
646 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
647 depending on the libraries found on the system.
648 Move the detection of GLX (and the include of CMakePushCheckState)
650 Ensure that we only define USE_GLX when we build with OpenGL
651 (but not with GLESv2).
653 2015-05-27 Dean Jackson <dino@apple.com>
655 img.currentSrc problem in strict mode with old picturefill
656 https://bugs.webkit.org/show_bug.cgi?id=144095
657 <rdar://problem/21087013>
659 Reviewed by Simon Fraser.
661 Add a PICTURE_SIZES flag.
663 * Source/cmake/OptionsEfl.cmake:
664 * Source/cmake/OptionsGTK.cmake:
665 * Source/cmake/OptionsMac.cmake:
666 * Source/cmake/OptionsWindows.cmake:
667 * Source/cmake/WebKitFeatures.cmake:
669 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
671 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
673 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
675 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
677 Unreviewed. Export DatabaseProcessMainUnix symbol.
679 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
680 is exported in production builds.
682 * Source/cmake/gtksymbols.filter:
684 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
686 [GTK] Enable IndexedDB
687 https://bugs.webkit.org/show_bug.cgi?id=98932
689 Reviewed by Žan Doberšek.
691 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
692 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
694 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
696 [GTK] Bump GCC requirements to 4.9.0
697 https://bugs.webkit.org/show_bug.cgi?id=145211
699 Reviewed by Žan Doberšek.
701 It's required to build with IndexedDB support when using GCC,
702 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
704 * Source/cmake/OptionsGTK.cmake:
706 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
708 [CMake] Ignore warnings in system headers
709 https://bugs.webkit.org/show_bug.cgi?id=144747
711 Reviewed by Darin Adler.
713 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
714 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
715 use the SYSTEM argument to the command (added in 2.8.12).
719 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
721 [CMake] Error out when ruby is too old
722 https://bugs.webkit.org/show_bug.cgi?id=145014
724 Reviewed by Martin Robinson.
726 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
731 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
733 [GTK] Enable plugin-related CMake options and variables for the X11 target only
734 https://bugs.webkit.org/show_bug.cgi?id=144995
736 Reviewed by Carlos Garcia Campos.
738 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
739 the X11 windowing target at the moment, so the following options
740 and variables should be enabled or disabled accordingly:
741 - ENABLE_PLUGIN_PROCESS_GTK2
742 - ENABLE_NETSCAPE_PLUGIN_API
743 - ENABLE_PLUGIN_PROCESS
745 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
747 Linker fails without -DDEVELOPER_MODE=ON
748 https://bugs.webkit.org/show_bug.cgi?id=144117
750 Reviewed by Gyuyoung Kim.
752 * Source/cmake/OptionsEfl.cmake:
753 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
754 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
756 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
758 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
759 https://bugs.webkit.org/show_bug.cgi?id=144846
761 Reviewed by Martin Robinson.
763 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
764 CAIRO_GL_* throughout, because find_package will define
766 * Source/cmake/OptionsGTK.cmake: Ditto.
768 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
770 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
771 https://bugs.webkit.org/show_bug.cgi?id=144845
773 Reviewed by Martin Robinson.
775 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
776 if their corresponding WTF options are ON. The code in npapi.h
777 relies on these being undefined if they are to be switched off.
779 2015-05-09 Yoav Weiss <yoav@yoav.ws>
781 Remove the PICTURE_SIZES build flag
782 https://bugs.webkit.org/show_bug.cgi?id=144679
784 Reviewed by Benjamin Poulain.
786 Removed the PICTURE_SIZES build time flag.
788 * Source/cmake/OptionsEfl.cmake:
789 * Source/cmake/OptionsGTK.cmake:
790 * Source/cmake/OptionsMac.cmake:
791 * Source/cmake/OptionsWindows.cmake:
792 * Source/cmake/WebKitFeatures.cmake:
794 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
796 [GTK] [CMake] Check for required X libraries
797 https://bugs.webkit.org/show_bug.cgi?id=144823
799 Reviewed by Martin Robinson.
801 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
803 * Source/cmake/OptionsGTK.cmake:
805 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
807 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
808 https://bugs.webkit.org/show_bug.cgi?id=144746
810 Reviewed by Carlos Garcia Campos.
812 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
813 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
814 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
816 * Source/cmake/OptionsGTK.cmake:
818 2015-05-08 Daniel Bates <dabates@apple.com>
820 [iOS] WebSQL operations are not performed after device is locked
821 https://bugs.webkit.org/show_bug.cgi?id=137503
822 <rdar://problem/20844952>
824 Rubber-stamped by Alexey Proskuryakov.
826 Add a manual test to help verify that we do not regress this issue.
828 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
830 2015-05-08 Commit Queue <commit-queue@webkit.org>
832 Unreviewed, rolling out r183945.
833 https://bugs.webkit.org/show_bug.cgi?id=144789
835 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
839 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
840 https://bugs.webkit.org/show_bug.cgi?id=144746
841 http://trac.webkit.org/changeset/183945
843 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
845 Cleanup after r183940
846 https://bugs.webkit.org/show_bug.cgi?id=144768
850 Looks like the empty directories were not deleted.
852 * Source/PAL: Removed.
853 * Source/PAL/Configurations: Removed.
854 * Source/PAL/PAL.xcodeproj: Removed.
855 * Source/PAL/graphics: Removed.
857 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
859 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
860 https://bugs.webkit.org/show_bug.cgi?id=144746
862 Reviewed by Martin Robinson.
864 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
865 what it is defined to, so defining it to 0 effectively turned it on always.
867 * Source/cmake/OptionsGTK.cmake:
869 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
871 Revert "Introducing the Platform Abstraction Layer (PAL)"
872 https://bugs.webkit.org/show_bug.cgi?id=144751
876 PAL should be a new target inside WebCore, rather than a top-level folder.
878 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
880 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
882 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
884 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
886 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
888 Introducing the Platform Abstraction Layer (PAL)
889 https://bugs.webkit.org/show_bug.cgi?id=143358
891 Reviewed by Simon Fraser.
893 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
895 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
897 [cmake] Disable GNU Gold linker on Cortex A53
898 https://bugs.webkit.org/show_bug.cgi?id=144382
900 Reviewed by Carlos Garcia Campos.
902 * Source/cmake/OptionsCommon.cmake:
904 2015-05-01 Martin Robinson <mrobinson@igalia.com>
906 USE(...) macro should expect unprefixed variables
907 https://bugs.webkit.org/show_bug.cgi?id=144454
909 Reviewed by Daniel Bates.
911 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
912 * Source/cmake/OptionsEfl.cmake: Ditto.
913 * Source/cmake/OptionsGTK.cmake: Ditto.
914 * Source/cmake/OptionsMac.cmake: Ditto.
915 * Source/cmake/OptionsWinCairo.cmake: Ditto.
916 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
919 2015-04-30 Martin Robinson <mrobinson@igalia.com>
921 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
922 https://bugs.webkit.org/show_bug.cgi?id=144394
924 Reviewed by Carlos Garcia Campos.
926 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
927 is that it fixes the redirected XComposite window for GTK+, which was accidentally
928 disabled in previous reworking of the CMake configuration.
930 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
931 version of USE variables.
932 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
933 is exposed to the build.
935 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
937 Unreviewed. Bump GTK+ version numbers.
939 * Source/cmake/OptionsGTK.cmake:
941 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
943 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
944 https://bugs.webkit.org/show_bug.cgi?id=144435
946 Reviewed by Gyuyoung Kim.
948 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
949 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
951 * Source/cmake/OptionsEfl.cmake:
953 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
955 REGRESSION(183583): [Mac] make without SDKROOT has issues
956 https://bugs.webkit.org/show_bug.cgi?id=144431
958 Reviewed by Dan Bernstein.
961 Assume an empty SDKROOT means an macosx variant, so only
962 enable settings if the SDKROOT is not empty and does not
965 2015-04-29 Martin Robinson <mrobinson@igalia.com>
967 Fix the GTK+ build after r183584
969 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
971 2015-04-29 Martin Robinson <mrobinson@igalia.com>
973 [GTK] Add support for automatic hyphenation
974 https://bugs.webkit.org/show_bug.cgi?id=44478
976 Reviewed by Carlos Garcia Campos.
978 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
979 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
980 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
982 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
984 Failure when building WebKit for appletvsimulator.
985 https://bugs.webkit.org/show_bug.cgi?id=144356
987 Reviewed by Alexey Proskuryakov.
989 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
990 make TVOS and WatchOS behave correctly.
994 2015-04-29 Martin Robinson <mrobinson@igalia.com>
996 [CMake] [GTK] Organize and clean up unused CMake variables
997 https://bugs.webkit.org/show_bug.cgi?id=144364
999 Reviewed by Gyuyoung Kim.
1001 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
1002 specific to certain projects into their PlatformGTK.cmake files.
1004 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1006 [EFL] Build failure to find gio-unix
1007 https://bugs.webkit.org/show_bug.cgi?id=144083
1009 Reviewed by Gyuyoung Kim.
1011 Original patch by Doug Newgard <scimma22@outlook.com>
1013 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
1015 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
1017 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
1018 https://bugs.webkit.org/show_bug.cgi?id=143001
1020 Reviewed by Gyuyoung Kim.
1022 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
1023 * Source/cmake/OptionsGTK.cmake: Ditto.
1025 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1027 Unreviewed, fix typo in previous commit
1029 libsecretr -> libsecret in the error message.
1031 * Source/cmake/OptionsGTK.cmake:
1033 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1035 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
1036 https://bugs.webkit.org/show_bug.cgi?id=143546
1038 Reviewed by Martin Robinson.
1040 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
1041 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
1042 default. Fail the build with an informative error message if an optional dependency required
1043 for an enabled feature is not present. Perform find_package commands only when necessary.
1044 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
1047 * Source/cmake/OptionsGTK.cmake:
1049 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1051 [GTK] Make all options actually options
1052 https://bugs.webkit.org/show_bug.cgi?id=144106
1054 Reviewed by Martin Robinson.
1056 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
1057 ENABLE_WAYLAND_TARGET.
1059 * Source/cmake/OptionsGTK.cmake:
1061 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1063 Unreviewed, fix GTK build after r183452
1065 * Source/cmake/OptionsGTK.cmake:
1067 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1069 [GTK] Add one single option to control all OpenGL-related options
1070 https://bugs.webkit.org/show_bug.cgi?id=144105
1072 Reviewed by Martin Robinson.
1074 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
1075 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
1076 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
1077 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
1078 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
1079 presence of CairoGL.
1081 * Source/cmake/OptionsGTK.cmake:
1083 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1085 [GTK] ENABLE_SMOOTH_SCROLLING should be private
1086 https://bugs.webkit.org/show_bug.cgi?id=144306
1088 Reviewed by Martin Robinson.
1090 Make ENABLE_SMOOTH_SCROLLING private instead of public.
1092 * Source/cmake/OptionsGTK.cmake:
1094 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1096 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
1097 https://bugs.webkit.org/show_bug.cgi?id=144193
1099 Reviewed by Darin Adler.
1101 * Source/cmake/OptionsEfl.cmake:
1102 * Source/cmake/OptionsGTK.cmake:
1103 * Source/cmake/OptionsWinCairo.cmake:
1104 * Source/cmake/WebKitFeatures.cmake:
1106 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1108 [CMake] Should be possible for an option to conflict with other options
1109 https://bugs.webkit.org/show_bug.cgi?id=143956
1111 Reviewed by Martin Robinson.
1113 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
1115 * Source/cmake/WebKitFeatures.cmake:
1117 2015-04-22 Martin Robinson <mrobinson@igalia.com>
1119 [CMake] Autogenerate cmakeconfig.h.cmake
1120 https://bugs.webkit.org/show_bug.cgi?id=143997
1122 Reviewed by Csaba Osztrogonác.
1124 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
1125 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
1126 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
1127 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
1128 Do some other miscellaneous related cleanup.
1129 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
1130 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
1131 build exposed variables. Add a macro to generate a configuration from them.
1132 * Source/cmakeconfig.h.cmake: Removed.
1134 2015-04-24 Philippe Normand <pnormand@igalia.com>
1136 [JHBuild] Move to upstream OpenWebRTC
1137 https://bugs.webkit.org/show_bug.cgi?id=144145
1139 Reviewed by Carlos Garcia Campos.
1141 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
1144 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
1146 [ES6] Implement ES6 template literals
1147 https://bugs.webkit.org/show_bug.cgi?id=142691
1149 Reviewed by Darin Adler.
1151 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
1153 * Source/cmake/WebKitFeatures.cmake:
1154 * Source/cmakeconfig.h.cmake:
1156 2015-04-25 Martin Robinson <mrobinson@igalia.com>
1158 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
1159 https://bugs.webkit.org/show_bug.cgi?id=144182
1161 Reviewed by Simon Fraser.
1163 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1164 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1165 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1166 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1167 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1169 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1171 [GTK] Add more public options
1172 https://bugs.webkit.org/show_bug.cgi?id=144116
1174 Reviewed by Martin Robinson.
1176 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
1178 * Source/cmake/OptionsGTK.cmake:
1180 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1182 [CMake] Some internal variables are not marked as advanced
1183 https://bugs.webkit.org/show_bug.cgi?id=143595
1185 Reviewed by Martin Robinson.
1187 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
1188 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
1190 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1192 [GTK] Mark as advanced the build options we don't want to expose
1193 https://bugs.webkit.org/show_bug.cgi?id=143558
1195 Reviewed by Martin Robinson.
1197 Mark various options as private instead of public.
1199 * Source/cmake/OptionsGTK.cmake:
1201 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1203 [CMake] Should be possible for an option to depend on multiple options
1204 https://bugs.webkit.org/show_bug.cgi?id=143839
1206 Reviewed by Martin Robinson.
1208 Use a list instead of a single variable to track the dependencies of each option. Iterate
1209 over the list as many times as necessary to ensure all options are properly disabled.
1211 * Source/cmake/WebKitFeatures.cmake:
1213 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1215 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
1216 https://bugs.webkit.org/show_bug.cgi?id=144103
1218 Reviewed by Martin Robinson.
1220 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
1222 * Source/cmake/WebKitFeatures.cmake:
1224 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
1226 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
1227 https://bugs.webkit.org/show_bug.cgi?id=144102
1229 Reviewed by Martin Robinson.
1231 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
1232 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
1233 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
1235 * Source/cmake/OptionsGTK.cmake:
1237 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1239 [CMake] Clean up JSC JIT options
1240 https://bugs.webkit.org/show_bug.cgi?id=143998
1242 Reviewed by Filip Pizlo.
1244 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
1245 define for ENABLE_FTL_NATIVE_CALL_INLINING.
1246 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
1247 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
1248 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
1249 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
1251 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1253 [CMake] Use lowercase for local variables in macros
1254 https://bugs.webkit.org/show_bug.cgi?id=144059
1256 Reviewed by Martin Robinson.
1258 Convert some variable names to lowercase.
1260 * Source/cmake/WebKitFeatures.cmake:
1262 2015-04-22 Commit Queue <commit-queue@webkit.org>
1264 Unreviewed, rolling out r183116.
1265 https://bugs.webkit.org/show_bug.cgi?id=144060
1267 Inadvertently deleted a file... (Requested by mcatanzaro on
1272 "[CMake] Use lowercase for local variables in macros"
1273 https://bugs.webkit.org/show_bug.cgi?id=144059
1274 http://trac.webkit.org/changeset/183116
1276 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1278 [CMake] Use lowercase for local variables in macros
1279 https://bugs.webkit.org/show_bug.cgi?id=144059
1281 Reviewed by Martin Robinson.
1283 Convert some variable names to lowercase.
1285 * Source/cmake/WebKitFeatures.cmake:
1287 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1289 [CMake] Features list should print dots every other row
1290 https://bugs.webkit.org/show_bug.cgi?id=143832
1292 Reviewed by Martin Robinson.
1294 Discount private options when determining whether to print dots on a given row of the
1295 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
1296 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
1297 wasn't noticed because it only affects the first line, and use of the variable name as a
1298 string in a conditional.)
1300 * Source/cmake/WebKitFeatures.cmake:
1302 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
1304 [CMake] Require specifying visibility of WebKit options
1305 https://bugs.webkit.org/show_bug.cgi?id=143831
1307 Reviewed by Alex Christensen.
1309 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
1310 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
1311 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
1312 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
1313 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
1314 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
1315 cross-platform options as PRIVATE.
1317 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1319 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
1320 https://bugs.webkit.org/show_bug.cgi?id=143935
1322 Reviewed by Darin Adler.
1324 Some variables aren't defined in these files or unused variables aren't removed. This
1325 patch cleans up it as well as fix wrong alphabet order.
1327 * Source/cmake/WebKitFeatures.cmake:
1328 * Source/cmakeconfig.h.cmake:
1330 2015-04-19 Simon Fraser <simon.fraser@apple.com>
1332 Restore the WebKit.xcworkspace to the way it was before r182899,
1333 which inadvertently added the Source directory and a couple of source
1336 * WebKit.xcworkspace/contents.xcworkspacedata:
1338 2015-04-16 Basile Clement <basile_clement@apple.com>
1340 Extract the allocation profile from JSFunction into a rare object
1341 https://bugs.webkit.org/show_bug.cgi?id=143807
1343 Reviewed by Filip Pizlo.
1345 * WebKit.xcworkspace/contents.xcworkspacedata:
1347 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
1349 [EFL] Bump LLVM to version 3.6.0 on X86_64
1350 https://bugs.webkit.org/show_bug.cgi?id=143604
1352 Reviewed by Gyuyoung Kim.
1354 * Source/cmake/FindLLVM.cmake: Added version handling.
1355 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
1357 2015-04-15 Timothy Horton <timothy_horton@apple.com>
1359 Custom CSS cursors do not use -webkit-image-set on retina displays
1360 https://bugs.webkit.org/show_bug.cgi?id=120783
1362 Reviewed by Beth Dakin.
1363 Patch by Evan Wallace <evan.exe@gmail.com>.
1365 Add a manual test for custom CSS cursors on retina displays.
1367 * ManualTests/retina-cursors.html: Added.
1369 2015-04-15 Alex Christensen <achristensen@webkit.org>
1371 Progress towards CMake on Mac.
1372 https://bugs.webkit.org/show_bug.cgi?id=143785
1374 Reviewed by Csaba Osztrogonác.
1377 * Source/cmake/OptionsMac.cmake:
1378 * Source/cmake/WebKitFS.cmake:
1380 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
1382 Cannot click "Next" button on Google two-factor auth setup page
1384 <https://bugs.webkit.org/show_bug.cgi?id=143624>
1385 <rdar://problem/19175714>
1387 Reviewed by Darin Adler.
1389 * ManualTests/button-that-focuses-itself-on-click.html: Added.
1391 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
1393 [cmake] REGRESSION(182663): It broke feature dependency handling
1394 https://bugs.webkit.org/show_bug.cgi?id=143665
1396 Reviewed by Csaba Osztrogonác.
1398 Don't try to check the value of options before defining the options.
1400 * Source/cmake/WebKitFeatures.cmake:
1402 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
1404 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
1405 https://bugs.webkit.org/show_bug.cgi?id=143664
1407 Reviewed by Gyuyoung Kim.
1409 * Source/cmake/OptionsEfl.cmake:
1410 * Source/cmake/OptionsGTK.cmake:
1411 * Source/cmake/WebKitFeatures.cmake:
1412 * Source/cmakeconfig.h.cmake:
1414 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1416 [EFL] Enable Media Source
1417 https://bugs.webkit.org/show_bug.cgi?id=143635
1419 Reviewed by Csaba Osztrogonác.
1421 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
1423 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1425 [CMake] Miscellaneous issues in WebKitFeatures.cmake
1426 https://bugs.webkit.org/show_bug.cgi?id=143636
1428 Reviewed by Martin Robinson.
1430 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
1431 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
1433 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
1434 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
1436 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
1438 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
1440 Fix ENABLE_TOUCH_SLIDER so that it can be used
1444 * Source/cmake/WebKitFeatures.cmake:
1446 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1448 [CMake] Print sorted feature list at the very end of the configure process
1449 https://bugs.webkit.org/show_bug.cgi?id=143596
1451 Reviewed by Martin Robinson.
1453 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
1454 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
1455 and sort the options before printing. Reorder some code so that features still get
1456 propagated to the bindings generators.
1458 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1460 [CMake] Options should be marked as advanced by default
1461 https://bugs.webkit.org/show_bug.cgi?id=143572
1463 Reviewed by Gyuyoung Kim.
1465 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
1466 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
1467 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
1468 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
1469 option without making it public.
1471 * Source/cmake/WebKitFeatures.cmake:
1473 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1475 [CMake] Remove unnecessary ENABLE_WEBCORE switch
1476 https://bugs.webkit.org/show_bug.cgi?id=143584
1478 Reviewed by Csaba Osztrogonác.
1480 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
1484 * Source/CMakeLists.txt:
1485 * Source/cmake/OptionsGTK.cmake:
1486 * Source/cmake/WebKitFS.cmake:
1488 2015-04-08 Filip Pizlo <fpizlo@apple.com>
1490 Unreviewed, revert accidental commit.
1494 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
1496 Add CMake build system for WinCairo port.
1497 https://bugs.webkit.org/show_bug.cgi?id=115944
1499 Reviewed by Chris Dumez.
1501 * Source/cmake/OptionsWindows.cmake:
1502 * Source/cmake/WebKitMacros.cmake:
1503 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1505 2015-04-06 Alberto Garcia <berto@igalia.com>
1507 [GTK] Fix HPPA build
1508 https://bugs.webkit.org/show_bug.cgi?id=143453
1510 Reviewed by Darin Adler.
1512 Add HPPA to the list of supported CPUs.
1516 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
1518 Unreviewed, kick the GTK bots to fix an incremental build issue.
1520 * Source/cmake/OptionsGTK.cmake:
1522 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
1524 Fix the EFL and GTK build after r182243
1525 https://bugs.webkit.org/show_bug.cgi?id=143361
1527 Reviewed by Csaba Osztrogonác.
1529 * Source/PlatformEfl.cmake: Add a custom command that copies
1530 the InspectorBackendCommands.js file into the proper directory
1531 under DerivedSources/WebInspectorUI/.
1533 2015-04-01 Alex Christensen <achristensen@webkit.org>
1535 Progress towards CMake on Windows and Mac.
1536 https://bugs.webkit.org/show_bug.cgi?id=143293
1538 Reviewed by Filip Pizlo.
1541 Set DERIVED_SOURCES_WTF_DIR for Windows.
1542 * Source/CMakeLists.txt:
1543 Don't compile bmalloc on Windows.
1544 * Source/cmake/OptionsCommon.cmake:
1545 Use the absolute path of the C preprocessor.
1546 * Source/cmake/OptionsWinCairo.cmake:
1547 Added needed definitions.
1548 * Source/cmake/OptionsWindows.cmake:
1549 Set some default values and removed support for old Visual Studio versions before /MP.
1550 * Source/cmake/WebKitFS.cmake:
1551 Make WTF DerivedSources directory.
1552 * Source/cmake/WebKitMacros.cmake:
1553 Added ADD_PRECOMPILED_HEADER macro based on
1554 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1556 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
1558 Use colored diagnostics when building with cmake + ninja + clang
1559 https://bugs.webkit.org/show_bug.cgi?id=143297
1561 Reviewed by Žan Doberšek.
1563 Because that ninja sets subprocess stdout/stderr to a pipe, clang
1564 disables colored output.
1565 This patch forces clang to use colored diagnostics when we are using
1568 * Source/cmake/OptionsCommon.cmake:
1570 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1572 [CMake] Update old CMakeList.txt in gtest
1573 https://bugs.webkit.org/show_bug.cgi?id=143192
1575 Reviewed by Darin Adler.
1577 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
1578 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
1579 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
1581 * Source/CMakeLists.txt:
1582 * Source/cmake/gtest/CMakeLists.txt: Removed.
1584 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1586 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
1587 https://bugs.webkit.org/show_bug.cgi?id=143138
1589 Reviewed by Csaba Osztrogonác.
1591 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
1592 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
1594 * Source/cmake/OptionsWindows.cmake:
1595 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
1596 * Source/cmake/WebKitMacros.cmake:
1598 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1600 [GStreamer] share GL context in pipeline, part 2
1601 https://bugs.webkit.org/show_bug.cgi?id=143049
1603 Reviewed by Carlos Garcia Campos.
1605 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
1606 OpenGL/ES2 is found and GLX/EGL is found too.
1608 2015-03-26 Alex Christensen <achristensen@webkit.org>
1610 Progress towards CMake on Mac.
1611 https://bugs.webkit.org/show_bug.cgi?id=143112
1613 Reviewed by Chris Dumez.
1615 * Source/cmake/OptionsMac.cmake:
1617 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
1619 [EFL] Add OpenWebRTC in jhbuild
1620 https://bugs.webkit.org/show_bug.cgi?id=142778
1622 Reviewed by Gyuyoung Kim.
1624 Original patch by Philippe Normand <pnormand@igalia.com>
1626 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
1627 mediastream build is enabled.
1629 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
1631 [GTK] Add a configure option to build without Redirected XComposite Window
1632 https://bugs.webkit.org/show_bug.cgi?id=142865
1634 Reviewed by Žan Doberšek.
1636 The Redirected XComposite Window was added to support some
1637 features like GtkOverlay, but in cases where we don't need such
1638 features, it's more efficient to use the XID of the WebKitWebView
1639 window as the native surface handle for the accelerated
1640 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
1641 that is enabled by default for X11 target when OpenGL is enabled.
1643 * Source/cmake/OptionsGTK.cmake:
1645 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
1647 [GTK] Search for the Wayland dependency when enabling Wayland target
1648 https://bugs.webkit.org/show_bug.cgi?id=142876
1650 Reviewed by Carlos Garcia Campos.
1652 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
1653 requirement of either the GTK+ or GDK pkg-config files, so we have to
1654 search for it ourselves when WebKitGTK+ has been configured to support
1655 the Wayland windowing target.
1657 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1659 Unreviewed, kick the GTK bots to regenerate makefile.
1660 https://bugs.webkit.org/show_bug.cgi?id=137394
1662 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
1663 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
1665 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1667 Unreviewed, kick the GTK bots to regenerate makefile.
1668 https://bugs.webkit.org/show_bug.cgi?id=137394
1670 * Source/cmake/OptionsEfl.cmake:
1672 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
1674 [GTK] Fix inspector userinterface related incremental build issue
1675 https://bugs.webkit.org/show_bug.cgi?id=142849
1677 Reviewed by Carlos Garcia Campos.
1679 * Source/cmake/OptionsGTK.cmake: Revert r181733.
1681 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
1683 Unreviewed, kick the GTK bots to regenerate makefile.
1685 * Source/cmake/OptionsGTK.cmake:
1687 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
1689 [EFL] Expose JavaScript binding interface through ewk_extension
1690 https://bugs.webkit.org/show_bug.cgi?id=142033
1692 Reviewed by Gyuyoung Kim.
1694 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
1696 2015-03-17 Philippe Normand <pnormand@igalia.com>
1698 [GTK] basic OpenWebRTC build support
1699 https://bugs.webkit.org/show_bug.cgi?id=142393
1701 Reviewed by Carlos Garcia Campos.
1703 * Source/cmake/FindOpenWebRTC.cmake: Added.
1704 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
1705 mediastream build is enabled.
1707 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1709 [CMake][EFL] Build test tools only for developer mode
1710 https://bugs.webkit.org/show_bug.cgi?id=142761
1712 Reviewed by Csaba Osztrogonác.
1714 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
1716 * Source/cmake/OptionsEfl.cmake:
1717 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
1718 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
1719 * Source/cmakeconfig.h.cmake:
1721 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
1723 Enable ES6 classes by default
1724 https://bugs.webkit.org/show_bug.cgi?id=142774
1726 Reviewed by Gavin Barraclough.
1728 * Source/cmake/WebKitFeatures.cmake:
1730 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1732 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
1733 https://bugs.webkit.org/show_bug.cgi?id=142722
1735 Reviewed by Csaba Osztrogonác.
1737 Categorize to define cmake variables, to find necessary packages,
1738 use upper case for "glib_conponents" cmake variable name, re-arrange
1739 wrong alphabet sorting, and so on.
1741 * CMakeLists.txt: Remove WinCE port.
1742 * Source/cmake/OptionsEfl.cmake:
1744 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1746 [GStreamer] share GL context in pipeline
1747 https://bugs.webkit.org/show_bug.cgi?id=142693
1749 Reviewed by Philippe Normand.
1751 Add search of gstreamer-gl library in the GStreamer installation. If
1752 it is found, WTF_USE_GSTREAMER_GL macro is defined.
1754 * Source/cmake/FindGStreamer.cmake:
1755 * Source/cmake/OptionsGTK.cmake:
1757 2015-03-13 Alex Christensen <achristensen@webkit.org>
1759 Progress towards CMake on Mac.
1760 https://bugs.webkit.org/show_bug.cgi?id=142680
1762 Reviewed by Gyuyoung Kim.
1765 * Source/PlatformMac.cmake: Added stub.
1766 * Source/cmake/OptionsMac.cmake:
1767 Change defines to get CMake working.
1769 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1771 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
1772 https://bugs.webkit.org/show_bug.cgi?id=126688
1774 Reviewed by Gustavo Noronha Silva.
1776 Add ENABLE_MINIBROWSER option, enabled by default for development
1777 builds and disabled for production builds unless explicilty enabled.
1779 * Source/cmake/OptionsGTK.cmake:
1781 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1783 [GTK] Do not look for child processes in the UI process binary path
1784 https://bugs.webkit.org/show_bug.cgi?id=135752
1786 Reviewed by Gustavo Noronha Silva.
1788 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
1789 build for development builds.
1791 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
1793 [GTK] Add a configure option to build with OpenGL ES 2
1794 https://bugs.webkit.org/show_bug.cgi?id=142498
1796 Reviewed by Martin Robinson.
1798 Add ENABLE_GLES2 option. It's disabled by default, but if passed
1799 GLES2 is required and OpenGL is not even searched. Otherwise we
1800 search for OpenGL as usual, using it only if present.
1802 * Source/cmake/OptionsGTK.cmake:
1804 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
1806 [cmake] Handle unused parameter warnings as build errors except in WebKit2
1807 https://bugs.webkit.org/show_bug.cgi?id=142338
1809 Reviewed by Gyuyoung Kim.
1811 * Source/cmake/WebKitHelpers.cmake:
1813 2015-03-03 Daniel Bates <dabates@apple.com>
1815 Convert ManualTests/svg-tooltip.svg to a DRT test
1816 https://bugs.webkit.org/show_bug.cgi?id=140480
1818 Reviewed by Alex Christensen.
1820 * ManualTests/svg-tooltip.svg: Removed.
1822 2015-03-02 Debarshi Ray <debarshir@gnome.org>
1824 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
1825 https://bugs.webkit.org/show_bug.cgi?id=142165
1827 Reviewed by Carlos Garcia Campos.
1829 * Source/cmake/gtksymbols.filter:
1831 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
1833 [EFL] Remove unnecessary comment after r179110
1834 https://bugs.webkit.org/show_bug.cgi?id=142042
1836 Reviewed by Gyuyoung Kim.
1838 * Source/cmake/OptionsEfl.cmake:
1840 2015-02-23 Tomas Popela <tpopela@redhat.com>
1842 [GTK] Fails to compile with cmake 3.2.x
1843 https://bugs.webkit.org/show_bug.cgi?id=141796
1845 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
1846 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
1847 added and the build will fail.
1849 Reviewed by Martin Robinson.
1851 * Source/cmake/OptionsGTK.cmake:
1853 2015-02-20 Alexey Proskuryakov <ap@apple.com>
1855 Remove svn:keywords property.
1857 As far as I can tell, the property had no effect on any of these files, but also,
1858 when it has effect it's likely harmful.
1860 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
1861 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
1862 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
1863 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
1864 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
1865 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
1866 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
1867 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
1868 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
1869 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
1870 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
1871 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
1872 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
1873 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
1875 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1877 [CMAKE] Remove CMakeLists.txt in WK1 port
1878 https://bugs.webkit.org/show_bug.cgi?id=141617
1880 Reviewed by Anders Carlsson.
1882 Nobody uses CMake in WK1 port. Remove it.
1886 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
1888 Unreviewed, remove empty directories.
1890 * ManualTests/qt: Removed.
1892 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1894 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
1895 https://bugs.webkit.org/show_bug.cgi?id=141481
1897 Reviewed by Csaba Osztrogonác.
1899 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
1901 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1903 [EFL][GTK] Use bmalloc instead of tcmalloc
1904 https://bugs.webkit.org/show_bug.cgi?id=140162
1906 Reviewed by Carlos Garcia Campos.
1908 Add bmalloc directory to build list.
1910 * CMakeLists.txt: Define BMALLOC_DIR directory.
1911 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
1913 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
1915 [GTK] Add default color chooser implementation using GtkColorChooserDialog
1916 https://bugs.webkit.org/show_bug.cgi?id=141392
1918 Reviewed by Gustavo Noronha Silva.
1920 Enable INPUT_TYPE_COLOR by default for GTK+ port.
1922 * Source/cmake/OptionsGTK.cmake:
1924 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
1926 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
1927 https://bugs.webkit.org/show_bug.cgi?id=141328
1929 Reviewed by Darin Adler.
1931 Added as manual test because it involves a huge grid allocation
1932 which is very slow on Debug bots, the only ones capable to trigger
1935 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
1937 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
1939 [Streams API] Implement a barebone ReadableStream interface
1940 https://bugs.webkit.org/show_bug.cgi?id=141045
1942 Reviewed by Benjamin Poulain.
1944 * Source/cmake/WebKitFeatures.cmake:
1945 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
1947 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1949 Revert accidental change in r179490.
1953 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1955 Unreviewed, revert accidental change to Makefile.shared in r179478
1959 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1961 [CMake] Minimum python version should be 2.7.
1962 https://bugs.webkit.org/show_bug.cgi?id=140997
1964 Reviewed by Csaba Osztrogonác.
1968 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1970 Apply feTurbulence spec change to fix zero length vector generation
1971 https://bugs.webkit.org/show_bug.cgi?id=140812
1973 Reviewed by Darin Adler.
1975 Recently a bug with the turbulence algorithm was corrected in the
1976 Filter Effects specification.
1977 For some seed values this bug allowed zero length vectors to be generated.
1978 This resulted in large solid color squares being present in the generated image.
1979 The feTurbulence algorithm was updated to reject zero length vectors. This patch
1980 applies that change in WebCore.
1982 Test: svg/filters/feTurbulence_bad_seeds.html
1984 * platform/graphics/filters/FETurbulence.cpp:
1985 (WebCore::FETurbulence::initPaint):
1986 Added rejection sampling during vector generation to avoid zero length vectors.
1988 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1990 [cmake] Remove compiler version calculate cruft
1991 https://bugs.webkit.org/show_bug.cgi?id=140885
1993 Reviewed by Darin Adler.
1995 * Source/cmake/WebKitHelpers.cmake:
1997 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1999 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
2000 https://bugs.webkit.org/show_bug.cgi?id=140886
2002 Reviewed by Žan Doberšek.
2004 * Source/cmake/WebKitHelpers.cmake:
2006 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
2008 [GTK] gtkdoc does not appear in DevHelp
2009 https://bugs.webkit.org/show_bug.cgi?id=139369
2011 Reviewed by Philippe Normand.
2013 Expect the gtkdoc to be generated in folders named with the API version.
2015 * Source/PlatformGTK.cmake:
2017 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
2019 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
2020 https://bugs.webkit.org/show_bug.cgi?id=140609
2022 Reviewed by Csaba Osztrogonác.
2024 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
2025 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
2026 compilation flags. Those were added after the jsCStack branch merge, but
2027 can now be removed since the -ftree-dce issues were fixed in GCC, and
2028 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
2030 * Source/cmake/OptionsEfl.cmake:
2031 * Source/cmake/OptionsGTK.cmake:
2033 2015-01-26 Commit Queue <commit-queue@webkit.org>
2035 Unreviewed, rolling out r179107.
2036 https://bugs.webkit.org/show_bug.cgi?id=140880
2038 The GCC in the bots doesn't support the AsyncTask
2039 implementation (Requested by KaL on #webkit).
2043 "[GTK] Enable IndexedDB"
2044 https://bugs.webkit.org/show_bug.cgi?id=98932
2045 http://trac.webkit.org/changeset/179107
2047 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
2049 [GTK] Enable IndexedDB
2050 https://bugs.webkit.org/show_bug.cgi?id=98932
2052 Reviewed by Žan Doberšek.
2054 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
2055 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
2057 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
2059 [GTK] Add initial database process support
2060 https://bugs.webkit.org/show_bug.cgi?id=139491
2062 Reviewed by Sergio Villar Senin.
2064 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
2066 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
2068 Add a build flag for ES6 class syntax
2069 https://bugs.webkit.org/show_bug.cgi?id=140760
2071 Reviewed by Michael Saboff.
2073 * Source/cmake/WebKitFeatures.cmake:
2074 * Source/cmakeconfig.h.cmake:
2076 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2078 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
2079 https://bugs.webkit.org/show_bug.cgi?id=140049
2081 Reviewed by Gyuyoung Kim.
2083 * Source/cmake/OptionsCommon.cmake:
2085 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2087 Remove ENABLE(INSPECTOR) ifdef guards
2088 https://bugs.webkit.org/show_bug.cgi?id=140668
2090 Reviewed by Darin Adler.
2092 * Source/PlatformEfl.cmake:
2093 * Source/cmake/OptionsEfl.cmake:
2094 * Source/cmake/OptionsGTK.cmake:
2095 * Source/cmake/OptionsMac.cmake:
2096 * Source/cmake/WebKitFeatures.cmake:
2097 * Source/cmakeconfig.h.cmake:
2099 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
2101 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
2103 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2105 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2107 [CMAKE] Fix cmake warning
2108 https://bugs.webkit.org/show_bug.cgi?id=140497
2110 Reviewed by Gustavo Noronha Silva.
2112 r173155 already tried to fix cmake warning though, the warning is still exist.
2113 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
2114 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
2115 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
2116 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
2117 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
2121 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
2123 [GTK] Generate the make dist manifest from a CMake template file
2124 https://bugs.webkit.org/show_bug.cgi?id=139387
2126 Reviewed by Martin Robinson.
2128 Generate manifest.txt from manifest.txt.in. Only expose the dist and
2129 distcheck targets for developer builds, as they won't work when
2130 building from a tarball because the manifest is not distributed.
2132 * Source/PlatformGTK.cmake:
2134 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
2136 Remove ENABLE(SQL_DATABASE) guards
2137 https://bugs.webkit.org/show_bug.cgi?id=140434
2139 Reviewed by Darin Adler.
2141 * Source/cmake/OptionsMac.cmake:
2142 * Source/cmake/WebKitFeatures.cmake:
2143 * Source/cmakeconfig.h.cmake:
2145 2015-01-11 Sam Weinig <sam@webkit.org>
2147 Remove support for SharedWorkers
2148 https://bugs.webkit.org/show_bug.cgi?id=140344
2150 Reviewed by Anders Carlsson.
2152 * Source/cmake/OptionsEfl.cmake:
2153 * Source/cmake/OptionsGTK.cmake:
2154 * Source/cmake/OptionsMac.cmake:
2155 * Source/cmake/WebKitFeatures.cmake:
2156 * Source/cmakeconfig.h.cmake:
2158 2015-01-10 Dan Bernstein <mitz@apple.com>
2160 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
2161 https://bugs.webkit.org/show_bug.cgi?id=140339
2163 Reviewed by Mark Rowe.
2165 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
2166 prevents unnecessary rebuilding due to PATH differences.
2168 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
2170 [GTK][ThreadedCompositor] Add support for threaded compositor.
2171 https://bugs.webkit.org/show_bug.cgi?id=118265
2173 Reviewed by Martin Robinson.
2175 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
2176 autotools build systems. The feature is disabled by default.
2177 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
2178 from the feature flags.
2180 * Source/cmake/OptionsEfl.cmake:
2181 * Source/cmake/OptionsGTK.cmake:
2182 * Source/cmake/WebKitFeatures.cmake:
2183 * Source/cmakeconfig.h.cmake:
2185 2014-12-23 Alexey Proskuryakov <ap@apple.com>
2187 Simplify building with ASan
2188 https://bugs.webkit.org/show_bug.cgi?id=139916
2190 Reviewed by Mark Rowe.
2192 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
2194 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
2196 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
2198 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2200 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
2202 Null dereference performing a "TapAndAHalf" gesture in Google search field
2204 <https://bugs.webkit.org/show_bug.cgi?id=139506>
2205 <rdar://problem/19028828>
2207 Reviewed by Darin Adler.
2209 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
2211 2014-12-10 Dean Jackson <dino@apple.com>
2213 Blur filter performance test doesn't provide results
2214 https://bugs.webkit.org/show_bug.cgi?id=139462
2216 Reviewed by Sam Weinig.
2218 This can't currently work under our performance test
2219 infrastructure. Move it to a manual test to avoid
2220 putting FAILures into the results.
2222 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
2224 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2226 [GTK][WK2] Add HTML5 Notifications support
2227 https://bugs.webkit.org/show_bug.cgi?id=61140
2229 Reviewed by Carlos Garcia Campos.
2231 * Source/cmake/FindLibNotify.cmake: Added.
2232 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
2233 libnotify and use it for a default implementation when found.
2235 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
2237 REGRESSION(r155906): Page content disappears on Tuaw article after loading
2238 https://bugs.webkit.org/show_bug.cgi?id=138100
2240 Reviewed by Simon Fraser.
2242 DRT causes an extra paint which makes it impossible to test this with
2245 * ManualTests/float-layer-not-painting.html: Added.
2247 2014-12-07 Alberto Garcia <berto@igalia.com>
2249 [GTK] WebKit has a new required dependency on GnuTLS
2250 https://bugs.webkit.org/show_bug.cgi?id=136158
2252 Reviewed by Martin Robinson.
2254 Detect if GnuTLS is installed and enable or disable subtle crypto
2255 support accordingly.
2257 * Source/cmake/OptionsGTK.cmake:
2259 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
2261 [GTK] Missing API detected in GObject DOM bindings after r176630
2262 https://bugs.webkit.org/show_bug.cgi?id=139201
2264 Reviewed by Gustavo Noronha Silva.
2266 Change GENERATE_BINDINGS macro to receive a list of optional
2267 additional dependencies, so that we can add more dependecies
2268 without having to change the macro.
2270 * Source/cmake/WebKitMacros.cmake:
2272 2014-12-05 Simon Fraser <simon.fraser@apple.com>
2274 Programmatic scrolling and content changes are not always synchronized
2275 https://bugs.webkit.org/show_bug.cgi?id=139245
2276 rdar://problem/18833612
2278 Reviewed by Anders Carlsson.
2280 Manual test that tries to sync layout with programmatic scrolling.
2282 * ManualTests/programmatic-scroll-flicker.html: Added.
2284 2014-12-04 Alberto Garcia <berto@igalia.com>
2286 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
2287 https://bugs.webkit.org/show_bug.cgi?id=136576
2289 Reviewed by Carlos Garcia Campos.
2291 CMake should complain if Accelerated 2D Canvas is explicitly
2292 enabled but cairo-gl is not found.
2294 * Source/cmake/OptionsGTK.cmake:
2296 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2298 [EFL] Add subtle crypto to the build system
2299 https://bugs.webkit.org/show_bug.cgi?id=138612
2301 Reviewed by Csaba Osztrogonác.
2303 * Source/cmake/OptionsEfl.cmake:
2305 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2307 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
2308 https://bugs.webkit.org/show_bug.cgi?id=139085
2310 Reviewed by Andreas Kling.
2312 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
2313 * Source/cmake/WebKitFeatures.cmake: ditto.
2314 * Source/cmakeconfig.h.cmake: ditto.
2316 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
2318 [EFL] Drop support for the EFL 1.7
2319 https://bugs.webkit.org/show_bug.cgi?id=139114
2321 Reviewed by Gyuyoung Kim.
2323 * Source/cmake/EFLHelpers.cmake: Removed.
2324 * Source/cmake/FindEcore.cmake: Removed.
2325 * Source/cmake/FindEdje.cmake: Removed.
2326 * Source/cmake/FindEet.cmake: Removed.
2327 * Source/cmake/FindEeze.cmake: Removed.
2328 * Source/cmake/FindEfreet.cmake: Removed.
2329 * Source/cmake/FindEina.cmake: Removed.
2330 * Source/cmake/FindElementary.cmake: Removed.
2331 * Source/cmake/FindEvas.cmake: Removed.
2332 * Source/cmake/OptionsEfl.cmake:
2334 2014-11-28 Philippe Normand <pnormand@igalia.com>
2336 [CMake] Build failure against GStreamer git master
2337 https://bugs.webkit.org/show_bug.cgi?id=138872
2339 Reviewed by Csaba Osztrogon.
2341 * Source/cmake/FindGStreamer.cmake: Simplified the
2342 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
2343 headers lookup, there's no need to do this manually. Also
2344 explicitely check the version specified in GStreamer_FIND_VERSION.
2346 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
2348 [EFL] Remove E_Dbus dependency
2349 https://bugs.webkit.org/show_bug.cgi?id=136355
2351 Reviewed by Gyuyoung Kim.
2353 * Source/cmake/FindE_DBus.cmake: Removed.
2354 * Source/cmake/OptionsEfl.cmake:
2356 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
2358 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2360 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2362 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
2364 [CMake] Use ld.gold if it is available to speedup builds
2365 https://bugs.webkit.org/show_bug.cgi?id=137953
2367 Reviewed by Carlos Garcia Campos.
2369 * Source/cmake/OptionsCommon.cmake:
2371 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
2373 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
2374 https://bugs.webkit.org/show_bug.cgi?id=138840
2376 Reviewed by Csaba Osztrogonác.
2378 * Source/cmake/OptionsCommon.cmake:
2380 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
2382 Remove Source/Platform cruft
2383 https://bugs.webkit.org/show_bug.cgi?id=138658
2385 Reviewed by Anders Carlsson.
2388 * Source/Platform: Removed.
2390 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
2392 Enable Cortex-A53-specific code paths by default if core is detected.
2393 https://bugs.webkit.org/show_bug.cgi?id=138499
2395 Reviewed by Csaba Osztrogonác.
2397 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
2398 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
2401 Since on ARM64/Linux the part number that cpuinfo reports depends on
2402 the core the query is run on, the check is bound to and executed on the
2403 available cores one by one.
2405 * Source/cmake/OptionsCommon.cmake:
2407 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2409 [EFL] Remove unnecessary version check from OptionsEfl.cmake
2410 https://bugs.webkit.org/show_bug.cgi?id=138498
2412 Reviewed by Csaba Osztrogonác.
2414 * Source/cmake/OptionsEfl.cmake:
2416 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2418 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
2419 https://bugs.webkit.org/show_bug.cgi?id=138465
2421 Reviewed by Gyuyoung Kim.
2423 * Source/cmake/OptionsEfl.cmake:
2425 2014-11-03 Dean Jackson <dino@apple.com>
2427 Add ENABLE_FILTERS_LEVEL_2 feature guard.
2428 https://bugs.webkit.org/show_bug.cgi?id=138362
2430 Reviewed by Tim Horton.
2432 Add a new feature define for Level 2 of CSS Filters.
2433 http://dev.w3.org/fxtf/filters-2/
2435 * Source/cmake/OptionsEfl.cmake:
2436 * Source/cmake/OptionsGTK.cmake:
2437 * Source/cmake/OptionsMac.cmake:
2438 * Source/cmake/WebKitFeatures.cmake:
2439 * Source/cmakeconfig.h.cmake:
2441 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
2443 Workaround for Cortex-A53 erratum 835769
2444 https://bugs.webkit.org/show_bug.cgi?id=138315
2446 Reviewed by Filip Pizlo.
2448 This patch introduces CMake variable and preprocessor macro
2449 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
2450 code paths, if set true.
2452 * Source/cmake/OptionsCommon.cmake:
2453 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
2455 * Source/cmakeconfig.h.cmake:
2456 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
2458 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
2460 [GTK] Fix the build of FTL JIT
2461 https://bugs.webkit.org/show_bug.cgi?id=138298
2463 Reviewed by Carlos Garcia Campos.
2465 * Source/cmake/OptionsGTK.cmake:
2466 Remove the need for the LIBCXXABI package.
2468 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
2470 REGRESSION(CMake): Make it possible to build without introspection
2471 https://bugs.webkit.org/show_bug.cgi?id=138006
2473 Reviewed by Philippe Normand.
2475 Add ENABLE_INTROSPECTION option.
2477 * Source/PlatformGTK.cmake: Dot not add gir global target if
2478 introspection is disabled.
2479 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
2480 introspection is disabled.
2482 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
2484 [GTK] Support script message handlers WebKitUserContentManager
2485 https://bugs.webkit.org/show_bug.cgi?id=133730
2487 Reviewed by Carlos Garcia Campos.
2489 Support user script message handlers in WebKitUserContentManager.
2490 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
2491 an option is added to the CMake build files. The option is disabled
2492 globally by default, and the WebKitGTK port enables it. On the API
2493 level, two new methods to register and unregister names are provided
2494 in the "window.webkit" namespace, and on message reception the
2495 "WebKitUserContentManager::script-message-received" signal is
2496 emitted, using the registered names as signal detail.
2498 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
2499 ENABLE_USER_MESSAGE_HANDLERS feature by default.
2500 * Source/cmake/WebKitFeatures.cmake: Add feature description for
2501 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
2503 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
2505 [GTK] Bump libsoup's minimum version to 2.42.0.
2506 https://bugs.webkit.org/show_bug.cgi?id=138086
2508 Reviewed by Martin Robinson.
2510 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
2511 soup-version.h header was added to soup.h in 2.41.4, which then becomes
2512 the minimum version required to build the port these days.
2514 In addition, since the autotools build system required 2.42.0 before
2515 being retired, require the same version here. Version 2.42.0 was also
2517 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
2519 * Source/cmake/OptionsGTK.cmake:
2521 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2523 [EFL] Remove unnecessary defines from OptionsEfl.cmake
2524 https://bugs.webkit.org/show_bug.cgi?id=138132
2526 Reviewed by Csaba Osztrogonác.
2528 * Source/cmake/OptionsEfl.cmake:
2530 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
2532 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2534 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2536 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
2538 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
2539 https://bugs.webkit.org/show_bug.cgi?id=137946
2541 Reviewed by Gyuyoung Kim.
2543 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
2545 * Source/cmake/OptionsEfl.cmake:
2547 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2549 Fix FTL Native Inlining for EFL
2550 https://bugs.webkit.org/show_bug.cgi?id=137774
2552 Reviewed by Michael Saboff.
2554 Updated CMake for FTL Native Inlining.
2557 * Source/cmake/FindClang.cmake: Added.
2558 * Source/cmake/OptionsEfl.cmake:
2559 * Source/cmakeconfig.h.cmake:
2561 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
2563 Web Inspector: Generate all Inspector domains together in JavaScriptCore
2564 https://bugs.webkit.org/show_bug.cgi?id=137748
2566 Reviewed by Brian Burg.
2568 * Source/PlatformEfl.cmake:
2570 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
2572 [GTK] Add initial gestures support
2573 https://bugs.webkit.org/show_bug.cgi?id=137812
2575 Reviewed by Sergio Villar Senin.
2577 Check if the GTK+ version supports gestures or not.
2579 * Source/cmake/FindGTK3.cmake:
2580 * Source/cmake/OptionsGTK.cmake:
2582 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
2584 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
2585 https://bugs.webkit.org/show_bug.cgi?id=137781
2587 Reviewed by Martin Robinson.
2589 We used to enable smooth scrolling unconditionally in autotools
2590 (via WebKitFeatures.m4), but since the switch to CMake it's
2591 unconditionally disabled, so changing the setting doesn't have any
2594 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
2596 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
2598 Removing CUSTOM_PROTOCOLS guard
2599 https://bugs.webkit.org/show_bug.cgi?id=137741
2601 Reviewed by Benjamin Poulain.
2603 * Source/cmake/OptionsEfl.cmake:
2605 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
2607 [EFL] Enable WebP support.
2608 https://bugs.webkit.org/show_bug.cgi?id=136156
2610 Reviewed by Gyuyoung Kim.
2612 Add WebP package finding rule.
2614 * Source/cmake/OptionsEfl.cmake:
2616 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
2618 [EFL] Enable custom URI schemes with CustomProtocols
2619 https://bugs.webkit.org/show_bug.cgi?id=128177
2621 Reviewed by Gyuyoung Kim.
2623 Fixing ewk_context_url_scheme_register() ewebkit2 API
2624 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
2626 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
2628 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
2630 Bump version to 2.7.0
2631 https://bugs.webkit.org/show_bug.cgi?id=137301
2633 Rubber-stamped by Carlos Garcia Campos.
2635 * Source/cmake/OptionsGTK.cmake: Bump version numbers
2637 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2639 [EFL] Rename TEST_THEME_DIR macro
2640 https://bugs.webkit.org/show_bug.cgi?id=137244
2642 Reviewed by Csaba Osztrogonác.
2644 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
2646 2014-09-27 Dan Bernstein <mitz@apple.com>
2648 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
2649 https://bugs.webkit.org/show_bug.cgi?id=137053
2651 Reviewed by Mark Rowe.
2653 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2654 In the build pre-action, pass the --wksi and --llvm options to
2655 copy-webkitlibraries-to-product-directory.
2656 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
2658 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
2660 [GTK] Enable CSS_IMAGE_SET in production builds
2661 https://bugs.webkit.org/show_bug.cgi?id=137142
2663 Reviewed by Alejandro G. Castro.
2665 This is required by the inspector to show some of the icons that
2666 has a HiDPI variant.
2668 * Source/cmake/OptionsGTK.cmake:
2670 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
2672 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
2673 https://bugs.webkit.org/show_bug.cgi?id=136377
2675 Reviewed by Philippe Normand.
2677 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
2678 for CMake versions less than 3.
2680 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
2682 Remove WinCE port from trunk
2683 https://bugs.webkit.org/show_bug.cgi?id=136951
2685 Reviewed by Alex Christensen.
2687 * Source/cmake/OptionsWinCE.cmake: Removed.
2688 * Source/cmake/WebKitPackaging.cmake:
2690 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
2692 [EFL][GTK] Remove WebKit1 related codes
2693 https://bugs.webkit.org/show_bug.cgi?id=136853
2695 Reviewed by Csaba Osztrogonác.
2697 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
2700 * Source/PlatformGTK.cmake:
2702 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2705 https://bugs.webkit.org/show_bug.cgi?id=136820
2707 Reviewed by Csaba Osztrogonác.
2709 * Source/cmake/FindICU.cmake:
2711 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
2713 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
2714 https://bugs.webkit.org/show_bug.cgi?id=136814
2716 Reviewed by Philippe Normand.
2718 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
2719 We bundle the wayland-egl dependency with wayland-client and wayland-server
2720 and store the resulting variables with the WAYLAND_ prefix. Because of this
2721 this line wasn't exporting anything useful.
2723 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
2725 URTBF after r173574.
2727 * Source/cmake/WebKitMacros.cmake:
2729 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
2731 [JavaScriptCore] Fix FTL on platform EFL.
2732 https://bugs.webkit.org/show_bug.cgi?id=133571
2734 Reviewed by Filip Pizlo.
2738 * Source/cmake/FindLIBCXXABI.cmake: Removed.
2739 * Source/cmake/OptionsEfl.cmake:
2741 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2744 https://bugs.webkit.org/show_bug.cgi?id=136571
2746 Reviewed by Darin Adler.
2748 * Source/cmake/OptionsEfl.cmake:
2749 * Source/cmake/OptionsGTK.cmake:
2750 * Source/cmake/OptionsMac.cmake:
2751 * Source/cmake/WebKitFeatures.cmake:
2752 * Source/cmakeconfig.h.cmake:
2754 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2756 Remove CSS_FILTERS flag
2757 https://bugs.webkit.org/show_bug.cgi?id=136529
2759 Reviewed by Dirk Schulze.
2761 * Source/cmake/OptionsEfl.cmake:
2762 * Source/cmake/OptionsGTK.cmake:
2763 * Source/cmake/OptionsMac.cmake:
2764 * Source/cmake/WebKitFeatures.cmake:
2765 * Source/cmakeconfig.h.cmake:
2767 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2769 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
2770 https://bugs.webkit.org/show_bug.cgi?id=136194
2772 Reviewed by Csaba Osztrogonác.
2774 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
2778 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2780 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
2781 https://bugs.webkit.org/show_bug.cgi?id=135560
2783 Reviewed by Gyuyoung Kim.
2785 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
2787 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
2789 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
2790 https://bugs.webkit.org/show_bug.cgi?id=136343
2792 Reviewed by David Kilzer.
2794 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
2796 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2797 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2799 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
2801 [EFL] Share fast/speechsynthesis/ with other ports
2802 https://bugs.webkit.org/show_bug.cgi?id=136224
2804 Reviewed by Chris Fleizach.
2806 Enable WebSpeech for EFL.
2808 * Source/cmake/OptionsEfl.cmake:
2810 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
2812 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
2813 https://bugs.webkit.org/show_bug.cgi?id=136127
2815 Reviewed by Gyuyoung Kim.
2817 Add build support for espeak.
2819 * Source/cmake/FindEspeak.cmake: Added.
2820 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
2822 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
2824 [EFL] Build break using clang
2825 https://bugs.webkit.org/show_bug.cgi?id=136245
2827 Reviewed by Gyuyoung Kim.
2829 * Source/cmake/OptionsEfl.cmake:
2830 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
2831 Some warnings are from system libraries.
2833 2014-08-25 Alberto Garcia <berto@igalia.com>
2835 [GTK] Unify webkitgtk and webkit2gtk directories
2836 https://bugs.webkit.org/show_bug.cgi?id=136209
2838 Reviewed by Carlos Garcia Campos.
2840 Use webkit2gtk-X.X both for the process binaries and the injected
2843 * Source/cmake/OptionsGTK.cmake:
2845 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2847 [EFL] Move Efl specific code from Source/CMakeLists.txt
2848 https://bugs.webkit.org/show_bug.cgi?id=136206
2850 Reviewed by Gyuyoung Kim.
2852 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
2853 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
2855 * Source/CMakeLists.txt:
2856 * Source/cmake/OptionsEfl.cmake:
2858 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2860 [EFL] Introduce DEVELOPER_MODE
2861 https://bugs.webkit.org/show_bug.cgi?id=135884
2863 Reviewed by Gyuyoung Kim.
2865 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
2866 instead of SHARED_CORE.
2867 SHARED_CORE can reduce link time and memory consumption but it is slightly different
2868 from release binary.
2870 * Source/cmake/OptionsEfl.cmake:
2871 * Source/cmake/WebKitHelpers.cmake:
2872 Moved fvisibility=hidden to OptionsEfl.cmake
2874 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
2876 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
2877 https://bugs.webkit.org/show_bug.cgi?id=136110
2879 Reviewed by Gyuyoung Kim.
2881 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
2883 * Source/cmake/OptionsEfl.cmake:
2885 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2887 [EFL] Apply eflsymbols.filter to WebKit2
2888 https://bugs.webkit.org/show_bug.cgi?id=136148
2890 Reviewed by Csaba Osztrogonác.
2892 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
2893 in the eflsymbols.filter.
2895 * Source/cmake/OptionsEfl.cmake:
2896 * Source/cmake/eflsymbols.filter:
2898 2014-08-21 Zalan Bujtas <zalan@apple.com>
2900 Enable SATURATED_LAYOUT_ARITHMETIC.
2901 https://bugs.webkit.org/show_bug.cgi?id=136106
2903 Reviewed by Simon Fraser.
2905 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
2906 (No measurable performance regression on Mac.)
2908 * Source/cmake/OptionsMac.cmake:
2909 * Source/cmake/WebKitFeatures.cmake:
2910 * Source/cmakeconfig.h.cmake:
2912 2014-08-19 Zalan Bujtas <zalan@apple.com>
2914 Remove ENABLE(SUBPIXEL_LAYOUT).
2915 https://bugs.webkit.org/show_bug.cgi?id=136077
2917 Reviewed by Simon Fraser.
2919 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
2921 * Source/cmake/OptionsEfl.cmake:
2922 * Source/cmake/OptionsGTK.cmake:
2923 * Source/cmake/OptionsMac.cmake:
2924 * Source/cmake/WebKitFeatures.cmake:
2925 * Source/cmakeconfig.h.cmake:
2927 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
2929 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
2930 https://bugs.webkit.org/show_bug.cgi?id=135980
2932 Reviewed by Martin Robinson.
2934 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
2935 overrides any other disabled optimization that was prepended to these
2936 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
2937 lists first in the final list of compilation flags.
2939 To avoid -On re-enabling optimizations that we'd like to keep disabled,
2940 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
2942 * Source/cmake/OptionsCommon.cmake:
2943 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
2944 * Source/cmake/OptionsGTK.cmake:
2946 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2948 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
2950 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2952 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
2954 [GTK] Disable memory sampler on non-Linux system
2955 https://bugs.webkit.org/show_bug.cgi?id=134483
2957 Reviewed by Philippe Normand.
2959 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
2960 Linux because it uses many Linux-specific features, so we should disable
2961 memory sampler on other systems by default.
2963 * Source/cmake/OptionsGTK.cmake:
2965 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2967 [GTK] HTML API documentation should also be installed versioned
2968 https://bugs.webkit.org/show_bug.cgi?id=135970
2970 Reviewed by Philippe Normand.
2972 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
2975 2014-08-14 Tomas Popela <tpopela@redhat.com>
2977 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
2978 https://bugs.webkit.org/show_bug.cgi?id=135937
2980 Reviewed by Carlos Garcia Campos.
2984 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2986 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
2987 https://bugs.webkit.org/show_bug.cgi?id=135934
2989 Reviewed by Gustavo Noronha Silva.
2991 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
2992 The gir files should installed in $datadir/gir-1.0/ together with all other
2993 gir files. We don't need to install introspection files in a versioned
2994 directory because their filenames already contain the binary version. But before
2995 r171598, the files were only installed to the right directory if the
2996 gobject-instrospection pkg-config file was in the same prefix than the one we
2997 wanted to install, because the gir and typelibs directories were extracted from
2998 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
2999 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
3000 like we do in the autotools build.
3002 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
3003 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3004 * Source/cmake/OptionsGTK.cmake: Define
3005 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3007 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3009 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
3010 https://bugs.webkit.org/show_bug.cgi?id=135836
3012 Reviewed by Philippe Normand.
3014 * Source/PlatformGTK.cmake: Add install command to also install
3015 the GObject DOM bindings API docs.
3017 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
3019 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
3020 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
3021 re-set CMAKE_C_FLAGS with the new string. The two flags should really
3022 be appended to CMAKE_C_FLAGS and the same variable re-set with the
3025 * Source/cmake/OptionsCommon.cmake:
3027 2014-08-13 Alex Christensen <achristensen@webkit.org>
3029 Progress towards CMake on Mac.
3030 https://bugs.webkit.org/show_bug.cgi?id=135819
3032 Reviewed by Laszlo Gombos.
3034 * Source/cmake/OptionsMac.cmake:
3035 Disable some more features temporarily to get CMake working.
3036 * Source/cmake/WebKitMacros.cmake:
3037 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
3039 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3041 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
3042 https://bugs.webkit.org/show_bug.cgi?id=135798
3044 Reviewed by Philippe Normand.
3046 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
3048 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
3049 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3050 https://bugs.webkit.org/show_bug.cgi?id=133317
3052 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3054 Reviewed by Philippe Normand.
3056 No new tests since no new functionality has been added.
3058 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3060 2014-08-11 Commit Queue <commit-queue@webkit.org>
3062 Unreviewed, rolling out r172393.
3063 https://bugs.webkit.org/show_bug.cgi?id=135796
3065 discussion needed about GnuTLS version bump on the bots
3066 (Requested by philn on #webkit).
3070 https://bugs.webkit.org/show_bug.cgi?id=133317
3071 http://trac.webkit.org/changeset/172393
3073 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3074 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
3075 https://bugs.webkit.org/show_bug.cgi?id=133317
3077 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
3079 Reviewed by Philippe Normand.
3081 No new tests since no new functionality has been added.
3083 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
3085 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
3087 [GTK] Adds stubs for all subtle crypto algorithm implemntations
3088 https://bugs.webkit.org/show_bug.cgi?id=133316
3090 Reviewed by Philippe Normand.
3092 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
3093 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
3094 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
3096 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
3098 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
3100 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3102 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3104 [GTK] REGRESSION(r166239): The ld version script is not being used
3105 https://bugs.webkit.org/show_bug.cgi?id=135694
3107 Reviewed by Martin Robinson.
3109 Move the symbols filter file from Tools/gtk to Source/cmake and rename
3110 it as gtksymbols.filter. Also updated it, since some of the symbols
3111 exported were renamed.
3113 * Source/cmake/OptionsGTK.cmake:
3114 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
3116 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
3118 [GTK] Child processes should be installed in a versioned directory
3119 https://bugs.webkit.org/show_bug.cgi?id=135754
3121 Reviewed by Gustavo Noronha Silva.
3123 Define LIBEXEC_INSTALL_DIR as
3124 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
3125 so that the child processes are installed in $libexec/webkitgtk-4.0.
3126 This makes it possible to install 2.6 in parallel to older versions.
3128 * Source/cmake/OptionsGTK.cmake:
3130 2014-08-08 Alex Christensen <achristensen@webkit.org>
3132 Progress towards using CMake on Mac.
3133 https://bugs.webkit.org/show_bug.cgi?id=135662
3135 Reviewed by Laszlo Gombos.
3138 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
3139 * Source/cmake/WebKitFeatures.cmake:
3140 * Source/cmakeconfig.h.cmake:
3141 Added features that are needed by the Mac port.
3142 * Source/cmake/OptionsMac.cmake:
3143 Enable CSS_IMAGE_SET based on FeatureDefines.h.
3144 Disable the FTL with CMake for now.
3145 * Source/cmake/OptionsEFL.cmake:
3146 * Source/cmake/OptionsGTK.cmake:
3147 Enable subpixel layout to not conflict with FeatureDefines.h
3149 2014-08-08 Simon Fraser <simon.fraser@apple.com>
3151 Undo some erroneous changes to the Xcode scheme files from r172259.
3153 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3154 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3156 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
3158 [CMake] Drop the required version of CMake down to 2.8.8
3159 https://bugs.webkit.org/show_bug.cgi?id=135713
3161 Reviewed by Alex Christensen.
3163 * CMakeLists.txt: Require CMake 2.8.8.
3165 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
3167 Get rid of INPUT_SPEECH
3168 https://bugs.webkit.org/show_bug.cgi?id=135672
3170 Reviewed by Andreas Kling.
3172 * Source/cmake/OptionsMac.cmake:
3173 * Source/cmake/WebKitFeatures.cmake:
3174 * Source/cmakeconfig.h.cmake:
3176 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
3178 [GTK] Disable IndexedDB
3179 https://bugs.webkit.org/show_bug.cgi?id=135692
3181 Reviewed by Carlos Garcia Campos.
3183 * Source/cmake/OptionsGTK.cmake:
3185 2014-08-06 Dean Jackson <dino@apple.com>
3187 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
3188 https://bugs.webkit.org/show_bug.cgi?id=135675
3190 Reviewed by Sam Weinig.
3192 * Source/cmake/OptionsGTK.cmake:
3193 * Source/cmake/OptionsMac.cmake:
3194 * Source/cmake/WebKitFeatures.cmake:
3195 * Source/cmakeconfig.h.cmake:
3197 2014-08-06 David Farler <dfarler@apple.com>
3199 Unreviewed build fix: Make includes semicolon in assignment.
3201 * Makefile.shared: Remove a ;
3203 2014-08-06 David Farler <dfarler@apple.com>
3205 Set DSYMUTIL_NUM_THREADS to the number of logical cores
3206 https://bugs.webkit.org/show_bug.cgi?id=135655
3208 Reviewed by Mark Rowe.
3210 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
3212 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
3214 [GTK] Be able to disable gtk2 dependency
3215 https://bugs.webkit.org/show_bug.cgi?id=135505
3217 Reviewed by Gustavo Noronha Silva.
3219 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
3220 required when it's enabled. It's enabled by default.
3222 * Source/cmake/OptionsGTK.cmake:
3224 2014-08-05 Alex Christensen <achristensen@webkit.org>
3227 https://bugs.webkit.org/show_bug.cgi?id=135620
3229 Reviewed by Laszlo Gombos.
3231 * Source/cmake/OptionsMac.cmake:
3232 Use UDIS86 by default on Mac.
3234 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
3236 Add a flag for the CSS Selectors level 4 implementation
3237 https://bugs.webkit.org/show_bug.cgi?id=135535
3239 Reviewed by Andreas Kling.
3241 * Source/cmake/OptionsEfl.cmake:
3242 * Source/cmake/OptionsGTK.cmake:
3243 * Source/cmake/WebKitFeatures.cmake:
3244 * Source/cmakeconfig.h.cmake:
3246 2014-08-04 Alex Christensen <achristensen@webkit.org>
3248 Progress towards CMake on Mac.
3249 https://bugs.webkit.org/show_bug.cgi?id=135528
3251 Reviewed by Gyuyoung Kim.
3253 * Source/cmake/OptionsMac.cmake:
3254 Made options list based on FeatureDefines.xcconfig files.
3256 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3258 [GTK] Windowing target support should reflect the support in the GTK+ dependency
3259 https://bugs.webkit.org/show_bug.cgi?id=134736
3261 Reviewed by Martin Robinson.
3263 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
3264 support the X11 or Wayland windowing targets -- instead, if there's no support
3265 the specific target is disabled, and an error is thrown only if neither of the
3266 backends is enabled at the end..
3267 For now the X11 target remains enabled by default, and the Wayland target is
3268 kept disabled. Once it's possible to have both targets enabled at runtime in
3269 WebKit, the Wayland target will be enabled as well and we'll leave it to the
3270 GTK+ dependency to determine which targets can be enabled.
3272 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
3274 [CMake] Add FindWayland.cmake
3275 https://bugs.webkit.org/show_bug.cgi?id=135540
3277 Reviewed by Martin Robinson.
3279 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
3280 dependency. For now bundles the wayland-client, wayland-server and
3281 wayland-egl pkg-config targets into one dependency, but these could
3282 be split in the future if necessary.
3284 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
3286 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
3287 https://bugs.webkit.org/show_bug.cgi?id=135553
3289 Reviewed by Gyuyoung Kim.
3291 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
3292 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
3294 * Source/cmake/OptionsEfl.cmake:
3296 2014-08-01 Bear Travis <betravis@adobe.com>
3298 [Feature Queries] Enable Feature Queries on EFL/GTK
3299 https://bugs.webkit.org/show_bug.cgi?id=134902
3301 Reviewed by Benjamin Poulain.
3303 Enable CSS Feature Queries by default on the EFL and GTK
3306 * Source/cmake/OptionsEfl.cmake:
3307 * Source/cmake/OptionsGTK.cmake:
3309 2014-08-01 Alex Christensen <achristensen@webkit.org>
3311 Progress towards cmake on Windows.
3312 https://bugs.webkit.org/show_bug.cgi?id=135484
3314 Reviewed by Martin Robinson.
3317 Added Mac to list of ports, even though it is not done yet.
3318 Changed minimum bison version to version installed on Macs.
3319 * Source/cmake/OptionsAppleWin.cmake:
3320 Added some definitions.
3321 * Source/cmake/OptionsEfl.cmake:
3322 * Source/cmake/OptionsGTK.cmake:
3323 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
3324 * Source/cmake/OptionsMac.cmake: Added blank for now.
3325 * Source/cmake/OptionsWinCairo.cmake:
3326 * Source/cmake/OptionsWindows.cmake:
3327 Added some definitions.
3328 Removed /WX (warnings treated as error while compiling).
3329 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
3331 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
3333 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
3334 https://bugs.webkit.org/show_bug.cgi?id=135501
3336 Reviewed by Gyuyoung Kim.
3338 Use PROJECT_VERSION_MICRO instead.
3340 * Source/cmake/OptionsEfl.cmake:
3341 * Source/cmake/OptionsGTK.cmake:
3342 * Source/cmake/WebKitHelpers.cmake:
3344 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
3346 [EFL] Bump ewebkit version to 1.11
3347 https://bugs.webkit.org/show_bug.cgi?id=135487
3349 Reviewed by Gyuyoung Kim.
3351 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
3353 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
3355 [EFL] Add support for building with Geoclue2.
3356 https://bugs.webkit.org/show_bug.cgi?id=135455
3358 Reviewed by Gyuyoung Kim.
3360 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
3363 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3365 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
3367 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3369 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
3371 [GTK] Bump binary version for 2.6
3372 https://bugs.webkit.org/show_bug.cgi?id=133724
3374 Reviewed by Philippe Normand.
3376 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
3377 update library version numbers.
3379 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
3381 [CMake] Bump the minimum required version
3382 https://bugs.webkit.org/show_bug.cgi?id=135382
3384 Reviewed by Gyuyoung Kim.
3386 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
3387 we introduced usage of target_include_directories().
3389 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
3391 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
3392 https://bugs.webkit.org/show_bug.cgi?id=135376
3394 Reviewed by Gyuyoung Kim.
3396 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
3398 * Source/cmake/OptionsEfl.cmake:
3399 * Source/cmake/OptionsGTK.cmake:
3401 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
3403 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
3404 https://bugs.webkit.org/show_bug.cgi?id=135288
3406 Reviewed by Martin Robinson.
3408 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
3409 datadir to pkgconfig
3410 * Source/cmake/OptionsGTK.cmake: define install directories early
3411 enough to be used in FindGObjectIntrospection.cmake
3413 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
3415 Remove CSS_EXCLUSIONS compile flag and leftover code
3416 https://bugs.webkit.org/show_bug.cgi?id=135175
3418 Reviewed by Zoltan Horvath.
3420 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
3421 stubs. This removes the flag and the useless code.
3423 * Source/cmake/WebKitFeatures.cmake:
3424 * Source/cmakeconfig.h.cmake:
3426 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
3428 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
3429 https://bugs.webkit.org/show_bug.cgi?id=135114
3431 Fix build with GStreamer 1.4
3433 Reviewed by Philippe Normand.
3435 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
3436 gst-mpegts component instead of the unstable 1.3.x verstions.
3438 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
3440 [GTK] Simplify make-dist command line arguments
3441 https://bugs.webkit.org/show_bug.cgi?id=134832
3443 Reviewed by Martin Robinson.
3445 * Source/PlatformGTK.cmake: Use --version instead of
3446 --tarball-root when running make-dist.py.
3448 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
3450 Add a manual test for r135044
3452 <https://bugs.webkit.org/show_bug.cgi?id=135044>
3454 Rubber-stamped by Andy Estes.
3456 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
3458 2014-07-18 Dana Burkart <dburkart@apple.com>
3460 Add a new 'analyze' target to the makefile. This will make use of a new
3461 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
3463 https://bugs.webkit.org/show_bug.cgi?id=135057
3464 <rdar://problem/10193187>
3466 Reviewed by David Kilzer.
3472 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
3474 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
3475 https://bugs.webkit.org/show_bug.cgi?id=134963
3477 Reviewed by Gyuyoung Kim.
3479 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
3481 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
3483 2014-07-14 Daniel Bates <dabates@apple.com>
3485 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
3486 https://bugs.webkit.org/show_bug.cgi?id=134905
3487 <rdar://problem/16602779>
3489 Reviewed by Simon Fraser.
3491 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
3492 on the tapped element when processing a touchend as a result of finger pressing and releasing
3493 on the same element that is initially positioned outside the visible content area.
3495 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
3497 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
3499 [GTK] Enable VIDEO_TRACK by default
3500 https://bugs.webkit.org/show_bug.cgi?id=134801
3502 Reviewed by Philippe Normand.
3504 * Source/cmake/OptionsGTK.cmake:
3506 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3508 [GTK][CMake] Add a 'distcheck' target
3509 https://bugs.webkit.org/show_bug.cgi?id=130675
3511 Reviewed by Gustavo Noronha Silva.
3513 * Source/PlatformGTK.cmake: Add distcheck target.
3515 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3517 [GTK] Use the same default options for production builds that previous stable releases
3518 https://bugs.webkit.org/show_bug.cgi?id=134589
3520 Reviewed by Martin Robinson.
3522 Change the default value of some features to match our stable releases.
3523 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
3524 canvas depend on whether cairo-gl is found.
3526 * Source/cmake/FindCairoGL.cmake: Added.
3527 * Source/cmake/OptionsGTK.cmake:
3529 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
3531 [EFL] Support Encrypted Media Extensions.
3532 https://bugs.webkit.org/show_bug.cgi?id=134750
3534 Reviewed by Gyuyoung Kim.
3536 Webkit needs to play encrypted media contents when media player
3537 is played by Media source extensions and normal video procedure.
3539 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
3541 2014-07-08 Alex Christensen <achristensen@webkit.org>
3543 Steps towards CMake on Windows.
3544 https://bugs.webkit.org/show_bug.cgi?id=134716
3546 Reviewed by Martin Robinson.
3549 Added AppleWin and WinCairo to list of CMake ports.
3550 * Source/cmake/OptionsAppleWin.cmake: Added.
3551 * Source/cmake/OptionsWinCairo.cmake: Added.
3552 * Source/cmake/OptionsWindows.cmake:
3553 Windows needs to use the system malloc. Other options to come.
3555 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3557 [EFL] Support Geolocation
3558 https://bugs.webkit.org/show_bug.cgi?id=134439
3560 Reviewed by Antonio Gomes.
3562 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
3564 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3566 Broken build with build-webkit --no-video
3567 https://bugs.webkit.org/show_bug.cgi?id=134587
3569 Reviewed by Darin Adler.
3571 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
3573 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
3575 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
3577 [GTK] The list of features shown by cmake is not accurate
3578 https://bugs.webkit.org/show_bug.cgi?id=134588
3580 Reviewed by Gustavo Noronha Silva.
3582 The problem is that some options might change after the feature
3583 list has been printed.
3585 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
3586 setting the default values of features and set WEBGL value
3587 depending on the dependencies, and API_TEST depending on whether
3588 developer mode is enabled or not.
3590 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3592 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
3593 https://bugs.webkit.org/show_bug.cgi?id=134578
3595 Reviewed by Gyuyoung Kim.
3597 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
3598 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
3599 disable related option if it is not ON.
3601 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
3602 * Source/cmake/OptionsGTK.cmake: Ditto.
3603 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
3605 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
3607 [GTK] make dist is broken
3608 https://bugs.webkit.org/show_bug.cgi?id=134542
3610 Reviewed by Martin Robinson.
3612 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
3614 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
3616 [CMake] Add necessary support for building for the Wayland target
3617 https://bugs.webkit.org/show_bug.cgi?id=134160
3619 Reviewed by Darin Adler.
3621 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
3622 is enabled, and that its version matches the version of the generic package. Same
3623 for the gtk+-wayland-3.0 package and the Wayland target.
3624 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
3625 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
3626 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
3627 so they keep building the TestNetscapePlugin target.
3628 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
3629 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
3630 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
3631 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
3632 the minimum required version as soon as that target is enabled. Only search for GLX
3633 if the X11 target is enabled.
3635 2014-06-29 Yoav Weiss <yoav@yoav.ws>
3637 Add support for HTMLImageElement's sizes attribute
3638 https://bugs.webkit.org/show_bug.cgi?id=133620
3640 Reviewed by Dean Jackson.
3642 Added an ENABLE_PICTURE_SIZES compile flag.
3644 * Source/cmake/WebKitFeatures.cmake:
3645 * Source/cmakeconfig.h.cmake:
3647 2014-06-26 Daniel Bates <dabates@apple.com>
3649 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
3650 https://bugs.webkit.org/show_bug.cgi?id=134309
3651 <rdar://problem/17427385>
3653 Reviewed by Darin Adler.
3655 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
3658 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
3660 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
3662 Remove build guard for progress element
3663 https://bugs.webkit.org/show_bug.cgi?id=134292
3665 Reviewed by Benjamin Poulain.
3667 The build flag is no longer needed as it is always on.
3669 * Source/cmake/WebKitFeatures.cmake:
3670 * Source/cmakeconfig.h.cmake:
3672 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
3674 [EFL] Platform support for WebSpeech feature.
3675 https://bugs.webkit.org/show_bug.cgi?id=116438
3677 Reviewed by Csaba Osztrogonác.
3679 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3681 * Source/cmake/OptionsEfl.cmake:
3682 * Source/cmake/WebKitFeatures.cmake:
3684 2014-06-23 Philippe Normand <pnormand@igalia.com>
3686 Unreviewed, GTK build fix after r170266.
3688 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
3690 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3692 Disable gamepad feature on EFL and GTK ports by default
3693 https://bugs.webkit.org/show_bug.cgi?id=134169
3695 Reviewed by Brady Eidson.
3697 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
3699 2014-06-21 Brady Eidson <beidson@apple.com>
3701 Gamepad API - Deprecate the existing implementation
3702 https://bugs.webkit.org/show_bug.cgi?id=134108
3704 Reviewed by Timothy Hatcher.
3706 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3707 -Add the "Deprecated" suffix to some implementation files
3709 * Source/cmake/OptionsEfl.cmake:
3710 * Source/cmake/OptionsGTK.cmake:
3711 * Source/cmake/WebKitFeatures.cmake:
3712 * Source/cmakeconfig.h.cmake:
3714 2014-06-21 Commit Queue <commit-queue@webkit.org>
3716 Unreviewed, rolling out r170244.
3717 https://bugs.webkit.org/show_bug.cgi?id=134157
3719 GTK/EFL bindings generator works differently, making this
3720 patch not work there. Will fix entire patch after a rollout.
3721 (Requested by bradee-oh on #webkit).
3725 "Gamepad API - Deprecate the existing implementation"
3726 https://bugs.webkit.org/show_bug.cgi?id=134108
3727 http://trac.webkit.org/changeset/170244
3729 2014-06-21 Brady Eidson <beidson@apple.com>
3731 Gamepad API - Deprecate the existing implementation
3732 https://bugs.webkit.org/show_bug.cgi?id=134108
3734 Reviewed by Timothy Hatcher.
3736 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3737 -Add the "Deprecated" suffix to some implementation files
3739 * Source/cmake/OptionsEfl.cmake:
3740 * Source/cmake/OptionsGTK.cmake:
3741 * Source/cmake/WebKitFeatures.cmake:
3742 * Source/cmakeconfig.h.cmake:
3744 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3746 Removing PAGE_VISIBILITY_API compile guard.
3747 https://bugs.webkit.org/show_bug.cgi?id=133844
3749 Reviewed by Gavin Barraclough.
3751 * Source/cmake/OptionsEfl.cmake:
3752 * Source/cmake/OptionsGTK.cmake:
3753 * Source/cmake/WebKitFeatures.cmake:
3754 * Source/cmakeconfig.h.cmake:
3756 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
3758 [EFL][CMAKE] Disable WebKit1 build as a default
3759 https://bugs.webkit.org/show_bug.cgi?id=134093
3761 Reviewed by Gyuyoung Kim.
3763 Disable WebKit1 build and enable WebKit2 build for the EFL port.
3765 * Source/cmake/OptionsEfl.cmake:
3767 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3769 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
3770 https://bugs.webkit.org/show_bug.cgi?id=130389
3772 Reviewed by Mark Lam.
3774 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
3775 into !ENABLE(JIT) since they are mutually exclusive.
3777 * Source/cmake/OptionsEfl.cmake:
3778 * Source/cmake/OptionsGTK.cmake:
3779 * Source/cmake/WebKitFeatures.cmake:
3780 * Source/cmakeconfig.h.cmake:
3782 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
3784 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
3785 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
3786 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
3787 by the plugin process, but it is searched and utilized separately.
3789 Rubber-stamped by Carlos Garcia Campos.
3791 * Source/cmake/OptionsGTK.cmake:
3793 2014-06-16 Commit Queue <commit-queue@webkit.org>
3795 Unreviewed, rolling out r170003.
3796 https://bugs.webkit.org/show_bug.cgi?id=133938
3798 This patch broke GTK build (Requested by kczech on #webkit).
3802 "[EFL] Platform support for WebSpeech feature."
3803 https://bugs.webkit.org/show_bug.cgi?id=116438
3804 http://trac.webkit.org/changeset/170003
3806 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
3808 [EFL] Platform support for WebSpeech feature.
3809 https://bugs.webkit.org/show_bug.cgi?id=116438
3811 Reviewed by Gyuyoung Kim.
3813 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3815 * Source/cmake/OptionsEfl.cmake:
3816 * Source/cmake/WebKitFeatures.cmake:
3818 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3820 [EFL] Remove duplicated compiler flag
3821 https://bugs.webkit.org/show_bug.cgi?id=133838
3823 Reviewed by Anders Carlsson.
3825 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
3826 it added to common compiler options. So, it is duplicated.
3828 * Source/cmake/WebKitHelpers.cmake:
3830 2014-06-11 Commit Queue <commit-queue@webkit.org>
3832 Unreviewed, rolling out r169877.
3833 https://bugs.webkit.org/show_bug.cgi?id=133784
3835 rollout wrong build fix approach for EFL port (Requested by
3836 gyuyoung on #webkit).
3840 "Unreviewed, EFL build fix since r169869."
3841 http://trac.webkit.org/changeset/169877
3843 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3845 Unreviewed, EFL build fix since r169869.
3847 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
3849 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
3851 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3853 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
3855 * Source/cmake/WebKitHelpers.cmake:
3857 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
3859 [GTK] Make it possible to build with FTL enabled
3860 https://bugs.webkit.org/show_bug.cgi?id=133219
3862 Reviewed by Philippe Normand.
3864 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
3866 * Source/cmake/OptionsGTK.cmake:
3868 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
3870 [CMake] Clean up FAST_MOBILE_SCROLLING
3871 https://bugs.webkit.org/show_bug.cgi?id=133342
3873 Reviewed by Gyuyoung Kim.
3875 FAST_MOBILE_SCROLLING was removed in r168726.
3877 * Source/cmake/OptionsEfl.cmake:
3878 * Source/cmake/OptionsGTK.cmake:
3879 * Source/cmake/WebKitFeatures.cmake:
3880 * Source/cmakeconfig.h.cmake:
3882 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3885 https://bugs.webkit.org/show_bug.cgi?id=132863
3887 Reviewed by Csaba Osztrogonác.
3889 * Source/cmake/OptionsEfl.cmake:
3890 * Source/cmake/OptionsGTK.cmake:
3891 * Source/cmake/WebKitFeatures.cmake:
3892 * Source/cmakeconfig.h.cmake:
3894 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3896 Allow building CMake based ports with WEB_REPLAY
3897 https://bugs.webkit.org/show_bug.cgi?id=133154
3899 Reviewed by Csaba Osztrogonác.
3901 * Source/cmake/WebKitFeatures.cmake:
3902 * Source/cmakeconfig.h.cmake:
3904 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3906 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
3907 https://bugs.webkit.org/show_bug.cgi?id=132907
3909 Reviewed by Gyuyoung Kim.
3911 * Source/cmake/FindLIBCXXABI.cmake: Added.
3912 * Source/cmake/OptionsEfl.cmake:
3914 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3916 [EFL] Turn on ENABLE_CSS_FILTERS
3917 https://bugs.webkit.org/show_bug.cgi?id=133153
3919 Reviewed by Gyuyoung Kim.
3921 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
3923 2014-05-16 Martin Robinson <mrobinson@igalia.com>
3925 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
3926 https://bugs.webkit.org/show_bug.cgi?id=132819
3928 Reviewed by Carlos Garcia Campos.
3930 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
3932 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
3933 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
3935 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
3937 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
3939 [CMake] Support building with Debug Fission
3940 https://bugs.webkit.org/show_bug.cgi?id=131177
3942 Reviewed by Philippe Normand.
3944 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
3945 of http://gcc.gnu.org/wiki/DebugFission.
3947 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
3949 [GTK] Rename translation domain as WebKit2GTK-3.0
3950 https://bugs.webkit.org/show_bug.cgi?id=132953
3952 Reviewed by Gustavo Noronha Silva.
3954 * Source/cmake/OptionsGTK.cmake:
3956 2014-05-18 Rik Cabanier <cabanier@adobe.com>
3958 support for navigator.hardwareConcurrency
3959 https://bugs.webkit.org/show_bug.cgi?id=132588
3961 Reviewed by Filip Pizlo.
3963 * Source/cmake/OptionsEfl.cmake:
3964 * Source/cmake/OptionsGTK.cmake:
3965 * Source/cmake/WebKitFeatures.cmake:
3966 * Source/cmakeconfig.h.cmake:
3968 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3970 Remove CSS_STICKY_POSITION guards
3971 https://bugs.webkit.org/show_bug.cgi?id=132676
3973 Reviewed by Simon Fraser.
3975 * Source/cmake/OptionsEfl.cmake:
3976 * Source/cmake/OptionsGTK.cmake:
3977 * Source/cmake/WebKitFeatures.cmake:
3978 * Source/cmakeconfig.h.cmake:
3980 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
3982 Unreviewed. Bump version numbers.
3984 * Source/cmake/OptionsGTK.cmake:
3986 2014-05-10 Martin Robinson <mrobinson@igalia.com>
3988 [GTK][CMake] Unable to do make install
3989 https://bugs.webkit.org/show_bug.cgi?id=130188
3991 Reviewed by Carlos Garcia Campos.
3993 Only try to install the HTML documentation if the build is configured to generate it via
3994 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3995 to keep the HTML documentation directory as an installation source.
3997 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3998 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3999 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
4000 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
4001 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
4003 2014-05-09 Anders Carlsson <andersca@apple.com>
4005 Rename WebKit2.framework to WebKit.framework
4006 https://bugs.webkit.org/show_bug.cgi?id=132743
4007 <rdar://problem/15920046>
4009 Reviewed by Dan Bernstein.
4012 Build WebKit.xcodeproj before WebKit2.xcodeproj.
4014 * WebKit.xcworkspace/xcshareddata/xcschemes/:
4017 2014-05-06 David Kilzer <ddkilzer@apple.com>
4019 Add Makefile targets for copying static libraries (LLVM and WKSI)
4020 <http://webkit.org/b/132619>
4022 Reviewed by Mark Rowe.
4025 (MODULES): Add WebKitLibraries.
4027 2014-05-06 Commit Queue <commit-queue@webkit.org>
4029 Unreviewed, rolling out r168304.
4030 https://bugs.webkit.org/show_bug.cgi?id=132607
4032 Broke the build (Requested by KaL on #webkit).
4036 "[GTK][CMake] Unable to do make install"
4037 https://bugs.webkit.org/show_bug.cgi?id=130188
4038 http://trac.webkit.org/changeset/168304
4040 2014-05-05 Martin Robinson <mrobinson@igalia.com>
4042 [GTK][CMake] Unable to do make install
4043 https://bugs.webkit.org/show_bug.cgi?id=130188
4045 Reviewed by Carlos Garcia Campos.
4047 Only try to install the HTML documentation if the build is configured to generate it via
4048 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
4049 to keep the HTML documentation directory as an installation source.
4051 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
4052 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
4053 never added to the default target, but will be triggered by build-webkit, so that
4054 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
4055 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
4057 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4059 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
4060 https://bugs.webkit.org/show_bug.cgi?id=132525
4062 Reviewed by Martin Robinson.
4064 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
4065 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
4066 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
4068 2014-05-01 David Kilzer <ddkilzer@apple.com>
4070 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
4071 <http://webkit.org/b/132432>
4073 Reviewed by Tim Horton.
4075 * Source/cmake/WebKitFeatures.cmake:
4076 * Source/cmakeconfig.h.cmake:
4077 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
4079 2014-04-30 Simon Fraser <simon.fraser@apple.com>
4081 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
4083 Reviewed by Dan Bernstein/Anders Carlsson.
4085 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
4086 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
4088 2014-04-30 Simon Fraser <simon.fraser@apple.com>
4090 Let Xcode have its way with the WebKit workspace.
4092 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
4093 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
4095 2014-04-29 Martin Robinson <mrobinson@igalia.com>
4097 [GTK] Make it easier to run CMake for downstreams
4098 https://bugs.webkit.org/show_bug.cgi?id=132370
4100 Reviewed by Carlos Garcia Campos.
4102 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
4104 2014-04-27 Joonghun Park <jh718.park@samsung.com>
4106 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
4107 https://bugs.webkit.org/show_bug.cgi?id=132176
4109 Reviewed by Gyuyoung Kim.
4111 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
4113 * Source/cmake/OptionsEfl.cmake:
4115 2014-04-22 Alex Christensen <achristensen@webkit.org>
4117 Removed old stdbool and inttypes headers.
4118 https://bugs.webkit.org/show_bug.cgi?id=131966
4120 Reviewed by Brent Fulgham.
4122 * Source/cmake/OptionsWindows.cmake:
4123 * Source/cmake/WebKitPackaging.cmake:
4124 Removed references to os-win32 directory.
4126 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
4128 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
4130 Rubber-stamped by Carlos Garcia Campos.
4132 * Source/cmake/WebKitFeatures.cmake:
4134 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
4136 Empty RenderInline objects should not be line break objects.
4138 https://bugs.webkit.org/show_bug.cgi?id=131861
4139 <rdar://problem/15663617>
4141 Reviewed by David Hyatt.
4143 * ManualTests/empty-inline-as-line-break-position.html: Added.
4144 This issue wouldn't reproduce in WebKitTestRunner.
4146 2014-04-19 Brent Fulgham <bfulgham@apple.com>
4148 Revert unintended workspace change in my last commit.
4150 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
4151 Scheme type back to Debug.
4153 2014-04-18 Philippe Normand <pnormand@igalia.com>
4155 Remove NETWORK_INFO support
4156 https://bugs.webkit.org/show_bug.cgi?id=131841
4158 Reviewed by Gyuyoung Kim.
4160 * Source/cmake/OptionsEfl.cmake:
4161 * Source/cmake/OptionsGTK.cmake:
4162 * Source/cmake/WebKitFeatures.cmake:
4163 * Source/cmakeconfig.h.cmake:
4165 2014-04-17 Darin Adler <darin@apple.com>
4167 Try to fix EFL and GTK builds.
4169 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
4170 * Source/cmake/OptionsGTK.cmake: Ditto.
4171 * Source/cmakeconfig.h.cmake: Ditto.
4173 2014-04-16 Brendan Long <b.long@cablelabs.com>
4175 [GTK][CMAKE] build-webkit doesn't detect when the build fails
4176 https://bugs.webkit.org/show_bug.cgi?id=130148
4178 Reviewed by Martin Robinson.
4180 * Source/cmake/OptionsGTK.cmake: Replace CMake's automatic make -i with make -k, which still continues after errors, but correctly reports tha the build failed.
4182 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
4184 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
4185 https://bugs.webkit.org/show_bug.cgi?id=131725
4187 Reviewed by Philippe Normand.
4189 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
4190 instead of GTK_UNIX_PRINTING_FOUND and set the macro
4191 HAVE_GTK_UNIX_PRINTING to 1 when found.
4193 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
4195 Web Replay: memoize nondeterministic attributes of the Navigator interface
4196 https://bugs.webkit.org/show_bug.cgi?id=131340
4198 Reviewed by Timothy Hatcher.
4200 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
4202 2014-04-09 Brendan Long <b.long@cablelabs.com>
4204 [GStreamer] Expose MPEG-TS metadata
4205 https://bugs.webkit.org/show_bug.cgi?id=122001
4207 Reviewed by Eric Carlson.
4209 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
4210 * Source/cmake/OptionsEfl.cmake: Same.
4211 * Source/cmake/OptionsGTK.cmake: Same.
4213 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
4215 Web Replay: memoize nondeterministic attributes of the Screen interface
4216 https://bugs.webkit.org/show_bug.cgi?id=131339
4218 Reviewed by Timothy Hatcher.
4220 * ManualTests/inspector/replay-window-screen.html: Added.
4222 2014-04-08 Martin Robinson <mrobinson@igalia.com>
4224 [GTK] Remove the WebKitGTK+ WebKit 1 code
4225 https://bugs.webkit.org/show_bug.cgi?id=131399
4227 Reviewed by Anders Carlsson.
4229 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
4230 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
4232 2014-04-08 Dan Bernstein <mitz@apple.com>
4234 Added bmalloc to the WebKit workspace.
4235 https://bugs.webkit.org/show_bug.cgi?id=131362
4237 Reviewed by Geoff Garen.
4239 * WebKit.xcworkspace/contents.xcworkspacedata:
4240 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
4241 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
4243 2014-04-08 Geoffrey Garen <ggaren@apple.com>
4245 Build bmalloc on iOS too
4246 https://bugs.webkit.org/show_bug.cgi?id=131381
4248 Reviewed by Andreas Kling.
4250 * Source/Makefile: Build it.
4252 2014-04-07 Geoffrey Garen <ggaren@apple.com>
4254 Build bmalloc on Mac
4255 https://bugs.webkit.org/show_bug.cgi?id=131333
4257 Reviewed by Mark Rowe.
4260 * WebKitBuild: Added.
4261 * WebKitBuild/Debug: Added.
4263 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
4265 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
4266 https://bugs.webkit.org/show_bug.cgi?id=131257
4268 Reviewed by Gyuyoung Kim.
4270 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
4272 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4274 [GTK] Stop trying to install WebKit1 documentation
4275 https://bugs.webkit.org/show_bug.cgi?id=131278
4277 Reviewed by Martin Robinson.
4279 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
4280 built anymore since r166584. This fixes `make install'.
4282 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
4284 Web Replay: capture and replay wheel events and scroll commands
4285 https://bugs.webkit.org/show_bug.cgi?id=129402
4287 Reviewed by Timothy Hatcher.
4289 * ManualTests/inspector/replay-wheel-events.html: Added.
4291 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4293 [GTK][CMake] Remove FindXt.cmake.
4294 https://bugs.webkit.org/show_bug.cgi?id=131227
4296 Reviewed by Anders Carlsson.
4298 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
4300 * Source/cmake/FindXt.cmake: Removed.
4301 * Source/cmake/OptionsGTK.cmake:
4303 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
4305 [EFL] Build error due to changed path of generated js files.
4306 https://bugs.webkit.org/show_bug.cgi?id=131215
4308 Reviewed by Gyuyoung Kim.
4310 r166648 fixed the generation of some .js files on GTK. Due to some
4311 changes in the paths it causes a build error on EFL.
4313 * Source/PlatformEfl.cmake:
4314 Replaced path for two derived source files.
4316 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4318 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
4319 https://bugs.webkit.org/show_bug.cgi?id=131095
4321 Reviewed by Martin Robinson.
4323 One needs to take into account OpenGL's include directory found via
4324 find_package() when looking for glx.h, since if the former is a
4325 non-standard location the latter will also be. If this is not it is
4326 possible that OpenGL is found but GLX support is not properly detected.
4328 * Source/cmake/OptionsGTK.cmake:
4330 2014-04-02 Martin Robinson <mrobinson@igalia.com>
4332 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
4333 https://bugs.webkit.org/show_bug.cgi?id=130343
4335 Reviewed by Gustavo Noronha Silva.
4337 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
4339 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
4341 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4343 [CMake] Drop port check from FindEGL.cmake.
4344 https://bugs.webkit.org/show_bug.cgi?id=131091
4346 Reviewed by Gyuyoung Kim.
4348 There is no reason to mark some variables as advanced only for the
4351 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
4352 as advanced regardless of the port.
4354 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
4356 Fix the !ENABLE(BATTERY_STATUS) build
4357 https://bugs.webkit.org/show_bug.cgi?id=130183
4359 Reviewed by Anders Carlsson.
4361 * Source/cmake/OptionsEfl.cmake:
4363 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
4365 [CMake][GTK] Do not expand variables twice in if() checks.
4366 https://bugs.webkit.org/show_bug.cgi?id=130964
4368 Reviewed by Martin Robinson.
4370 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
4371 to be checked by the if clause. This is not what we want, and
4372 configuration fails when, say, GLX support wasn't found as the if
4373 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
4375 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
4378 2014-03-31 Martin Robinson <mrobinson@igalia.com>
4380 [GTK] Remove scripts code only applicable to autotools
4381 https://bugs.webkit.org/show_bug.cgi?id=130841
4383 Reviewed by Anders Carlsson.
4385 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
4387 2014-03-31 Martin Robinson <mrobinson@igalia.com>
4389 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
4390 https://bugs.webkit.org/show_bug.cgi?id=130936
4392 Reviewed by Carlos Garcia Campos.
4394 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
4396 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
4398 [GTK] Add support for GTK3 plugins
4399 https://bugs.webkit.org/show_bug.cgi?id=130599
4401 Reviewed by Martin Robinson.
4403 * Source/cmake/OptionsGTK.cmake:
4405 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
4407 [EFL] Bump glib version from 2.36 to 2.38
4408 https://bugs.webkit.org/show_bug.cgi?id=130886
4410 Reviewed by Csaba Osztrogonác.
4412 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
4414 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
4416 [CSS Shapes] Remove shape-inside support
4417 https://bugs.webkit.org/show_bug.cgi?id=130698
4419 Reviewed by David Hyatt.
4421 * Source/cmake/WebKitFeatures.cmake:
4422 * Source/cmakeconfig.h.cmake:
4424 2014-03-25 Martin Robinson <mrobinson@igalia.com>
4426 [GTK] Remove the autotools build
4427 https://bugs.webkit.org/show_bug.cgi?id=130717
4429 Reviewed by Anders Carlsson.
4431 * .gitignore: Remove references to autotools files.
4432 * GNUmakefile.am: Removed.
4433 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
4434 * Source/autotools/CustomMacros.m4: Removed.
4435 * Source/autotools/FindDependencies.m4: Removed.
4436 * Source/autotools/PrintBuildConfiguration.m4: Removed.
4437 * Source/autotools/ReadCommandLineArguments.m4: Removed.
4438 * Source/autotools/SetupAutoconfHeader.m4: Removed.
4439 * Source/autotools/SetupAutomake.m4: Removed.
4440 * Source/autotools/SetupCompilerFlags.m4: Removed.
4441 * Source/autotools/SetupLibtool.m4: Removed.
4442 * Source/autotools/SetupWebKitFeatures.m4: Removed.
4443 * Source/autotools/Versions.m4: Removed.
4444 * Source/autotools/acinclude.m4: Removed.
4445 * Source/autotools/dolt.m4: Removed.
4446 * Source/autotools/gsettings.m4: Removed.
4447 * Source/cmake/OptionsGTK.cmake:
4448 * autogen.sh: Removed.
4449 * configure.ac: Removed.
4451 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
4453 [EFL] Add ARM64 build support
4454 https://bugs.webkit.org/show_bug.cgi?id=130506
4456 Rubber stamped by Gyuyoung Kim.
4458 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
4460 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
4462 [EFL][WK2] Add NETWORK_PROCESS build option
4463 https://bugs.webkit.org/show_bug.cgi?id=130131
4465 Reviewed by Gyuyoung Kim.
4467 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
4470 * Source/cmake/OptionsEfl.cmake:
4472 2014-03-24 Brian Burg <bburg@apple.com>
4474 Web Replay: capture and replay keyboard events
4475 https://bugs.webkit.org/show_bug.cgi?id=130314
4477 Reviewed by Joseph Pecoraro.
4479 * ManualTests/inspector/replay-keyboard-events.html: Added.
4481 2014-03-24 Sangyong Park <sy302.park@gmail.com>
4483 [EFL] Inspector page is not loaded.
4484 https://bugs.webkit.org/show_bug.cgi?id=130661
4486 Reviewed by Gyuyoung Kim.
4488 Inspector page is not loaded, because some javascript files are not installed.
4489 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
4491 * Source/PlatformEfl.cmake:
4493 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
4495 [EFL][GTK] Get CMake to find Freetype2 properly
4496 https://bugs.webkit.org/show_bug.cgi?id=130150
4498 Reviewed by Martin Robinson.
4500 Newer versions of CMake are not able to find Freetype2 correctly.
4501 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
4502 freetype2 repo, because a completely different version number is found in freetype2.pc.
4504 * Source/cmake/FindFreetype2.cmake: Added.
4505 * Source/cmake/OptionsEfl.cmake:
4506 * Source/cmake/OptionsGTK.cmake:
4508 2014-03-20 Brian Burg <bburg@apple.com>
4510 Web Replay: capture and replay mouse events
4511 https://bugs.webkit.org/show_bug.cgi?id=129395
4513 Reviewed by Joseph Pecoraro.
4515 Create a manual test for capture/replay of mouse events.
4516 Copy over the crypto-md5.js library from SunSpider.
4518 * ManualTests/inspector/replay-mouse-events.html: Added.
4519 * ManualTests/inspector/resources/crypto-md5.js: Added.
4521 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
4523 [GTK][CMake] Add support for building with Clang
4524 https://bugs.webkit.org/show_bug.cgi?id=130260
4526 Reviewed by Martin Robinson.
4528 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
4529 to the list C compiler flags as constructed by CMake.
4530 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
4531 compiler option to suppress verbose warnings about arguments that went unused by the driver.
4532 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
4533 -fno-tree-dce should be used only for GCC.
4534 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
4535 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
4537 2014-03-20 Commit Queue <commit-queue@webkit.org>
4539 Unreviewed, rolling out r165962.
4540 https://bugs.webkit.org/show_bug.cgi?id=130512
4542 It broke the build (Requested by Ossy on #webkit).
4546 "[EFL][GTK] Get CMake to find Freetype2 properly"
4547 https://bugs.webkit.org/show_bug.cgi?id=130150
4548 http://trac.webkit.org/changeset/165962
4550 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
4552 [EFL][GTK] Get CMake to find Freetype2 properly
4553 https://bugs.webkit.org/show_bug.cgi?id=130150
4555 Reviewed by Csaba Osztrogonác.
4557 Newer versions of CMake are not able to find Freetype2 correctly.
4558 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
4559 freetype2 repo, because a completely different version number is found in freetype2.pc.
4561 * Source/cmake/FindFreetype2.cmake: Added.
4562 * Source/cmake/OptionsEfl.cmake:
4563 * Source/cmake/OptionsGTK.cmake:
4565 2014-03-17 Brendan Long <b.long@cablelabs.com>
4567 [GStreamer] human readable language code for tracks
4568 https://bugs.webkit.org/show_bug.cgi?id=124514
4570 Reviewed by Martin Robinson.
4572 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
4573 * Source/cmake/FindGStreamer.cmake: Same.
4574 * Source/cmake/OptionsEfl.cmake: Same.
4575 * Source/cmake/OptionsGTK.cmake: Same.