1 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
3 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
4 https://bugs.webkit.org/show_bug.cgi?id=146590
6 Reviewed by Martin Robinson.
8 * Source/PlatformGTK.cmake: override the cached variables to
9 forcefully disable gtk-doc and gobject-introspection when
11 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
12 documentation syntax when cross-building.
15 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
17 [EFL] test_ewk2_application_cache_manager has been failed since r185527
18 https://bugs.webkit.org/show_bug.cgi?id=146016
20 Reviewed by Gyuyoung Kim.
22 In order to handle properly WebApplicationCacheManagerProxy implementation which use
23 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
24 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
26 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
28 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
30 Implement ECMAScript Internationalization API
31 https://bugs.webkit.org/show_bug.cgi?id=90906
33 Reviewed by Benjamin Poulain.
35 Begin implementing the Intl apis behind ENABLE_INTL flag.
36 Create the base Intl namespace object.
38 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
40 2015-06-30 Philippe Normand <pnormand@igalia.com>
42 [CMake] Error when gst-plugins-base is missing is too confusing
43 https://bugs.webkit.org/show_bug.cgi?id=145682
45 Reviewed by Carlos Garcia Campos.
47 * Source/cmake/OptionsGTK.cmake: Error out if the required
48 GStreamer libraries are not found on the host.
50 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
52 CairoGL should be checked unconditionally
53 https://bugs.webkit.org/show_bug.cgi?id=146390
55 Reviewed by Darin Adler.
57 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
58 it is run unconditionally; this is necessary because its result
59 is used later on, outside of any conditions.
61 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
63 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
64 https://bugs.webkit.org/show_bug.cgi?id=146318
66 Reviewed by Sergio Villar Senin.
68 Enable PUBLIC_SUFFIX_LIST for GTK+.
70 * Source/cmake/OptionsGTK.cmake:
72 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
74 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
76 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
78 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
80 [EFL] Hyphenation is not supported
81 https://bugs.webkit.org/show_bug.cgi?id=89830
83 Reviewed by Gyuyoung Kim.
85 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
87 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
89 [CMake] Add support for building with various sanitizer tools
90 https://bugs.webkit.org/show_bug.cgi?id=131941
92 Reviewed by Martin Robinson.
94 * Source/PlatformGTK.cmake: Don't generate any documentation
95 when compiling with sanitizers enabled.
96 * Source/cmake/OptionsCommon.cmake: Allow linking with
97 undefined symbols when compiling with sanitizers enabled.
99 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
101 libwebkit2gtk fails to link without opengl
102 https://bugs.webkit.org/show_bug.cgi?id=138332
104 Reviewed by Carlos Garcia Campos.
106 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
107 enabled regardless of whether OpenGL is, because certain symbols
108 such as WebCore::GraphicsLayer::create() need to be built.
110 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
112 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
113 https://bugs.webkit.org/show_bug.cgi?id=146181
115 Reviewed by Martin Robinson.
117 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
119 * Source/cmake/OptionsGTK.cmake:
121 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
123 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
124 https://bugs.webkit.org/show_bug.cgi?id=146171
126 Reviewed by Gyuyoung Kim.
128 * Source/cmake/OptionsEfl.cmake:
129 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
131 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
133 [CMake] FindGTK3.cmake should not modify the values of build options
134 https://bugs.webkit.org/show_bug.cgi?id=144613
136 Reviewed by Martin Robinson.
138 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
139 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
140 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
141 GTK3_SUPPORTS_GESTURES for consistency.
142 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
143 available. It's not possible to automatically select a backend correctly anymore, since all
144 options are set at the same time.
146 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
148 Remove unnecessary svn:executable flags
149 https://bugs.webkit.org/show_bug.cgi?id=146107
151 Reviewed by Alexey Proskuryakov.
153 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
154 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
155 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
156 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
157 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
159 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
161 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
162 https://bugs.webkit.org/show_bug.cgi?id=146108
164 Reviewed by Gyuyoung Kim.
166 * Source/cmake/OptionsEfl.cmake:
168 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
170 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
171 https://bugs.webkit.org/show_bug.cgi?id=146035
173 Reviewed by Gyuyoung Kim.
175 * Source/cmake/OptionsEfl.cmake:
177 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
179 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
180 https://bugs.webkit.org/show_bug.cgi?id=145701
182 Reviewed by Darin Adler.
184 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
186 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
188 [iOS] Crash long pressing on <input type=file>
189 https://bugs.webkit.org/show_bug.cgi?id=146009
190 <rdar://problem/21234453>
192 Reviewed by Ryosuke Niwa.
194 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
196 2015-06-16 Brent Fulgham <bfulgham@apple.com>
198 Rollout accidental Xcode project change.
200 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
202 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
204 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
205 https://bugs.webkit.org/show_bug.cgi?id=145909
207 Reviewed by Csaba Osztrogonác.
209 Bump EWebKit version based on efl library version used by the EWebKit.
211 * Source/cmake/OptionsEfl.cmake:
213 2015-06-11 Commit Queue <commit-queue@webkit.org>
215 Unreviewed, rolling out r185453.
216 https://bugs.webkit.org/show_bug.cgi?id=145881
218 it broke the 32-bit build (Requested by clopez on #webkit).
222 "[GTK] [Wayland] Should be possible to build with support for
223 both X11 and Wayland."
224 https://bugs.webkit.org/show_bug.cgi?id=145701
225 http://trac.webkit.org/changeset/185453
227 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
229 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
230 https://bugs.webkit.org/show_bug.cgi?id=145701
232 Reviewed by Žan Doberšek.
234 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
236 2015-06-03 Daniel Bates <dabates@apple.com>
238 Caps lock indicator should not be shown in read-only or disabled field
239 https://bugs.webkit.org/show_bug.cgi?id=145612
240 <rdar://problem/21227454>
242 Reviewed by Darin Adler.
244 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
245 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
246 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
248 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
250 [cmake] Suppress parentheses-equality warnings
251 https://bugs.webkit.org/show_bug.cgi?id=145126
253 Reviewed by Darin Adler.
255 * Source/cmake/WebKitHelpers.cmake:
257 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
259 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
260 https://bugs.webkit.org/show_bug.cgi?id=145408
262 Reviewed by Carlos Garcia Campos.
264 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
265 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
266 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
268 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
269 libraries. Detect also GLX libraries.
270 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
271 libraries. Use find_path() to get the include path.
272 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
274 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
275 depending on the libraries found on the system.
276 Move the detection of GLX (and the include of CMakePushCheckState)
278 Ensure that we only define USE_GLX when we build with OpenGL
279 (but not with GLESv2).
281 2015-05-27 Dean Jackson <dino@apple.com>
283 img.currentSrc problem in strict mode with old picturefill
284 https://bugs.webkit.org/show_bug.cgi?id=144095
285 <rdar://problem/21087013>
287 Reviewed by Simon Fraser.
289 Add a PICTURE_SIZES flag.
291 * Source/cmake/OptionsEfl.cmake:
292 * Source/cmake/OptionsGTK.cmake:
293 * Source/cmake/OptionsMac.cmake:
294 * Source/cmake/OptionsWindows.cmake:
295 * Source/cmake/WebKitFeatures.cmake:
297 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
299 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
301 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
303 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
305 Unreviewed. Export DatabaseProcessMainUnix symbol.
307 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
308 is exported in production builds.
310 * Source/cmake/gtksymbols.filter:
312 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
314 [GTK] Enable IndexedDB
315 https://bugs.webkit.org/show_bug.cgi?id=98932
317 Reviewed by Žan Doberšek.
319 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
320 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
322 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
324 [GTK] Bump GCC requirements to 4.9.0
325 https://bugs.webkit.org/show_bug.cgi?id=145211
327 Reviewed by Žan Doberšek.
329 It's required to build with IndexedDB support when using GCC,
330 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
332 * Source/cmake/OptionsGTK.cmake:
334 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
336 [CMake] Ignore warnings in system headers
337 https://bugs.webkit.org/show_bug.cgi?id=144747
339 Reviewed by Darin Adler.
341 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
342 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
343 use the SYSTEM argument to the command (added in 2.8.12).
347 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
349 [CMake] Error out when ruby is too old
350 https://bugs.webkit.org/show_bug.cgi?id=145014
352 Reviewed by Martin Robinson.
354 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
359 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
361 [GTK] Enable plugin-related CMake options and variables for the X11 target only
362 https://bugs.webkit.org/show_bug.cgi?id=144995
364 Reviewed by Carlos Garcia Campos.
366 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
367 the X11 windowing target at the moment, so the following options
368 and variables should be enabled or disabled accordingly:
369 - ENABLE_PLUGIN_PROCESS_GTK2
370 - ENABLE_NETSCAPE_PLUGIN_API
371 - ENABLE_PLUGIN_PROCESS
373 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
375 Linker fails without -DDEVELOPER_MODE=ON
376 https://bugs.webkit.org/show_bug.cgi?id=144117
378 Reviewed by Gyuyoung Kim.
380 * Source/cmake/OptionsEfl.cmake:
381 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
382 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
384 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
386 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
387 https://bugs.webkit.org/show_bug.cgi?id=144846
389 Reviewed by Martin Robinson.
391 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
392 CAIRO_GL_* throughout, because find_package will define
394 * Source/cmake/OptionsGTK.cmake: Ditto.
396 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
398 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
399 https://bugs.webkit.org/show_bug.cgi?id=144845
401 Reviewed by Martin Robinson.
403 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
404 if their corresponding WTF options are ON. The code in npapi.h
405 relies on these being undefined if they are to be switched off.
407 2015-05-09 Yoav Weiss <yoav@yoav.ws>
409 Remove the PICTURE_SIZES build flag
410 https://bugs.webkit.org/show_bug.cgi?id=144679
412 Reviewed by Benjamin Poulain.
414 Removed the PICTURE_SIZES build time flag.
416 * Source/cmake/OptionsEfl.cmake:
417 * Source/cmake/OptionsGTK.cmake:
418 * Source/cmake/OptionsMac.cmake:
419 * Source/cmake/OptionsWindows.cmake:
420 * Source/cmake/WebKitFeatures.cmake:
422 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
424 [GTK] [CMake] Check for required X libraries
425 https://bugs.webkit.org/show_bug.cgi?id=144823
427 Reviewed by Martin Robinson.
429 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
431 * Source/cmake/OptionsGTK.cmake:
433 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
435 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
436 https://bugs.webkit.org/show_bug.cgi?id=144746
438 Reviewed by Carlos Garcia Campos.
440 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
441 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
442 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
444 * Source/cmake/OptionsGTK.cmake:
446 2015-05-08 Daniel Bates <dabates@apple.com>
448 [iOS] WebSQL operations are not performed after device is locked
449 https://bugs.webkit.org/show_bug.cgi?id=137503
450 <rdar://problem/20844952>
452 Rubber-stamped by Alexey Proskuryakov.
454 Add a manual test to help verify that we do not regress this issue.
456 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
458 2015-05-08 Commit Queue <commit-queue@webkit.org>
460 Unreviewed, rolling out r183945.
461 https://bugs.webkit.org/show_bug.cgi?id=144789
463 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
467 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
468 https://bugs.webkit.org/show_bug.cgi?id=144746
469 http://trac.webkit.org/changeset/183945
471 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
473 Cleanup after r183940
474 https://bugs.webkit.org/show_bug.cgi?id=144768
478 Looks like the empty directories were not deleted.
480 * Source/PAL: Removed.
481 * Source/PAL/Configurations: Removed.
482 * Source/PAL/PAL.xcodeproj: Removed.
483 * Source/PAL/graphics: Removed.
485 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
487 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
488 https://bugs.webkit.org/show_bug.cgi?id=144746
490 Reviewed by Martin Robinson.
492 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
493 what it is defined to, so defining it to 0 effectively turned it on always.
495 * Source/cmake/OptionsGTK.cmake:
497 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
499 Revert "Introducing the Platform Abstraction Layer (PAL)"
500 https://bugs.webkit.org/show_bug.cgi?id=144751
504 PAL should be a new target inside WebCore, rather than a top-level folder.
506 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
508 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
510 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
512 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
514 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
516 Introducing the Platform Abstraction Layer (PAL)
517 https://bugs.webkit.org/show_bug.cgi?id=143358
519 Reviewed by Simon Fraser.
521 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
523 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
525 [cmake] Disable GNU Gold linker on Cortex A53
526 https://bugs.webkit.org/show_bug.cgi?id=144382
528 Reviewed by Carlos Garcia Campos.
530 * Source/cmake/OptionsCommon.cmake:
532 2015-05-01 Martin Robinson <mrobinson@igalia.com>
534 USE(...) macro should expect unprefixed variables
535 https://bugs.webkit.org/show_bug.cgi?id=144454
537 Reviewed by Daniel Bates.
539 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
540 * Source/cmake/OptionsEfl.cmake: Ditto.
541 * Source/cmake/OptionsGTK.cmake: Ditto.
542 * Source/cmake/OptionsMac.cmake: Ditto.
543 * Source/cmake/OptionsWinCairo.cmake: Ditto.
544 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
547 2015-04-30 Martin Robinson <mrobinson@igalia.com>
549 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
550 https://bugs.webkit.org/show_bug.cgi?id=144394
552 Reviewed by Carlos Garcia Campos.
554 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
555 is that it fixes the redirected XComposite window for GTK+, which was accidentally
556 disabled in previous reworking of the CMake configuration.
558 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
559 version of USE variables.
560 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
561 is exposed to the build.
563 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
565 Unreviewed. Bump GTK+ version numbers.
567 * Source/cmake/OptionsGTK.cmake:
569 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
571 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
572 https://bugs.webkit.org/show_bug.cgi?id=144435
574 Reviewed by Gyuyoung Kim.
576 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
577 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
579 * Source/cmake/OptionsEfl.cmake:
581 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
583 REGRESSION(183583): [Mac] make without SDKROOT has issues
584 https://bugs.webkit.org/show_bug.cgi?id=144431
586 Reviewed by Dan Bernstein.
589 Assume an empty SDKROOT means an macosx variant, so only
590 enable settings if the SDKROOT is not empty and does not
593 2015-04-29 Martin Robinson <mrobinson@igalia.com>
595 Fix the GTK+ build after r183584
597 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
599 2015-04-29 Martin Robinson <mrobinson@igalia.com>
601 [GTK] Add support for automatic hyphenation
602 https://bugs.webkit.org/show_bug.cgi?id=44478
604 Reviewed by Carlos Garcia Campos.
606 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
607 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
608 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
610 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
612 Failure when building WebKit for appletvsimulator.
613 https://bugs.webkit.org/show_bug.cgi?id=144356
615 Reviewed by Alexey Proskuryakov.
617 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
618 make TVOS and WatchOS behave correctly.
622 2015-04-29 Martin Robinson <mrobinson@igalia.com>
624 [CMake] [GTK] Organize and clean up unused CMake variables
625 https://bugs.webkit.org/show_bug.cgi?id=144364
627 Reviewed by Gyuyoung Kim.
629 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
630 specific to certain projects into their PlatformGTK.cmake files.
632 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
634 [EFL] Build failure to find gio-unix
635 https://bugs.webkit.org/show_bug.cgi?id=144083
637 Reviewed by Gyuyoung Kim.
639 Original patch by Doug Newgard <scimma22@outlook.com>
641 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
643 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
645 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
646 https://bugs.webkit.org/show_bug.cgi?id=143001
648 Reviewed by Gyuyoung Kim.
650 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
651 * Source/cmake/OptionsGTK.cmake: Ditto.
653 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
655 Unreviewed, fix typo in previous commit
657 libsecretr -> libsecret in the error message.
659 * Source/cmake/OptionsGTK.cmake:
661 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
663 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
664 https://bugs.webkit.org/show_bug.cgi?id=143546
666 Reviewed by Martin Robinson.
668 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
669 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
670 default. Fail the build with an informative error message if an optional dependency required
671 for an enabled feature is not present. Perform find_package commands only when necessary.
672 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
675 * Source/cmake/OptionsGTK.cmake:
677 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
679 [GTK] Make all options actually options
680 https://bugs.webkit.org/show_bug.cgi?id=144106
682 Reviewed by Martin Robinson.
684 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
685 ENABLE_WAYLAND_TARGET.
687 * Source/cmake/OptionsGTK.cmake:
689 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
691 Unreviewed, fix GTK build after r183452
693 * Source/cmake/OptionsGTK.cmake:
695 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
697 [GTK] Add one single option to control all OpenGL-related options
698 https://bugs.webkit.org/show_bug.cgi?id=144105
700 Reviewed by Martin Robinson.
702 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
703 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
704 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
705 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
706 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
709 * Source/cmake/OptionsGTK.cmake:
711 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
713 [GTK] ENABLE_SMOOTH_SCROLLING should be private
714 https://bugs.webkit.org/show_bug.cgi?id=144306
716 Reviewed by Martin Robinson.
718 Make ENABLE_SMOOTH_SCROLLING private instead of public.
720 * Source/cmake/OptionsGTK.cmake:
722 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
724 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
725 https://bugs.webkit.org/show_bug.cgi?id=144193
727 Reviewed by Darin Adler.
729 * Source/cmake/OptionsEfl.cmake:
730 * Source/cmake/OptionsGTK.cmake:
731 * Source/cmake/OptionsWinCairo.cmake:
732 * Source/cmake/WebKitFeatures.cmake:
734 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
736 [CMake] Should be possible for an option to conflict with other options
737 https://bugs.webkit.org/show_bug.cgi?id=143956
739 Reviewed by Martin Robinson.
741 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
743 * Source/cmake/WebKitFeatures.cmake:
745 2015-04-22 Martin Robinson <mrobinson@igalia.com>
747 [CMake] Autogenerate cmakeconfig.h.cmake
748 https://bugs.webkit.org/show_bug.cgi?id=143997
750 Reviewed by Csaba Osztrogonác.
752 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
753 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
754 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
755 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
756 Do some other miscellaneous related cleanup.
757 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
758 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
759 build exposed variables. Add a macro to generate a configuration from them.
760 * Source/cmakeconfig.h.cmake: Removed.
762 2015-04-24 Philippe Normand <pnormand@igalia.com>
764 [JHBuild] Move to upstream OpenWebRTC
765 https://bugs.webkit.org/show_bug.cgi?id=144145
767 Reviewed by Carlos Garcia Campos.
769 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
772 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
774 [ES6] Implement ES6 template literals
775 https://bugs.webkit.org/show_bug.cgi?id=142691
777 Reviewed by Darin Adler.
779 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
781 * Source/cmake/WebKitFeatures.cmake:
782 * Source/cmakeconfig.h.cmake:
784 2015-04-25 Martin Robinson <mrobinson@igalia.com>
786 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
787 https://bugs.webkit.org/show_bug.cgi?id=144182
789 Reviewed by Simon Fraser.
791 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
792 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
793 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
794 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
795 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
797 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
799 [GTK] Add more public options
800 https://bugs.webkit.org/show_bug.cgi?id=144116
802 Reviewed by Martin Robinson.
804 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
806 * Source/cmake/OptionsGTK.cmake:
808 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
810 [CMake] Some internal variables are not marked as advanced
811 https://bugs.webkit.org/show_bug.cgi?id=143595
813 Reviewed by Martin Robinson.
815 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
816 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
818 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
820 [GTK] Mark as advanced the build options we don't want to expose
821 https://bugs.webkit.org/show_bug.cgi?id=143558
823 Reviewed by Martin Robinson.
825 Mark various options as private instead of public.
827 * Source/cmake/OptionsGTK.cmake:
829 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
831 [CMake] Should be possible for an option to depend on multiple options
832 https://bugs.webkit.org/show_bug.cgi?id=143839
834 Reviewed by Martin Robinson.
836 Use a list instead of a single variable to track the dependencies of each option. Iterate
837 over the list as many times as necessary to ensure all options are properly disabled.
839 * Source/cmake/WebKitFeatures.cmake:
841 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
843 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
844 https://bugs.webkit.org/show_bug.cgi?id=144103
846 Reviewed by Martin Robinson.
848 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
850 * Source/cmake/WebKitFeatures.cmake:
852 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
854 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
855 https://bugs.webkit.org/show_bug.cgi?id=144102
857 Reviewed by Martin Robinson.
859 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
860 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
861 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
863 * Source/cmake/OptionsGTK.cmake:
865 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
867 [CMake] Clean up JSC JIT options
868 https://bugs.webkit.org/show_bug.cgi?id=143998
870 Reviewed by Filip Pizlo.
872 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
873 define for ENABLE_FTL_NATIVE_CALL_INLINING.
874 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
875 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
876 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
877 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
879 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
881 [CMake] Use lowercase for local variables in macros
882 https://bugs.webkit.org/show_bug.cgi?id=144059
884 Reviewed by Martin Robinson.
886 Convert some variable names to lowercase.
888 * Source/cmake/WebKitFeatures.cmake:
890 2015-04-22 Commit Queue <commit-queue@webkit.org>
892 Unreviewed, rolling out r183116.
893 https://bugs.webkit.org/show_bug.cgi?id=144060
895 Inadvertently deleted a file... (Requested by mcatanzaro on
900 "[CMake] Use lowercase for local variables in macros"
901 https://bugs.webkit.org/show_bug.cgi?id=144059
902 http://trac.webkit.org/changeset/183116
904 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
906 [CMake] Use lowercase for local variables in macros
907 https://bugs.webkit.org/show_bug.cgi?id=144059
909 Reviewed by Martin Robinson.
911 Convert some variable names to lowercase.
913 * Source/cmake/WebKitFeatures.cmake:
915 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
917 [CMake] Features list should print dots every other row
918 https://bugs.webkit.org/show_bug.cgi?id=143832
920 Reviewed by Martin Robinson.
922 Discount private options when determining whether to print dots on a given row of the
923 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
924 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
925 wasn't noticed because it only affects the first line, and use of the variable name as a
926 string in a conditional.)
928 * Source/cmake/WebKitFeatures.cmake:
930 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
932 [CMake] Require specifying visibility of WebKit options
933 https://bugs.webkit.org/show_bug.cgi?id=143831
935 Reviewed by Alex Christensen.
937 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
938 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
939 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
940 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
941 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
942 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
943 cross-platform options as PRIVATE.
945 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
947 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
948 https://bugs.webkit.org/show_bug.cgi?id=143935
950 Reviewed by Darin Adler.
952 Some variables aren't defined in these files or unused variables aren't removed. This
953 patch cleans up it as well as fix wrong alphabet order.
955 * Source/cmake/WebKitFeatures.cmake:
956 * Source/cmakeconfig.h.cmake:
958 2015-04-19 Simon Fraser <simon.fraser@apple.com>
960 Restore the WebKit.xcworkspace to the way it was before r182899,
961 which inadvertently added the Source directory and a couple of source
964 * WebKit.xcworkspace/contents.xcworkspacedata:
966 2015-04-16 Basile Clement <basile_clement@apple.com>
968 Extract the allocation profile from JSFunction into a rare object
969 https://bugs.webkit.org/show_bug.cgi?id=143807
971 Reviewed by Filip Pizlo.
973 * WebKit.xcworkspace/contents.xcworkspacedata:
975 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
977 [EFL] Bump LLVM to version 3.6.0 on X86_64
978 https://bugs.webkit.org/show_bug.cgi?id=143604
980 Reviewed by Gyuyoung Kim.
982 * Source/cmake/FindLLVM.cmake: Added version handling.
983 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
985 2015-04-15 Timothy Horton <timothy_horton@apple.com>
987 Custom CSS cursors do not use -webkit-image-set on retina displays
988 https://bugs.webkit.org/show_bug.cgi?id=120783
990 Reviewed by Beth Dakin.
991 Patch by Evan Wallace <evan.exe@gmail.com>.
993 Add a manual test for custom CSS cursors on retina displays.
995 * ManualTests/retina-cursors.html: Added.
997 2015-04-15 Alex Christensen <achristensen@webkit.org>
999 Progress towards CMake on Mac.
1000 https://bugs.webkit.org/show_bug.cgi?id=143785
1002 Reviewed by Csaba Osztrogonác.
1005 * Source/cmake/OptionsMac.cmake:
1006 * Source/cmake/WebKitFS.cmake:
1008 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
1010 Cannot click "Next" button on Google two-factor auth setup page
1012 <https://bugs.webkit.org/show_bug.cgi?id=143624>
1013 <rdar://problem/19175714>
1015 Reviewed by Darin Adler.
1017 * ManualTests/button-that-focuses-itself-on-click.html: Added.
1019 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
1021 [cmake] REGRESSION(182663): It broke feature dependency handling
1022 https://bugs.webkit.org/show_bug.cgi?id=143665
1024 Reviewed by Csaba Osztrogonác.
1026 Don't try to check the value of options before defining the options.
1028 * Source/cmake/WebKitFeatures.cmake:
1030 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
1032 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
1033 https://bugs.webkit.org/show_bug.cgi?id=143664
1035 Reviewed by Gyuyoung Kim.
1037 * Source/cmake/OptionsEfl.cmake:
1038 * Source/cmake/OptionsGTK.cmake:
1039 * Source/cmake/WebKitFeatures.cmake:
1040 * Source/cmakeconfig.h.cmake:
1042 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1044 [EFL] Enable Media Source
1045 https://bugs.webkit.org/show_bug.cgi?id=143635
1047 Reviewed by Csaba Osztrogonác.
1049 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
1051 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1053 [CMake] Miscellaneous issues in WebKitFeatures.cmake
1054 https://bugs.webkit.org/show_bug.cgi?id=143636
1056 Reviewed by Martin Robinson.
1058 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
1059 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
1061 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
1062 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
1064 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
1066 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
1068 Fix ENABLE_TOUCH_SLIDER so that it can be used
1072 * Source/cmake/WebKitFeatures.cmake:
1074 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1076 [CMake] Print sorted feature list at the very end of the configure process
1077 https://bugs.webkit.org/show_bug.cgi?id=143596
1079 Reviewed by Martin Robinson.
1081 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
1082 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
1083 and sort the options before printing. Reorder some code so that features still get
1084 propagated to the bindings generators.
1086 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
1088 [CMake] Options should be marked as advanced by default
1089 https://bugs.webkit.org/show_bug.cgi?id=143572
1091 Reviewed by Gyuyoung Kim.
1093 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
1094 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
1095 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
1096 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
1097 option without making it public.
1099 * Source/cmake/WebKitFeatures.cmake:
1101 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1103 [CMake] Remove unnecessary ENABLE_WEBCORE switch
1104 https://bugs.webkit.org/show_bug.cgi?id=143584
1106 Reviewed by Csaba Osztrogonác.
1108 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
1112 * Source/CMakeLists.txt:
1113 * Source/cmake/OptionsGTK.cmake:
1114 * Source/cmake/WebKitFS.cmake:
1116 2015-04-08 Filip Pizlo <fpizlo@apple.com>
1118 Unreviewed, revert accidental commit.
1122 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
1124 Add CMake build system for WinCairo port.
1125 https://bugs.webkit.org/show_bug.cgi?id=115944
1127 Reviewed by Chris Dumez.
1129 * Source/cmake/OptionsWindows.cmake:
1130 * Source/cmake/WebKitMacros.cmake:
1131 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1133 2015-04-06 Alberto Garcia <berto@igalia.com>
1135 [GTK] Fix HPPA build
1136 https://bugs.webkit.org/show_bug.cgi?id=143453
1138 Reviewed by Darin Adler.
1140 Add HPPA to the list of supported CPUs.
1144 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
1146 Unreviewed, kick the GTK bots to fix an incremental build issue.
1148 * Source/cmake/OptionsGTK.cmake:
1150 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
1152 Fix the EFL and GTK build after r182243
1153 https://bugs.webkit.org/show_bug.cgi?id=143361
1155 Reviewed by Csaba Osztrogonác.
1157 * Source/PlatformEfl.cmake: Add a custom command that copies
1158 the InspectorBackendCommands.js file into the proper directory
1159 under DerivedSources/WebInspectorUI/.
1161 2015-04-01 Alex Christensen <achristensen@webkit.org>
1163 Progress towards CMake on Windows and Mac.
1164 https://bugs.webkit.org/show_bug.cgi?id=143293
1166 Reviewed by Filip Pizlo.
1169 Set DERIVED_SOURCES_WTF_DIR for Windows.
1170 * Source/CMakeLists.txt:
1171 Don't compile bmalloc on Windows.
1172 * Source/cmake/OptionsCommon.cmake:
1173 Use the absolute path of the C preprocessor.
1174 * Source/cmake/OptionsWinCairo.cmake:
1175 Added needed definitions.
1176 * Source/cmake/OptionsWindows.cmake:
1177 Set some default values and removed support for old Visual Studio versions before /MP.
1178 * Source/cmake/WebKitFS.cmake:
1179 Make WTF DerivedSources directory.
1180 * Source/cmake/WebKitMacros.cmake:
1181 Added ADD_PRECOMPILED_HEADER macro based on
1182 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
1184 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
1186 Use colored diagnostics when building with cmake + ninja + clang
1187 https://bugs.webkit.org/show_bug.cgi?id=143297
1189 Reviewed by Žan Doberšek.
1191 Because that ninja sets subprocess stdout/stderr to a pipe, clang
1192 disables colored output.
1193 This patch forces clang to use colored diagnostics when we are using
1196 * Source/cmake/OptionsCommon.cmake:
1198 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1200 [CMake] Update old CMakeList.txt in gtest
1201 https://bugs.webkit.org/show_bug.cgi?id=143192
1203 Reviewed by Darin Adler.
1205 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
1206 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
1207 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
1209 * Source/CMakeLists.txt:
1210 * Source/cmake/gtest/CMakeLists.txt: Removed.
1212 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1214 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
1215 https://bugs.webkit.org/show_bug.cgi?id=143138
1217 Reviewed by Csaba Osztrogonác.
1219 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
1220 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
1222 * Source/cmake/OptionsWindows.cmake:
1223 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
1224 * Source/cmake/WebKitMacros.cmake:
1226 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1228 [GStreamer] share GL context in pipeline, part 2
1229 https://bugs.webkit.org/show_bug.cgi?id=143049
1231 Reviewed by Carlos Garcia Campos.
1233 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
1234 OpenGL/ES2 is found and GLX/EGL is found too.
1236 2015-03-26 Alex Christensen <achristensen@webkit.org>
1238 Progress towards CMake on Mac.
1239 https://bugs.webkit.org/show_bug.cgi?id=143112
1241 Reviewed by Chris Dumez.
1243 * Source/cmake/OptionsMac.cmake:
1245 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
1247 [EFL] Add OpenWebRTC in jhbuild
1248 https://bugs.webkit.org/show_bug.cgi?id=142778
1250 Reviewed by Gyuyoung Kim.
1252 Original patch by Philippe Normand <pnormand@igalia.com>
1254 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
1255 mediastream build is enabled.
1257 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
1259 [GTK] Add a configure option to build without Redirected XComposite Window
1260 https://bugs.webkit.org/show_bug.cgi?id=142865
1262 Reviewed by Žan Doberšek.
1264 The Redirected XComposite Window was added to support some
1265 features like GtkOverlay, but in cases where we don't need such
1266 features, it's more efficient to use the XID of the WebKitWebView
1267 window as the native surface handle for the accelerated
1268 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
1269 that is enabled by default for X11 target when OpenGL is enabled.
1271 * Source/cmake/OptionsGTK.cmake:
1273 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
1275 [GTK] Search for the Wayland dependency when enabling Wayland target
1276 https://bugs.webkit.org/show_bug.cgi?id=142876
1278 Reviewed by Carlos Garcia Campos.
1280 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
1281 requirement of either the GTK+ or GDK pkg-config files, so we have to
1282 search for it ourselves when WebKitGTK+ has been configured to support
1283 the Wayland windowing target.
1285 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1287 Unreviewed, kick the GTK bots to regenerate makefile.
1288 https://bugs.webkit.org/show_bug.cgi?id=137394
1290 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
1291 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
1293 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1295 Unreviewed, kick the GTK bots to regenerate makefile.
1296 https://bugs.webkit.org/show_bug.cgi?id=137394
1298 * Source/cmake/OptionsEfl.cmake:
1300 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
1302 [GTK] Fix inspector userinterface related incremental build issue
1303 https://bugs.webkit.org/show_bug.cgi?id=142849
1305 Reviewed by Carlos Garcia Campos.
1307 * Source/cmake/OptionsGTK.cmake: Revert r181733.
1309 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
1311 Unreviewed, kick the GTK bots to regenerate makefile.
1313 * Source/cmake/OptionsGTK.cmake:
1315 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
1317 [EFL] Expose JavaScript binding interface through ewk_extension
1318 https://bugs.webkit.org/show_bug.cgi?id=142033
1320 Reviewed by Gyuyoung Kim.
1322 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
1324 2015-03-17 Philippe Normand <pnormand@igalia.com>
1326 [GTK] basic OpenWebRTC build support
1327 https://bugs.webkit.org/show_bug.cgi?id=142393
1329 Reviewed by Carlos Garcia Campos.
1331 * Source/cmake/FindOpenWebRTC.cmake: Added.
1332 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
1333 mediastream build is enabled.
1335 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1337 [CMake][EFL] Build test tools only for developer mode
1338 https://bugs.webkit.org/show_bug.cgi?id=142761
1340 Reviewed by Csaba Osztrogonác.
1342 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
1344 * Source/cmake/OptionsEfl.cmake:
1345 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
1346 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
1347 * Source/cmakeconfig.h.cmake:
1349 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
1351 Enable ES6 classes by default
1352 https://bugs.webkit.org/show_bug.cgi?id=142774
1354 Reviewed by Gavin Barraclough.
1356 * Source/cmake/WebKitFeatures.cmake:
1358 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1360 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
1361 https://bugs.webkit.org/show_bug.cgi?id=142722
1363 Reviewed by Csaba Osztrogonác.
1365 Categorize to define cmake variables, to find necessary packages,
1366 use upper case for "glib_conponents" cmake variable name, re-arrange
1367 wrong alphabet sorting, and so on.
1369 * CMakeLists.txt: Remove WinCE port.
1370 * Source/cmake/OptionsEfl.cmake:
1372 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1374 [GStreamer] share GL context in pipeline
1375 https://bugs.webkit.org/show_bug.cgi?id=142693
1377 Reviewed by Philippe Normand.
1379 Add search of gstreamer-gl library in the GStreamer installation. If
1380 it is found, WTF_USE_GSTREAMER_GL macro is defined.
1382 * Source/cmake/FindGStreamer.cmake:
1383 * Source/cmake/OptionsGTK.cmake:
1385 2015-03-13 Alex Christensen <achristensen@webkit.org>
1387 Progress towards CMake on Mac.
1388 https://bugs.webkit.org/show_bug.cgi?id=142680
1390 Reviewed by Gyuyoung Kim.
1393 * Source/PlatformMac.cmake: Added stub.
1394 * Source/cmake/OptionsMac.cmake:
1395 Change defines to get CMake working.
1397 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1399 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
1400 https://bugs.webkit.org/show_bug.cgi?id=126688
1402 Reviewed by Gustavo Noronha Silva.
1404 Add ENABLE_MINIBROWSER option, enabled by default for development
1405 builds and disabled for production builds unless explicilty enabled.
1407 * Source/cmake/OptionsGTK.cmake:
1409 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1411 [GTK] Do not look for child processes in the UI process binary path
1412 https://bugs.webkit.org/show_bug.cgi?id=135752
1414 Reviewed by Gustavo Noronha Silva.
1416 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
1417 build for development builds.
1419 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
1421 [GTK] Add a configure option to build with OpenGL ES 2
1422 https://bugs.webkit.org/show_bug.cgi?id=142498
1424 Reviewed by Martin Robinson.
1426 Add ENABLE_GLES2 option. It's disabled by default, but if passed
1427 GLES2 is required and OpenGL is not even searched. Otherwise we
1428 search for OpenGL as usual, using it only if present.
1430 * Source/cmake/OptionsGTK.cmake:
1432 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
1434 [cmake] Handle unused parameter warnings as build errors except in WebKit2
1435 https://bugs.webkit.org/show_bug.cgi?id=142338
1437 Reviewed by Gyuyoung Kim.
1439 * Source/cmake/WebKitHelpers.cmake:
1441 2015-03-03 Daniel Bates <dabates@apple.com>
1443 Convert ManualTests/svg-tooltip.svg to a DRT test
1444 https://bugs.webkit.org/show_bug.cgi?id=140480
1446 Reviewed by Alex Christensen.
1448 * ManualTests/svg-tooltip.svg: Removed.
1450 2015-03-02 Debarshi Ray <debarshir@gnome.org>
1452 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
1453 https://bugs.webkit.org/show_bug.cgi?id=142165
1455 Reviewed by Carlos Garcia Campos.
1457 * Source/cmake/gtksymbols.filter:
1459 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
1461 [EFL] Remove unnecessary comment after r179110
1462 https://bugs.webkit.org/show_bug.cgi?id=142042
1464 Reviewed by Gyuyoung Kim.
1466 * Source/cmake/OptionsEfl.cmake:
1468 2015-02-23 Tomas Popela <tpopela@redhat.com>
1470 [GTK] Fails to compile with cmake 3.2.x
1471 https://bugs.webkit.org/show_bug.cgi?id=141796
1473 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
1474 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
1475 added and the build will fail.
1477 Reviewed by Martin Robinson.
1479 * Source/cmake/OptionsGTK.cmake:
1481 2015-02-20 Alexey Proskuryakov <ap@apple.com>
1483 Remove svn:keywords property.
1485 As far as I can tell, the property had no effect on any of these files, but also,
1486 when it has effect it's likely harmful.
1488 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
1489 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
1490 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
1491 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
1492 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
1493 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
1494 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
1495 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
1496 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
1497 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
1498 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
1499 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
1500 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
1501 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
1503 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1505 [CMAKE] Remove CMakeLists.txt in WK1 port
1506 https://bugs.webkit.org/show_bug.cgi?id=141617
1508 Reviewed by Anders Carlsson.
1510 Nobody uses CMake in WK1 port. Remove it.
1514 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
1516 Unreviewed, remove empty directories.
1518 * ManualTests/qt: Removed.
1520 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1522 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
1523 https://bugs.webkit.org/show_bug.cgi?id=141481
1525 Reviewed by Csaba Osztrogonác.
1527 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
1529 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1531 [EFL][GTK] Use bmalloc instead of tcmalloc
1532 https://bugs.webkit.org/show_bug.cgi?id=140162
1534 Reviewed by Carlos Garcia Campos.
1536 Add bmalloc directory to build list.
1538 * CMakeLists.txt: Define BMALLOC_DIR directory.
1539 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
1541 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
1543 [GTK] Add default color chooser implementation using GtkColorChooserDialog
1544 https://bugs.webkit.org/show_bug.cgi?id=141392
1546 Reviewed by Gustavo Noronha Silva.
1548 Enable INPUT_TYPE_COLOR by default for GTK+ port.
1550 * Source/cmake/OptionsGTK.cmake:
1552 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
1554 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
1555 https://bugs.webkit.org/show_bug.cgi?id=141328
1557 Reviewed by Darin Adler.
1559 Added as manual test because it involves a huge grid allocation
1560 which is very slow on Debug bots, the only ones capable to trigger
1563 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
1565 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
1567 [Streams API] Implement a barebone ReadableStream interface
1568 https://bugs.webkit.org/show_bug.cgi?id=141045
1570 Reviewed by Benjamin Poulain.
1572 * Source/cmake/WebKitFeatures.cmake:
1573 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
1575 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1577 Revert accidental change in r179490.
1581 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1583 Unreviewed, revert accidental change to Makefile.shared in r179478
1587 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1589 [CMake] Minimum python version should be 2.7.
1590 https://bugs.webkit.org/show_bug.cgi?id=140997
1592 Reviewed by Csaba Osztrogonác.
1596 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1598 Apply feTurbulence spec change to fix zero length vector generation
1599 https://bugs.webkit.org/show_bug.cgi?id=140812
1601 Reviewed by Darin Adler.
1603 Recently a bug with the turbulence algorithm was corrected in the
1604 Filter Effects specification.
1605 For some seed values this bug allowed zero length vectors to be generated.
1606 This resulted in large solid color squares being present in the generated image.
1607 The feTurbulence algorithm was updated to reject zero length vectors. This patch
1608 applies that change in WebCore.
1610 Test: svg/filters/feTurbulence_bad_seeds.html
1612 * platform/graphics/filters/FETurbulence.cpp:
1613 (WebCore::FETurbulence::initPaint):
1614 Added rejection sampling during vector generation to avoid zero length vectors.
1616 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1618 [cmake] Remove compiler version calculate cruft
1619 https://bugs.webkit.org/show_bug.cgi?id=140885
1621 Reviewed by Darin Adler.
1623 * Source/cmake/WebKitHelpers.cmake:
1625 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1627 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
1628 https://bugs.webkit.org/show_bug.cgi?id=140886
1630 Reviewed by Žan Doberšek.
1632 * Source/cmake/WebKitHelpers.cmake:
1634 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
1636 [GTK] gtkdoc does not appear in DevHelp
1637 https://bugs.webkit.org/show_bug.cgi?id=139369
1639 Reviewed by Philippe Normand.
1641 Expect the gtkdoc to be generated in folders named with the API version.
1643 * Source/PlatformGTK.cmake:
1645 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
1647 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
1648 https://bugs.webkit.org/show_bug.cgi?id=140609
1650 Reviewed by Csaba Osztrogonác.
1652 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
1653 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
1654 compilation flags. Those were added after the jsCStack branch merge, but
1655 can now be removed since the -ftree-dce issues were fixed in GCC, and
1656 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
1658 * Source/cmake/OptionsEfl.cmake:
1659 * Source/cmake/OptionsGTK.cmake:
1661 2015-01-26 Commit Queue <commit-queue@webkit.org>
1663 Unreviewed, rolling out r179107.
1664 https://bugs.webkit.org/show_bug.cgi?id=140880
1666 The GCC in the bots doesn't support the AsyncTask
1667 implementation (Requested by KaL on #webkit).
1671 "[GTK] Enable IndexedDB"
1672 https://bugs.webkit.org/show_bug.cgi?id=98932
1673 http://trac.webkit.org/changeset/179107
1675 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
1677 [GTK] Enable IndexedDB
1678 https://bugs.webkit.org/show_bug.cgi?id=98932
1680 Reviewed by Žan Doberšek.
1682 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1683 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1685 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
1687 [GTK] Add initial database process support
1688 https://bugs.webkit.org/show_bug.cgi?id=139491
1690 Reviewed by Sergio Villar Senin.
1692 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
1694 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
1696 Add a build flag for ES6 class syntax
1697 https://bugs.webkit.org/show_bug.cgi?id=140760
1699 Reviewed by Michael Saboff.
1701 * Source/cmake/WebKitFeatures.cmake:
1702 * Source/cmakeconfig.h.cmake:
1704 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1706 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
1707 https://bugs.webkit.org/show_bug.cgi?id=140049
1709 Reviewed by Gyuyoung Kim.
1711 * Source/cmake/OptionsCommon.cmake:
1713 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1715 Remove ENABLE(INSPECTOR) ifdef guards
1716 https://bugs.webkit.org/show_bug.cgi?id=140668
1718 Reviewed by Darin Adler.
1720 * Source/PlatformEfl.cmake:
1721 * Source/cmake/OptionsEfl.cmake:
1722 * Source/cmake/OptionsGTK.cmake:
1723 * Source/cmake/OptionsMac.cmake:
1724 * Source/cmake/WebKitFeatures.cmake:
1725 * Source/cmakeconfig.h.cmake:
1727 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
1729 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
1731 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1733 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1735 [CMAKE] Fix cmake warning
1736 https://bugs.webkit.org/show_bug.cgi?id=140497
1738 Reviewed by Gustavo Noronha Silva.
1740 r173155 already tried to fix cmake warning though, the warning is still exist.
1741 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
1742 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
1743 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
1744 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
1745 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
1749 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
1751 [GTK] Generate the make dist manifest from a CMake template file
1752 https://bugs.webkit.org/show_bug.cgi?id=139387
1754 Reviewed by Martin Robinson.
1756 Generate manifest.txt from manifest.txt.in. Only expose the dist and
1757 distcheck targets for developer builds, as they won't work when
1758 building from a tarball because the manifest is not distributed.
1760 * Source/PlatformGTK.cmake:
1762 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
1764 Remove ENABLE(SQL_DATABASE) guards
1765 https://bugs.webkit.org/show_bug.cgi?id=140434
1767 Reviewed by Darin Adler.
1769 * Source/cmake/OptionsMac.cmake:
1770 * Source/cmake/WebKitFeatures.cmake:
1771 * Source/cmakeconfig.h.cmake:
1773 2015-01-11 Sam Weinig <sam@webkit.org>
1775 Remove support for SharedWorkers
1776 https://bugs.webkit.org/show_bug.cgi?id=140344
1778 Reviewed by Anders Carlsson.
1780 * Source/cmake/OptionsEfl.cmake:
1781 * Source/cmake/OptionsGTK.cmake:
1782 * Source/cmake/OptionsMac.cmake:
1783 * Source/cmake/WebKitFeatures.cmake:
1784 * Source/cmakeconfig.h.cmake:
1786 2015-01-10 Dan Bernstein <mitz@apple.com>
1788 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
1789 https://bugs.webkit.org/show_bug.cgi?id=140339
1791 Reviewed by Mark Rowe.
1793 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
1794 prevents unnecessary rebuilding due to PATH differences.
1796 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
1798 [GTK][ThreadedCompositor] Add support for threaded compositor.
1799 https://bugs.webkit.org/show_bug.cgi?id=118265
1801 Reviewed by Martin Robinson.
1803 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
1804 autotools build systems. The feature is disabled by default.
1805 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
1806 from the feature flags.
1808 * Source/cmake/OptionsEfl.cmake:
1809 * Source/cmake/OptionsGTK.cmake:
1810 * Source/cmake/WebKitFeatures.cmake:
1811 * Source/cmakeconfig.h.cmake:
1813 2014-12-23 Alexey Proskuryakov <ap@apple.com>
1815 Simplify building with ASan
1816 https://bugs.webkit.org/show_bug.cgi?id=139916
1818 Reviewed by Mark Rowe.
1820 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
1822 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
1824 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
1826 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1828 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
1830 Null dereference performing a "TapAndAHalf" gesture in Google search field
1832 <https://bugs.webkit.org/show_bug.cgi?id=139506>
1833 <rdar://problem/19028828>
1835 Reviewed by Darin Adler.
1837 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
1839 2014-12-10 Dean Jackson <dino@apple.com>
1841 Blur filter performance test doesn't provide results
1842 https://bugs.webkit.org/show_bug.cgi?id=139462
1844 Reviewed by Sam Weinig.
1846 This can't currently work under our performance test
1847 infrastructure. Move it to a manual test to avoid
1848 putting FAILures into the results.
1850 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
1852 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1854 [GTK][WK2] Add HTML5 Notifications support
1855 https://bugs.webkit.org/show_bug.cgi?id=61140
1857 Reviewed by Carlos Garcia Campos.
1859 * Source/cmake/FindLibNotify.cmake: Added.
1860 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
1861 libnotify and use it for a default implementation when found.
1863 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
1865 REGRESSION(r155906): Page content disappears on Tuaw article after loading
1866 https://bugs.webkit.org/show_bug.cgi?id=138100
1868 Reviewed by Simon Fraser.
1870 DRT causes an extra paint which makes it impossible to test this with
1873 * ManualTests/float-layer-not-painting.html: Added.
1875 2014-12-07 Alberto Garcia <berto@igalia.com>
1877 [GTK] WebKit has a new required dependency on GnuTLS
1878 https://bugs.webkit.org/show_bug.cgi?id=136158
1880 Reviewed by Martin Robinson.
1882 Detect if GnuTLS is installed and enable or disable subtle crypto
1883 support accordingly.
1885 * Source/cmake/OptionsGTK.cmake:
1887 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
1889 [GTK] Missing API detected in GObject DOM bindings after r176630
1890 https://bugs.webkit.org/show_bug.cgi?id=139201
1892 Reviewed by Gustavo Noronha Silva.
1894 Change GENERATE_BINDINGS macro to receive a list of optional
1895 additional dependencies, so that we can add more dependecies
1896 without having to change the macro.
1898 * Source/cmake/WebKitMacros.cmake:
1900 2014-12-05 Simon Fraser <simon.fraser@apple.com>
1902 Programmatic scrolling and content changes are not always synchronized
1903 https://bugs.webkit.org/show_bug.cgi?id=139245
1904 rdar://problem/18833612
1906 Reviewed by Anders Carlsson.
1908 Manual test that tries to sync layout with programmatic scrolling.
1910 * ManualTests/programmatic-scroll-flicker.html: Added.
1912 2014-12-04 Alberto Garcia <berto@igalia.com>
1914 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
1915 https://bugs.webkit.org/show_bug.cgi?id=136576
1917 Reviewed by Carlos Garcia Campos.
1919 CMake should complain if Accelerated 2D Canvas is explicitly
1920 enabled but cairo-gl is not found.
1922 * Source/cmake/OptionsGTK.cmake:
1924 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1926 [EFL] Add subtle crypto to the build system
1927 https://bugs.webkit.org/show_bug.cgi?id=138612
1929 Reviewed by Csaba Osztrogonác.
1931 * Source/cmake/OptionsEfl.cmake:
1933 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1935 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
1936 https://bugs.webkit.org/show_bug.cgi?id=139085
1938 Reviewed by Andreas Kling.
1940 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
1941 * Source/cmake/WebKitFeatures.cmake: ditto.
1942 * Source/cmakeconfig.h.cmake: ditto.
1944 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1946 [EFL] Drop support for the EFL 1.7
1947 https://bugs.webkit.org/show_bug.cgi?id=139114
1949 Reviewed by Gyuyoung Kim.
1951 * Source/cmake/EFLHelpers.cmake: Removed.
1952 * Source/cmake/FindEcore.cmake: Removed.
1953 * Source/cmake/FindEdje.cmake: Removed.
1954 * Source/cmake/FindEet.cmake: Removed.
1955 * Source/cmake/FindEeze.cmake: Removed.
1956 * Source/cmake/FindEfreet.cmake: Removed.
1957 * Source/cmake/FindEina.cmake: Removed.
1958 * Source/cmake/FindElementary.cmake: Removed.
1959 * Source/cmake/FindEvas.cmake: Removed.
1960 * Source/cmake/OptionsEfl.cmake:
1962 2014-11-28 Philippe Normand <pnormand@igalia.com>
1964 [CMake] Build failure against GStreamer git master
1965 https://bugs.webkit.org/show_bug.cgi?id=138872
1967 Reviewed by Csaba Osztrogon.
1969 * Source/cmake/FindGStreamer.cmake: Simplified the
1970 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1971 headers lookup, there's no need to do this manually. Also
1972 explicitely check the version specified in GStreamer_FIND_VERSION.
1974 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1976 [EFL] Remove E_Dbus dependency
1977 https://bugs.webkit.org/show_bug.cgi?id=136355
1979 Reviewed by Gyuyoung Kim.
1981 * Source/cmake/FindE_DBus.cmake: Removed.
1982 * Source/cmake/OptionsEfl.cmake:
1984 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1986 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1988 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1990 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1992 [CMake] Use ld.gold if it is available to speedup builds
1993 https://bugs.webkit.org/show_bug.cgi?id=137953
1995 Reviewed by Carlos Garcia Campos.
1997 * Source/cmake/OptionsCommon.cmake:
1999 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
2001 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
2002 https://bugs.webkit.org/show_bug.cgi?id=138840
2004 Reviewed by Csaba Osztrogonác.
2006 * Source/cmake/OptionsCommon.cmake:
2008 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
2010 Remove Source/Platform cruft
2011 https://bugs.webkit.org/show_bug.cgi?id=138658
2013 Reviewed by Anders Carlsson.
2016 * Source/Platform: Removed.
2018 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
2020 Enable Cortex-A53-specific code paths by default if core is detected.
2021 https://bugs.webkit.org/show_bug.cgi?id=138499
2023 Reviewed by Csaba Osztrogonác.
2025 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
2026 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
2029 Since on ARM64/Linux the part number that cpuinfo reports depends on
2030 the core the query is run on, the check is bound to and executed on the
2031 available cores one by one.
2033 * Source/cmake/OptionsCommon.cmake:
2035 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2037 [EFL] Remove unnecessary version check from OptionsEfl.cmake
2038 https://bugs.webkit.org/show_bug.cgi?id=138498
2040 Reviewed by Csaba Osztrogonác.
2042 * Source/cmake/OptionsEfl.cmake:
2044 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2046 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
2047 https://bugs.webkit.org/show_bug.cgi?id=138465
2049 Reviewed by Gyuyoung Kim.
2051 * Source/cmake/OptionsEfl.cmake:
2053 2014-11-03 Dean Jackson <dino@apple.com>
2055 Add ENABLE_FILTERS_LEVEL_2 feature guard.
2056 https://bugs.webkit.org/show_bug.cgi?id=138362
2058 Reviewed by Tim Horton.
2060 Add a new feature define for Level 2 of CSS Filters.
2061 http://dev.w3.org/fxtf/filters-2/
2063 * Source/cmake/OptionsEfl.cmake:
2064 * Source/cmake/OptionsGTK.cmake:
2065 * Source/cmake/OptionsMac.cmake:
2066 * Source/cmake/WebKitFeatures.cmake:
2067 * Source/cmakeconfig.h.cmake:
2069 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
2071 Workaround for Cortex-A53 erratum 835769
2072 https://bugs.webkit.org/show_bug.cgi?id=138315
2074 Reviewed by Filip Pizlo.
2076 This patch introduces CMake variable and preprocessor macro
2077 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
2078 code paths, if set true.
2080 * Source/cmake/OptionsCommon.cmake:
2081 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
2083 * Source/cmakeconfig.h.cmake:
2084 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
2086 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
2088 [GTK] Fix the build of FTL JIT
2089 https://bugs.webkit.org/show_bug.cgi?id=138298
2091 Reviewed by Carlos Garcia Campos.
2093 * Source/cmake/OptionsGTK.cmake:
2094 Remove the need for the LIBCXXABI package.
2096 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
2098 REGRESSION(CMake): Make it possible to build without introspection
2099 https://bugs.webkit.org/show_bug.cgi?id=138006
2101 Reviewed by Philippe Normand.
2103 Add ENABLE_INTROSPECTION option.
2105 * Source/PlatformGTK.cmake: Dot not add gir global target if
2106 introspection is disabled.
2107 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
2108 introspection is disabled.
2110 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
2112 [GTK] Support script message handlers WebKitUserContentManager
2113 https://bugs.webkit.org/show_bug.cgi?id=133730
2115 Reviewed by Carlos Garcia Campos.
2117 Support user script message handlers in WebKitUserContentManager.
2118 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
2119 an option is added to the CMake build files. The option is disabled
2120 globally by default, and the WebKitGTK port enables it. On the API
2121 level, two new methods to register and unregister names are provided
2122 in the "window.webkit" namespace, and on message reception the
2123 "WebKitUserContentManager::script-message-received" signal is
2124 emitted, using the registered names as signal detail.
2126 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
2127 ENABLE_USER_MESSAGE_HANDLERS feature by default.
2128 * Source/cmake/WebKitFeatures.cmake: Add feature description for
2129 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
2131 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
2133 [GTK] Bump libsoup's minimum version to 2.42.0.
2134 https://bugs.webkit.org/show_bug.cgi?id=138086
2136 Reviewed by Martin Robinson.
2138 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
2139 soup-version.h header was added to soup.h in 2.41.4, which then becomes
2140 the minimum version required to build the port these days.
2142 In addition, since the autotools build system required 2.42.0 before
2143 being retired, require the same version here. Version 2.42.0 was also
2145 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
2147 * Source/cmake/OptionsGTK.cmake:
2149 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2151 [EFL] Remove unnecessary defines from OptionsEfl.cmake
2152 https://bugs.webkit.org/show_bug.cgi?id=138132
2154 Reviewed by Csaba Osztrogonác.
2156 * Source/cmake/OptionsEfl.cmake:
2158 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
2160 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
2162 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2164 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
2166 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
2167 https://bugs.webkit.org/show_bug.cgi?id=137946
2169 Reviewed by Gyuyoung Kim.
2171 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
2173 * Source/cmake/OptionsEfl.cmake:
2175 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2177 Fix FTL Native Inlining for EFL
2178 https://bugs.webkit.org/show_bug.cgi?id=137774
2180 Reviewed by Michael Saboff.
2182 Updated CMake for FTL Native Inlining.
2185 * Source/cmake/FindClang.cmake: Added.
2186 * Source/cmake/OptionsEfl.cmake:
2187 * Source/cmakeconfig.h.cmake:
2189 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
2191 Web Inspector: Generate all Inspector domains together in JavaScriptCore
2192 https://bugs.webkit.org/show_bug.cgi?id=137748
2194 Reviewed by Brian Burg.
2196 * Source/PlatformEfl.cmake:
2198 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
2200 [GTK] Add initial gestures support
2201 https://bugs.webkit.org/show_bug.cgi?id=137812
2203 Reviewed by Sergio Villar Senin.
2205 Check if the GTK+ version supports gestures or not.
2207 * Source/cmake/FindGTK3.cmake:
2208 * Source/cmake/OptionsGTK.cmake:
2210 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
2212 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
2213 https://bugs.webkit.org/show_bug.cgi?id=137781
2215 Reviewed by Martin Robinson.
2217 We used to enable smooth scrolling unconditionally in autotools
2218 (via WebKitFeatures.m4), but since the switch to CMake it's
2219 unconditionally disabled, so changing the setting doesn't have any
2222 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
2224 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
2226 Removing CUSTOM_PROTOCOLS guard
2227 https://bugs.webkit.org/show_bug.cgi?id=137741
2229 Reviewed by Benjamin Poulain.
2231 * Source/cmake/OptionsEfl.cmake:
2233 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
2235 [EFL] Enable WebP support.
2236 https://bugs.webkit.org/show_bug.cgi?id=136156
2238 Reviewed by Gyuyoung Kim.
2240 Add WebP package finding rule.
2242 * Source/cmake/OptionsEfl.cmake:
2244 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
2246 [EFL] Enable custom URI schemes with CustomProtocols
2247 https://bugs.webkit.org/show_bug.cgi?id=128177
2249 Reviewed by Gyuyoung Kim.
2251 Fixing ewk_context_url_scheme_register() ewebkit2 API
2252 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
2254 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
2256 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
2258 Bump version to 2.7.0
2259 https://bugs.webkit.org/show_bug.cgi?id=137301
2261 Rubber-stamped by Carlos Garcia Campos.
2263 * Source/cmake/OptionsGTK.cmake: Bump version numbers
2265 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2267 [EFL] Rename TEST_THEME_DIR macro
2268 https://bugs.webkit.org/show_bug.cgi?id=137244
2270 Reviewed by Csaba Osztrogonác.
2272 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
2274 2014-09-27 Dan Bernstein <mitz@apple.com>
2276 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
2277 https://bugs.webkit.org/show_bug.cgi?id=137053
2279 Reviewed by Mark Rowe.
2281 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2282 In the build pre-action, pass the --wksi and --llvm options to
2283 copy-webkitlibraries-to-product-directory.
2284 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
2286 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
2288 [GTK] Enable CSS_IMAGE_SET in production builds
2289 https://bugs.webkit.org/show_bug.cgi?id=137142
2291 Reviewed by Alejandro G. Castro.
2293 This is required by the inspector to show some of the icons that
2294 has a HiDPI variant.
2296 * Source/cmake/OptionsGTK.cmake:
2298 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
2300 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
2301 https://bugs.webkit.org/show_bug.cgi?id=136377
2303 Reviewed by Philippe Normand.
2305 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
2306 for CMake versions less than 3.
2308 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
2310 Remove WinCE port from trunk
2311 https://bugs.webkit.org/show_bug.cgi?id=136951
2313 Reviewed by Alex Christensen.
2315 * Source/cmake/OptionsWinCE.cmake: Removed.
2316 * Source/cmake/WebKitPackaging.cmake:
2318 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
2320 [EFL][GTK] Remove WebKit1 related codes
2321 https://bugs.webkit.org/show_bug.cgi?id=136853
2323 Reviewed by Csaba Osztrogonác.
2325 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
2328 * Source/PlatformGTK.cmake:
2330 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2333 https://bugs.webkit.org/show_bug.cgi?id=136820
2335 Reviewed by Csaba Osztrogonác.
2337 * Source/cmake/FindICU.cmake:
2339 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
2341 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
2342 https://bugs.webkit.org/show_bug.cgi?id=136814
2344 Reviewed by Philippe Normand.
2346 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
2347 We bundle the wayland-egl dependency with wayland-client and wayland-server
2348 and store the resulting variables with the WAYLAND_ prefix. Because of this
2349 this line wasn't exporting anything useful.
2351 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
2353 URTBF after r173574.
2355 * Source/cmake/WebKitMacros.cmake:
2357 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
2359 [JavaScriptCore] Fix FTL on platform EFL.
2360 https://bugs.webkit.org/show_bug.cgi?id=133571
2362 Reviewed by Filip Pizlo.
2366 * Source/cmake/FindLIBCXXABI.cmake: Removed.
2367 * Source/cmake/OptionsEfl.cmake:
2369 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2372 https://bugs.webkit.org/show_bug.cgi?id=136571
2374 Reviewed by Darin Adler.
2376 * Source/cmake/OptionsEfl.cmake:
2377 * Source/cmake/OptionsGTK.cmake:
2378 * Source/cmake/OptionsMac.cmake:
2379 * Source/cmake/WebKitFeatures.cmake:
2380 * Source/cmakeconfig.h.cmake:
2382 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2384 Remove CSS_FILTERS flag
2385 https://bugs.webkit.org/show_bug.cgi?id=136529
2387 Reviewed by Dirk Schulze.
2389 * Source/cmake/OptionsEfl.cmake:
2390 * Source/cmake/OptionsGTK.cmake:
2391 * Source/cmake/OptionsMac.cmake:
2392 * Source/cmake/WebKitFeatures.cmake:
2393 * Source/cmakeconfig.h.cmake:
2395 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2397 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
2398 https://bugs.webkit.org/show_bug.cgi?id=136194
2400 Reviewed by Csaba Osztrogonác.
2402 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
2406 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2408 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
2409 https://bugs.webkit.org/show_bug.cgi?id=135560
2411 Reviewed by Gyuyoung Kim.
2413 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
2415 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
2417 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
2418 https://bugs.webkit.org/show_bug.cgi?id=136343
2420 Reviewed by David Kilzer.
2422 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
2424 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2425 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2427 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
2429 [EFL] Share fast/speechsynthesis/ with other ports
2430 https://bugs.webkit.org/show_bug.cgi?id=136224
2432 Reviewed by Chris Fleizach.
2434 Enable WebSpeech for EFL.
2436 * Source/cmake/OptionsEfl.cmake:
2438 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
2440 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
2441 https://bugs.webkit.org/show_bug.cgi?id=136127
2443 Reviewed by Gyuyoung Kim.
2445 Add build support for espeak.
2447 * Source/cmake/FindEspeak.cmake: Added.
2448 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
2450 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
2452 [EFL] Build break using clang
2453 https://bugs.webkit.org/show_bug.cgi?id=136245
2455 Reviewed by Gyuyoung Kim.
2457 * Source/cmake/OptionsEfl.cmake:
2458 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
2459 Some warnings are from system libraries.
2461 2014-08-25 Alberto Garcia <berto@igalia.com>
2463 [GTK] Unify webkitgtk and webkit2gtk directories
2464 https://bugs.webkit.org/show_bug.cgi?id=136209
2466 Reviewed by Carlos Garcia Campos.
2468 Use webkit2gtk-X.X both for the process binaries and the injected
2471 * Source/cmake/OptionsGTK.cmake:
2473 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2475 [EFL] Move Efl specific code from Source/CMakeLists.txt
2476 https://bugs.webkit.org/show_bug.cgi?id=136206
2478 Reviewed by Gyuyoung Kim.
2480 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
2481 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
2483 * Source/CMakeLists.txt:
2484 * Source/cmake/OptionsEfl.cmake:
2486 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2488 [EFL] Introduce DEVELOPER_MODE
2489 https://bugs.webkit.org/show_bug.cgi?id=135884
2491 Reviewed by Gyuyoung Kim.
2493 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
2494 instead of SHARED_CORE.
2495 SHARED_CORE can reduce link time and memory consumption but it is slightly different
2496 from release binary.
2498 * Source/cmake/OptionsEfl.cmake:
2499 * Source/cmake/WebKitHelpers.cmake:
2500 Moved fvisibility=hidden to OptionsEfl.cmake
2502 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
2504 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
2505 https://bugs.webkit.org/show_bug.cgi?id=136110
2507 Reviewed by Gyuyoung Kim.
2509 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
2511 * Source/cmake/OptionsEfl.cmake:
2513 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2515 [EFL] Apply eflsymbols.filter to WebKit2
2516 https://bugs.webkit.org/show_bug.cgi?id=136148
2518 Reviewed by Csaba Osztrogonác.
2520 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
2521 in the eflsymbols.filter.
2523 * Source/cmake/OptionsEfl.cmake:
2524 * Source/cmake/eflsymbols.filter:
2526 2014-08-21 Zalan Bujtas <zalan@apple.com>
2528 Enable SATURATED_LAYOUT_ARITHMETIC.
2529 https://bugs.webkit.org/show_bug.cgi?id=136106
2531 Reviewed by Simon Fraser.
2533 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
2534 (No measurable performance regression on Mac.)
2536 * Source/cmake/OptionsMac.cmake:
2537 * Source/cmake/WebKitFeatures.cmake:
2538 * Source/cmakeconfig.h.cmake:
2540 2014-08-19 Zalan Bujtas <zalan@apple.com>
2542 Remove ENABLE(SUBPIXEL_LAYOUT).
2543 https://bugs.webkit.org/show_bug.cgi?id=136077
2545 Reviewed by Simon Fraser.
2547 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
2549 * Source/cmake/OptionsEfl.cmake:
2550 * Source/cmake/OptionsGTK.cmake:
2551 * Source/cmake/OptionsMac.cmake:
2552 * Source/cmake/WebKitFeatures.cmake:
2553 * Source/cmakeconfig.h.cmake:
2555 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
2557 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
2558 https://bugs.webkit.org/show_bug.cgi?id=135980
2560 Reviewed by Martin Robinson.
2562 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
2563 overrides any other disabled optimization that was prepended to these
2564 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
2565 lists first in the final list of compilation flags.
2567 To avoid -On re-enabling optimizations that we'd like to keep disabled,
2568 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
2570 * Source/cmake/OptionsCommon.cmake:
2571 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
2572 * Source/cmake/OptionsGTK.cmake:
2574 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2576 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
2578 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2580 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
2582 [GTK] Disable memory sampler on non-Linux system
2583 https://bugs.webkit.org/show_bug.cgi?id=134483
2585 Reviewed by Philippe Normand.
2587 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
2588 Linux because it uses many Linux-specific features, so we should disable
2589 memory sampler on other systems by default.
2591 * Source/cmake/OptionsGTK.cmake:
2593 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2595 [GTK] HTML API documentation should also be installed versioned
2596 https://bugs.webkit.org/show_bug.cgi?id=135970
2598 Reviewed by Philippe Normand.
2600 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
2603 2014-08-14 Tomas Popela <tpopela@redhat.com>
2605 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
2606 https://bugs.webkit.org/show_bug.cgi?id=135937
2608 Reviewed by Carlos Garcia Campos.
2612 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2614 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
2615 https://bugs.webkit.org/show_bug.cgi?id=135934
2617 Reviewed by Gustavo Noronha Silva.
2619 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
2620 The gir files should installed in $datadir/gir-1.0/ together with all other
2621 gir files. We don't need to install introspection files in a versioned
2622 directory because their filenames already contain the binary version. But before
2623 r171598, the files were only installed to the right directory if the
2624 gobject-instrospection pkg-config file was in the same prefix than the one we
2625 wanted to install, because the gir and typelibs directories were extracted from
2626 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
2627 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
2628 like we do in the autotools build.
2630 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
2631 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2632 * Source/cmake/OptionsGTK.cmake: Define
2633 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2635 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2637 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
2638 https://bugs.webkit.org/show_bug.cgi?id=135836
2640 Reviewed by Philippe Normand.
2642 * Source/PlatformGTK.cmake: Add install command to also install
2643 the GObject DOM bindings API docs.
2645 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
2647 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
2648 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
2649 re-set CMAKE_C_FLAGS with the new string. The two flags should really
2650 be appended to CMAKE_C_FLAGS and the same variable re-set with the
2653 * Source/cmake/OptionsCommon.cmake:
2655 2014-08-13 Alex Christensen <achristensen@webkit.org>
2657 Progress towards CMake on Mac.
2658 https://bugs.webkit.org/show_bug.cgi?id=135819
2660 Reviewed by Laszlo Gombos.
2662 * Source/cmake/OptionsMac.cmake:
2663 Disable some more features temporarily to get CMake working.
2664 * Source/cmake/WebKitMacros.cmake:
2665 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
2667 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2669 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
2670 https://bugs.webkit.org/show_bug.cgi?id=135798
2672 Reviewed by Philippe Normand.
2674 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
2676 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2677 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2678 https://bugs.webkit.org/show_bug.cgi?id=133317
2680 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2682 Reviewed by Philippe Normand.
2684 No new tests since no new functionality has been added.
2686 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2688 2014-08-11 Commit Queue <commit-queue@webkit.org>
2690 Unreviewed, rolling out r172393.
2691 https://bugs.webkit.org/show_bug.cgi?id=135796
2693 discussion needed about GnuTLS version bump on the bots
2694 (Requested by philn on #webkit).
2698 https://bugs.webkit.org/show_bug.cgi?id=133317
2699 http://trac.webkit.org/changeset/172393
2701 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2702 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2703 https://bugs.webkit.org/show_bug.cgi?id=133317
2705 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2707 Reviewed by Philippe Normand.
2709 No new tests since no new functionality has been added.
2711 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2713 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2715 [GTK] Adds stubs for all subtle crypto algorithm implemntations
2716 https://bugs.webkit.org/show_bug.cgi?id=133316
2718 Reviewed by Philippe Normand.
2720 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
2721 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
2722 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
2724 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
2726 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
2728 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2730 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2732 [GTK] REGRESSION(r166239): The ld version script is not being used
2733 https://bugs.webkit.org/show_bug.cgi?id=135694
2735 Reviewed by Martin Robinson.
2737 Move the symbols filter file from Tools/gtk to Source/cmake and rename
2738 it as gtksymbols.filter. Also updated it, since some of the symbols
2739 exported were renamed.
2741 * Source/cmake/OptionsGTK.cmake:
2742 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
2744 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2746 [GTK] Child processes should be installed in a versioned directory
2747 https://bugs.webkit.org/show_bug.cgi?id=135754
2749 Reviewed by Gustavo Noronha Silva.
2751 Define LIBEXEC_INSTALL_DIR as
2752 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
2753 so that the child processes are installed in $libexec/webkitgtk-4.0.
2754 This makes it possible to install 2.6 in parallel to older versions.
2756 * Source/cmake/OptionsGTK.cmake:
2758 2014-08-08 Alex Christensen <achristensen@webkit.org>
2760 Progress towards using CMake on Mac.
2761 https://bugs.webkit.org/show_bug.cgi?id=135662
2763 Reviewed by Laszlo Gombos.
2766 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
2767 * Source/cmake/WebKitFeatures.cmake:
2768 * Source/cmakeconfig.h.cmake:
2769 Added features that are needed by the Mac port.
2770 * Source/cmake/OptionsMac.cmake:
2771 Enable CSS_IMAGE_SET based on FeatureDefines.h.
2772 Disable the FTL with CMake for now.
2773 * Source/cmake/OptionsEFL.cmake:
2774 * Source/cmake/OptionsGTK.cmake:
2775 Enable subpixel layout to not conflict with FeatureDefines.h
2777 2014-08-08 Simon Fraser <simon.fraser@apple.com>
2779 Undo some erroneous changes to the Xcode scheme files from r172259.
2781 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2782 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2784 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
2786 [CMake] Drop the required version of CMake down to 2.8.8
2787 https://bugs.webkit.org/show_bug.cgi?id=135713
2789 Reviewed by Alex Christensen.
2791 * CMakeLists.txt: Require CMake 2.8.8.
2793 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
2795 Get rid of INPUT_SPEECH
2796 https://bugs.webkit.org/show_bug.cgi?id=135672
2798 Reviewed by Andreas Kling.
2800 * Source/cmake/OptionsMac.cmake:
2801 * Source/cmake/WebKitFeatures.cmake:
2802 * Source/cmakeconfig.h.cmake:
2804 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
2806 [GTK] Disable IndexedDB
2807 https://bugs.webkit.org/show_bug.cgi?id=135692
2809 Reviewed by Carlos Garcia Campos.
2811 * Source/cmake/OptionsGTK.cmake:
2813 2014-08-06 Dean Jackson <dino@apple.com>
2815 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
2816 https://bugs.webkit.org/show_bug.cgi?id=135675
2818 Reviewed by Sam Weinig.
2820 * Source/cmake/OptionsGTK.cmake:
2821 * Source/cmake/OptionsMac.cmake:
2822 * Source/cmake/WebKitFeatures.cmake:
2823 * Source/cmakeconfig.h.cmake:
2825 2014-08-06 David Farler <dfarler@apple.com>
2827 Unreviewed build fix: Make includes semicolon in assignment.
2829 * Makefile.shared: Remove a ;
2831 2014-08-06 David Farler <dfarler@apple.com>
2833 Set DSYMUTIL_NUM_THREADS to the number of logical cores
2834 https://bugs.webkit.org/show_bug.cgi?id=135655
2836 Reviewed by Mark Rowe.
2838 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
2840 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
2842 [GTK] Be able to disable gtk2 dependency
2843 https://bugs.webkit.org/show_bug.cgi?id=135505
2845 Reviewed by Gustavo Noronha Silva.
2847 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
2848 required when it's enabled. It's enabled by default.
2850 * Source/cmake/OptionsGTK.cmake:
2852 2014-08-05 Alex Christensen <achristensen@webkit.org>
2855 https://bugs.webkit.org/show_bug.cgi?id=135620
2857 Reviewed by Laszlo Gombos.
2859 * Source/cmake/OptionsMac.cmake:
2860 Use UDIS86 by default on Mac.
2862 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
2864 Add a flag for the CSS Selectors level 4 implementation
2865 https://bugs.webkit.org/show_bug.cgi?id=135535
2867 Reviewed by Andreas Kling.
2869 * Source/cmake/OptionsEfl.cmake:
2870 * Source/cmake/OptionsGTK.cmake:
2871 * Source/cmake/WebKitFeatures.cmake:
2872 * Source/cmakeconfig.h.cmake:
2874 2014-08-04 Alex Christensen <achristensen@webkit.org>
2876 Progress towards CMake on Mac.
2877 https://bugs.webkit.org/show_bug.cgi?id=135528
2879 Reviewed by Gyuyoung Kim.
2881 * Source/cmake/OptionsMac.cmake:
2882 Made options list based on FeatureDefines.xcconfig files.
2884 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2886 [GTK] Windowing target support should reflect the support in the GTK+ dependency
2887 https://bugs.webkit.org/show_bug.cgi?id=134736
2889 Reviewed by Martin Robinson.
2891 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
2892 support the X11 or Wayland windowing targets -- instead, if there's no support
2893 the specific target is disabled, and an error is thrown only if neither of the
2894 backends is enabled at the end..
2895 For now the X11 target remains enabled by default, and the Wayland target is
2896 kept disabled. Once it's possible to have both targets enabled at runtime in
2897 WebKit, the Wayland target will be enabled as well and we'll leave it to the
2898 GTK+ dependency to determine which targets can be enabled.
2900 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2902 [CMake] Add FindWayland.cmake
2903 https://bugs.webkit.org/show_bug.cgi?id=135540
2905 Reviewed by Martin Robinson.
2907 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
2908 dependency. For now bundles the wayland-client, wayland-server and
2909 wayland-egl pkg-config targets into one dependency, but these could
2910 be split in the future if necessary.
2912 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
2914 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
2915 https://bugs.webkit.org/show_bug.cgi?id=135553
2917 Reviewed by Gyuyoung Kim.
2919 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
2920 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
2922 * Source/cmake/OptionsEfl.cmake:
2924 2014-08-01 Bear Travis <betravis@adobe.com>
2926 [Feature Queries] Enable Feature Queries on EFL/GTK
2927 https://bugs.webkit.org/show_bug.cgi?id=134902
2929 Reviewed by Benjamin Poulain.
2931 Enable CSS Feature Queries by default on the EFL and GTK
2934 * Source/cmake/OptionsEfl.cmake:
2935 * Source/cmake/OptionsGTK.cmake:
2937 2014-08-01 Alex Christensen <achristensen@webkit.org>
2939 Progress towards cmake on Windows.
2940 https://bugs.webkit.org/show_bug.cgi?id=135484
2942 Reviewed by Martin Robinson.
2945 Added Mac to list of ports, even though it is not done yet.
2946 Changed minimum bison version to version installed on Macs.
2947 * Source/cmake/OptionsAppleWin.cmake:
2948 Added some definitions.
2949 * Source/cmake/OptionsEfl.cmake:
2950 * Source/cmake/OptionsGTK.cmake:
2951 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2952 * Source/cmake/OptionsMac.cmake: Added blank for now.
2953 * Source/cmake/OptionsWinCairo.cmake:
2954 * Source/cmake/OptionsWindows.cmake:
2955 Added some definitions.
2956 Removed /WX (warnings treated as error while compiling).
2957 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2959 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2961 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2962 https://bugs.webkit.org/show_bug.cgi?id=135501
2964 Reviewed by Gyuyoung Kim.
2966 Use PROJECT_VERSION_MICRO instead.
2968 * Source/cmake/OptionsEfl.cmake:
2969 * Source/cmake/OptionsGTK.cmake:
2970 * Source/cmake/WebKitHelpers.cmake:
2972 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2974 [EFL] Bump ewebkit version to 1.11
2975 https://bugs.webkit.org/show_bug.cgi?id=135487
2977 Reviewed by Gyuyoung Kim.
2979 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2981 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2983 [EFL] Add support for building with Geoclue2.
2984 https://bugs.webkit.org/show_bug.cgi?id=135455
2986 Reviewed by Gyuyoung Kim.
2988 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2991 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2993 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2995 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2997 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2999 [GTK] Bump binary version for 2.6
3000 https://bugs.webkit.org/show_bug.cgi?id=133724
3002 Reviewed by Philippe Normand.
3004 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
3005 update library version numbers.
3007 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
3009 [CMake] Bump the minimum required version
3010 https://bugs.webkit.org/show_bug.cgi?id=135382
3012 Reviewed by Gyuyoung Kim.
3014 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
3015 we introduced usage of target_include_directories().
3017 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
3019 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
3020 https://bugs.webkit.org/show_bug.cgi?id=135376
3022 Reviewed by Gyuyoung Kim.
3024 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
3026 * Source/cmake/OptionsEfl.cmake:
3027 * Source/cmake/OptionsGTK.cmake:
3029 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
3031 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
3032 https://bugs.webkit.org/show_bug.cgi?id=135288
3034 Reviewed by Martin Robinson.
3036 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
3037 datadir to pkgconfig
3038 * Source/cmake/OptionsGTK.cmake: define install directories early
3039 enough to be used in FindGObjectIntrospection.cmake
3041 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
3043 Remove CSS_EXCLUSIONS compile flag and leftover code
3044 https://bugs.webkit.org/show_bug.cgi?id=135175
3046 Reviewed by Zoltan Horvath.
3048 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
3049 stubs. This removes the flag and the useless code.
3051 * Source/cmake/WebKitFeatures.cmake:
3052 * Source/cmakeconfig.h.cmake:
3054 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
3056 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
3057 https://bugs.webkit.org/show_bug.cgi?id=135114
3059 Fix build with GStreamer 1.4
3061 Reviewed by Philippe Normand.
3063 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
3064 gst-mpegts component instead of the unstable 1.3.x verstions.
3066 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
3068 [GTK] Simplify make-dist command line arguments
3069 https://bugs.webkit.org/show_bug.cgi?id=134832
3071 Reviewed by Martin Robinson.
3073 * Source/PlatformGTK.cmake: Use --version instead of
3074 --tarball-root when running make-dist.py.
3076 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
3078 Add a manual test for r135044
3080 <https://bugs.webkit.org/show_bug.cgi?id=135044>
3082 Rubber-stamped by Andy Estes.
3084 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
3086 2014-07-18 Dana Burkart <dburkart@apple.com>
3088 Add a new 'analyze' target to the makefile. This will make use of a new
3089 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
3091 https://bugs.webkit.org/show_bug.cgi?id=135057
3092 <rdar://problem/10193187>
3094 Reviewed by David Kilzer.
3100 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
3102 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
3103 https://bugs.webkit.org/show_bug.cgi?id=134963
3105 Reviewed by Gyuyoung Kim.
3107 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
3109 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
3111 2014-07-14 Daniel Bates <dabates@apple.com>
3113 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
3114 https://bugs.webkit.org/show_bug.cgi?id=134905
3115 <rdar://problem/16602779>
3117 Reviewed by Simon Fraser.
3119 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
3120 on the tapped element when processing a touchend as a result of finger pressing and releasing
3121 on the same element that is initially positioned outside the visible content area.
3123 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
3125 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
3127 [GTK] Enable VIDEO_TRACK by default
3128 https://bugs.webkit.org/show_bug.cgi?id=134801
3130 Reviewed by Philippe Normand.
3132 * Source/cmake/OptionsGTK.cmake:
3134 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3136 [GTK][CMake] Add a 'distcheck' target
3137 https://bugs.webkit.org/show_bug.cgi?id=130675
3139 Reviewed by Gustavo Noronha Silva.
3141 * Source/PlatformGTK.cmake: Add distcheck target.
3143 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
3145 [GTK] Use the same default options for production builds that previous stable releases
3146 https://bugs.webkit.org/show_bug.cgi?id=134589
3148 Reviewed by Martin Robinson.
3150 Change the default value of some features to match our stable releases.
3151 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
3152 canvas depend on whether cairo-gl is found.
3154 * Source/cmake/FindCairoGL.cmake: Added.
3155 * Source/cmake/OptionsGTK.cmake:
3157 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
3159 [EFL] Support Encrypted Media Extensions.
3160 https://bugs.webkit.org/show_bug.cgi?id=134750
3162 Reviewed by Gyuyoung Kim.
3164 Webkit needs to play encrypted media contents when media player
3165 is played by Media source extensions and normal video procedure.
3167 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
3169 2014-07-08 Alex Christensen <achristensen@webkit.org>
3171 Steps towards CMake on Windows.
3172 https://bugs.webkit.org/show_bug.cgi?id=134716
3174 Reviewed by Martin Robinson.
3177 Added AppleWin and WinCairo to list of CMake ports.
3178 * Source/cmake/OptionsAppleWin.cmake: Added.
3179 * Source/cmake/OptionsWinCairo.cmake: Added.
3180 * Source/cmake/OptionsWindows.cmake:
3181 Windows needs to use the system malloc. Other options to come.
3183 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3185 [EFL] Support Geolocation
3186 https://bugs.webkit.org/show_bug.cgi?id=134439
3188 Reviewed by Antonio Gomes.
3190 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
3192 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3194 Broken build with build-webkit --no-video
3195 https://bugs.webkit.org/show_bug.cgi?id=134587
3197 Reviewed by Darin Adler.
3199 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
3201 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
3203 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
3205 [GTK] The list of features shown by cmake is not accurate
3206 https://bugs.webkit.org/show_bug.cgi?id=134588
3208 Reviewed by Gustavo Noronha Silva.
3210 The problem is that some options might change after the feature
3211 list has been printed.
3213 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
3214 setting the default values of features and set WEBGL value
3215 depending on the dependencies, and API_TEST depending on whether
3216 developer mode is enabled or not.
3218 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
3220 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
3221 https://bugs.webkit.org/show_bug.cgi?id=134578
3223 Reviewed by Gyuyoung Kim.
3225 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
3226 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
3227 disable related option if it is not ON.
3229 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
3230 * Source/cmake/OptionsGTK.cmake: Ditto.
3231 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
3233 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
3235 [GTK] make dist is broken
3236 https://bugs.webkit.org/show_bug.cgi?id=134542
3238 Reviewed by Martin Robinson.
3240 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
3242 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
3244 [CMake] Add necessary support for building for the Wayland target
3245 https://bugs.webkit.org/show_bug.cgi?id=134160
3247 Reviewed by Darin Adler.
3249 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
3250 is enabled, and that its version matches the version of the generic package. Same
3251 for the gtk+-wayland-3.0 package and the Wayland target.
3252 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
3253 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
3254 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
3255 so they keep building the TestNetscapePlugin target.
3256 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
3257 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
3258 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
3259 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
3260 the minimum required version as soon as that target is enabled. Only search for GLX
3261 if the X11 target is enabled.
3263 2014-06-29 Yoav Weiss <yoav@yoav.ws>
3265 Add support for HTMLImageElement's sizes attribute
3266 https://bugs.webkit.org/show_bug.cgi?id=133620
3268 Reviewed by Dean Jackson.
3270 Added an ENABLE_PICTURE_SIZES compile flag.
3272 * Source/cmake/WebKitFeatures.cmake:
3273 * Source/cmakeconfig.h.cmake:
3275 2014-06-26 Daniel Bates <dabates@apple.com>
3277 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
3278 https://bugs.webkit.org/show_bug.cgi?id=134309
3279 <rdar://problem/17427385>
3281 Reviewed by Darin Adler.
3283 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
3286 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
3288 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
3290 Remove build guard for progress element
3291 https://bugs.webkit.org/show_bug.cgi?id=134292
3293 Reviewed by Benjamin Poulain.
3295 The build flag is no longer needed as it is always on.
3297 * Source/cmake/WebKitFeatures.cmake:
3298 * Source/cmakeconfig.h.cmake:
3300 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
3302 [EFL] Platform support for WebSpeech feature.
3303 https://bugs.webkit.org/show_bug.cgi?id=116438
3305 Reviewed by Csaba Osztrogonác.
3307 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3309 * Source/cmake/OptionsEfl.cmake:
3310 * Source/cmake/WebKitFeatures.cmake:
3312 2014-06-23 Philippe Normand <pnormand@igalia.com>
3314 Unreviewed, GTK build fix after r170266.
3316 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
3318 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3320 Disable gamepad feature on EFL and GTK ports by default
3321 https://bugs.webkit.org/show_bug.cgi?id=134169
3323 Reviewed by Brady Eidson.
3325 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
3327 2014-06-21 Brady Eidson <beidson@apple.com>
3329 Gamepad API - Deprecate the existing implementation
3330 https://bugs.webkit.org/show_bug.cgi?id=134108
3332 Reviewed by Timothy Hatcher.
3334 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3335 -Add the "Deprecated" suffix to some implementation files
3337 * Source/cmake/OptionsEfl.cmake:
3338 * Source/cmake/OptionsGTK.cmake:
3339 * Source/cmake/WebKitFeatures.cmake:
3340 * Source/cmakeconfig.h.cmake:
3342 2014-06-21 Commit Queue <commit-queue@webkit.org>
3344 Unreviewed, rolling out r170244.
3345 https://bugs.webkit.org/show_bug.cgi?id=134157
3347 GTK/EFL bindings generator works differently, making this
3348 patch not work there. Will fix entire patch after a rollout.
3349 (Requested by bradee-oh on #webkit).
3353 "Gamepad API - Deprecate the existing implementation"
3354 https://bugs.webkit.org/show_bug.cgi?id=134108
3355 http://trac.webkit.org/changeset/170244
3357 2014-06-21 Brady Eidson <beidson@apple.com>
3359 Gamepad API - Deprecate the existing implementation
3360 https://bugs.webkit.org/show_bug.cgi?id=134108
3362 Reviewed by Timothy Hatcher.
3364 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3365 -Add the "Deprecated" suffix to some implementation files
3367 * Source/cmake/OptionsEfl.cmake:
3368 * Source/cmake/OptionsGTK.cmake:
3369 * Source/cmake/WebKitFeatures.cmake:
3370 * Source/cmakeconfig.h.cmake:
3372 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3374 Removing PAGE_VISIBILITY_API compile guard.
3375 https://bugs.webkit.org/show_bug.cgi?id=133844
3377 Reviewed by Gavin Barraclough.
3379 * Source/cmake/OptionsEfl.cmake:
3380 * Source/cmake/OptionsGTK.cmake:
3381 * Source/cmake/WebKitFeatures.cmake:
3382 * Source/cmakeconfig.h.cmake:
3384 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
3386 [EFL][CMAKE] Disable WebKit1 build as a default
3387 https://bugs.webkit.org/show_bug.cgi?id=134093
3389 Reviewed by Gyuyoung Kim.
3391 Disable WebKit1 build and enable WebKit2 build for the EFL port.
3393 * Source/cmake/OptionsEfl.cmake:
3395 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3397 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
3398 https://bugs.webkit.org/show_bug.cgi?id=130389
3400 Reviewed by Mark Lam.
3402 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
3403 into !ENABLE(JIT) since they are mutually exclusive.
3405 * Source/cmake/OptionsEfl.cmake:
3406 * Source/cmake/OptionsGTK.cmake:
3407 * Source/cmake/WebKitFeatures.cmake:
3408 * Source/cmakeconfig.h.cmake:
3410 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
3412 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
3413 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
3414 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
3415 by the plugin process, but it is searched and utilized separately.
3417 Rubber-stamped by Carlos Garcia Campos.
3419 * Source/cmake/OptionsGTK.cmake:
3421 2014-06-16 Commit Queue <commit-queue@webkit.org>
3423 Unreviewed, rolling out r170003.
3424 https://bugs.webkit.org/show_bug.cgi?id=133938
3426 This patch broke GTK build (Requested by kczech on #webkit).
3430 "[EFL] Platform support for WebSpeech feature."
3431 https://bugs.webkit.org/show_bug.cgi?id=116438
3432 http://trac.webkit.org/changeset/170003
3434 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
3436 [EFL] Platform support for WebSpeech feature.
3437 https://bugs.webkit.org/show_bug.cgi?id=116438
3439 Reviewed by Gyuyoung Kim.
3441 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3443 * Source/cmake/OptionsEfl.cmake:
3444 * Source/cmake/WebKitFeatures.cmake:
3446 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3448 [EFL] Remove duplicated compiler flag
3449 https://bugs.webkit.org/show_bug.cgi?id=133838
3451 Reviewed by Anders Carlsson.
3453 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
3454 it added to common compiler options. So, it is duplicated.
3456 * Source/cmake/WebKitHelpers.cmake:
3458 2014-06-11 Commit Queue <commit-queue@webkit.org>
3460 Unreviewed, rolling out r169877.
3461 https://bugs.webkit.org/show_bug.cgi?id=133784
3463 rollout wrong build fix approach for EFL port (Requested by
3464 gyuyoung on #webkit).
3468 "Unreviewed, EFL build fix since r169869."
3469 http://trac.webkit.org/changeset/169877
3471 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3473 Unreviewed, EFL build fix since r169869.
3475 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
3477 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
3479 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3481 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
3483 * Source/cmake/WebKitHelpers.cmake:
3485 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
3487 [GTK] Make it possible to build with FTL enabled
3488 https://bugs.webkit.org/show_bug.cgi?id=133219
3490 Reviewed by Philippe Normand.
3492 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
3494 * Source/cmake/OptionsGTK.cmake:
3496 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
3498 [CMake] Clean up FAST_MOBILE_SCROLLING
3499 https://bugs.webkit.org/show_bug.cgi?id=133342
3501 Reviewed by Gyuyoung Kim.
3503 FAST_MOBILE_SCROLLING was removed in r168726.
3505 * Source/cmake/OptionsEfl.cmake:
3506 * Source/cmake/OptionsGTK.cmake:
3507 * Source/cmake/WebKitFeatures.cmake:
3508 * Source/cmakeconfig.h.cmake:
3510 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3513 https://bugs.webkit.org/show_bug.cgi?id=132863
3515 Reviewed by Csaba Osztrogonác.
3517 * Source/cmake/OptionsEfl.cmake:
3518 * Source/cmake/OptionsGTK.cmake:
3519 * Source/cmake/WebKitFeatures.cmake:
3520 * Source/cmakeconfig.h.cmake:
3522 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3524 Allow building CMake based ports with WEB_REPLAY
3525 https://bugs.webkit.org/show_bug.cgi?id=133154
3527 Reviewed by Csaba Osztrogonác.
3529 * Source/cmake/WebKitFeatures.cmake:
3530 * Source/cmakeconfig.h.cmake:
3532 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3534 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
3535 https://bugs.webkit.org/show_bug.cgi?id=132907
3537 Reviewed by Gyuyoung Kim.
3539 * Source/cmake/FindLIBCXXABI.cmake: Added.
3540 * Source/cmake/OptionsEfl.cmake:
3542 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3544 [EFL] Turn on ENABLE_CSS_FILTERS
3545 https://bugs.webkit.org/show_bug.cgi?id=133153
3547 Reviewed by Gyuyoung Kim.
3549 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
3551 2014-05-16 Martin Robinson <mrobinson@igalia.com>
3553 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
3554 https://bugs.webkit.org/show_bug.cgi?id=132819
3556 Reviewed by Carlos Garcia Campos.
3558 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
3560 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
3561 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
3563 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
3565 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
3567 [CMake] Support building with Debug Fission
3568 https://bugs.webkit.org/show_bug.cgi?id=131177
3570 Reviewed by Philippe Normand.
3572 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
3573 of http://gcc.gnu.org/wiki/DebugFission.
3575 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
3577 [GTK] Rename translation domain as WebKit2GTK-3.0
3578 https://bugs.webkit.org/show_bug.cgi?id=132953
3580 Reviewed by Gustavo Noronha Silva.
3582 * Source/cmake/OptionsGTK.cmake:
3584 2014-05-18 Rik Cabanier <cabanier@adobe.com>
3586 support for navigator.hardwareConcurrency
3587 https://bugs.webkit.org/show_bug.cgi?id=132588
3589 Reviewed by Filip Pizlo.
3591 * Source/cmake/OptionsEfl.cmake:
3592 * Source/cmake/OptionsGTK.cmake:
3593 * Source/cmake/WebKitFeatures.cmake:
3594 * Source/cmakeconfig.h.cmake:
3596 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3598 Remove CSS_STICKY_POSITION guards
3599 https://bugs.webkit.org/show_bug.cgi?id=132676
3601 Reviewed by Simon Fraser.
3603 * Source/cmake/OptionsEfl.cmake:
3604 * Source/cmake/OptionsGTK.cmake:
3605 * Source/cmake/WebKitFeatures.cmake:
3606 * Source/cmakeconfig.h.cmake:
3608 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
3610 Unreviewed. Bump version numbers.
3612 * Source/cmake/OptionsGTK.cmake:
3614 2014-05-10 Martin Robinson <mrobinson@igalia.com>
3616 [GTK][CMake] Unable to do make install
3617 https://bugs.webkit.org/show_bug.cgi?id=130188
3619 Reviewed by Carlos Garcia Campos.
3621 Only try to install the HTML documentation if the build is configured to generate it via
3622 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3623 to keep the HTML documentation directory as an installation source.
3625 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3626 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3627 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
3628 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
3629 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3631 2014-05-09 Anders Carlsson <andersca@apple.com>
3633 Rename WebKit2.framework to WebKit.framework
3634 https://bugs.webkit.org/show_bug.cgi?id=132743
3635 <rdar://problem/15920046>
3637 Reviewed by Dan Bernstein.
3640 Build WebKit.xcodeproj before WebKit2.xcodeproj.
3642 * WebKit.xcworkspace/xcshareddata/xcschemes/:
3645 2014-05-06 David Kilzer <ddkilzer@apple.com>
3647 Add Makefile targets for copying static libraries (LLVM and WKSI)
3648 <http://webkit.org/b/132619>
3650 Reviewed by Mark Rowe.
3653 (MODULES): Add WebKitLibraries.
3655 2014-05-06 Commit Queue <commit-queue@webkit.org>
3657 Unreviewed, rolling out r168304.
3658 https://bugs.webkit.org/show_bug.cgi?id=132607
3660 Broke the build (Requested by KaL on #webkit).
3664 "[GTK][CMake] Unable to do make install"
3665 https://bugs.webkit.org/show_bug.cgi?id=130188
3666 http://trac.webkit.org/changeset/168304
3668 2014-05-05 Martin Robinson <mrobinson@igalia.com>
3670 [GTK][CMake] Unable to do make install
3671 https://bugs.webkit.org/show_bug.cgi?id=130188
3673 Reviewed by Carlos Garcia Campos.
3675 Only try to install the HTML documentation if the build is configured to generate it via
3676 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3677 to keep the HTML documentation directory as an installation source.
3679 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3680 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3681 never added to the default target, but will be triggered by build-webkit, so that
3682 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
3683 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3685 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3687 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
3688 https://bugs.webkit.org/show_bug.cgi?id=132525
3690 Reviewed by Martin Robinson.
3692 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
3693 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
3694 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
3696 2014-05-01 David Kilzer <ddkilzer@apple.com>
3698 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
3699 <http://webkit.org/b/132432>
3701 Reviewed by Tim Horton.
3703 * Source/cmake/WebKitFeatures.cmake:
3704 * Source/cmakeconfig.h.cmake:
3705 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
3707 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3709 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
3711 Reviewed by Dan Bernstein/Anders Carlsson.
3713 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3714 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3716 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3718 Let Xcode have its way with the WebKit workspace.
3720 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3721 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3723 2014-04-29 Martin Robinson <mrobinson@igalia.com>
3725 [GTK] Make it easier to run CMake for downstreams
3726 https://bugs.webkit.org/show_bug.cgi?id=132370
3728 Reviewed by Carlos Garcia Campos.
3730 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
3732 2014-04-27 Joonghun Park <jh718.park@samsung.com>
3734 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
3735 https://bugs.webkit.org/show_bug.cgi?id=132176
3737 Reviewed by Gyuyoung Kim.
3739 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
3741 * Source/cmake/OptionsEfl.cmake:
3743 2014-04-22 Alex Christensen <achristensen@webkit.org>
3745 Removed old stdbool and inttypes headers.
3746 https://bugs.webkit.org/show_bug.cgi?id=131966
3748 Reviewed by Brent Fulgham.
3750 * Source/cmake/OptionsWindows.cmake:
3751 * Source/cmake/WebKitPackaging.cmake:
3752 Removed references to os-win32 directory.
3754 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
3756 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
3758 Rubber-stamped by Carlos Garcia Campos.
3760 * Source/cmake/WebKitFeatures.cmake:
3762 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
3764 Empty RenderInline objects should not be line break objects.
3766 https://bugs.webkit.org/show_bug.cgi?id=131861
3767 <rdar://problem/15663617>
3769 Reviewed by David Hyatt.
3771 * ManualTests/empty-inline-as-line-break-position.html: Added.
3772 This issue wouldn't reproduce in WebKitTestRunner.
3774 2014-04-19 Brent Fulgham <bfulgham@apple.com>
3776 Revert unintended workspace change in my last commit.
3778 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
3779 Scheme type back to Debug.
3781 2014-04-18 Philippe Normand <pnormand@igalia.com>
3783 Remove NETWORK_INFO support
3784 https://bugs.webkit.org/show_bug.cgi?id=131841
3786 Reviewed by Gyuyoung Kim.
3788 * Source/cmake/OptionsEfl.cmake:
3789 * Source/cmake/OptionsGTK.cmake:
3790 * Source/cmake/WebKitFeatures.cmake:
3791 * Source/cmakeconfig.h.cmake:
3793 2014-04-17 Darin Adler <darin@apple.com>
3795 Try to fix EFL and GTK builds.
3797 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
3798 * Source/cmake/OptionsGTK.cmake: Ditto.
3799 * Source/cmakeconfig.h.cmake: Ditto.
3801 2014-04-16 Brendan Long <b.long@cablelabs.com>
3803 [GTK][CMAKE] build-webkit doesn't detect when the build fails
3804 https://bugs.webkit.org/show_bug.cgi?id=130148
3806 Reviewed by Martin Robinson.
3808 * 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.
3810 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
3812 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
3813 https://bugs.webkit.org/show_bug.cgi?id=131725
3815 Reviewed by Philippe Normand.
3817 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
3818 instead of GTK_UNIX_PRINTING_FOUND and set the macro
3819 HAVE_GTK_UNIX_PRINTING to 1 when found.
3821 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
3823 Web Replay: memoize nondeterministic attributes of the Navigator interface
3824 https://bugs.webkit.org/show_bug.cgi?id=131340
3826 Reviewed by Timothy Hatcher.
3828 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
3830 2014-04-09 Brendan Long <b.long@cablelabs.com>
3832 [GStreamer] Expose MPEG-TS metadata
3833 https://bugs.webkit.org/show_bug.cgi?id=122001
3835 Reviewed by Eric Carlson.
3837 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
3838 * Source/cmake/OptionsEfl.cmake: Same.
3839 * Source/cmake/OptionsGTK.cmake: Same.
3841 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
3843 Web Replay: memoize nondeterministic attributes of the Screen interface
3844 https://bugs.webkit.org/show_bug.cgi?id=131339
3846 Reviewed by Timothy Hatcher.
3848 * ManualTests/inspector/replay-window-screen.html: Added.
3850 2014-04-08 Martin Robinson <mrobinson@igalia.com>
3852 [GTK] Remove the WebKitGTK+ WebKit 1 code
3853 https://bugs.webkit.org/show_bug.cgi?id=131399
3855 Reviewed by Anders Carlsson.
3857 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.