1 2015-12-01 Yusuke Suzuki <utatane.tea@gmail.com>
3 [ES6] Implement LLInt/Baseline Support for ES6 Generators and enable this feature
4 https://bugs.webkit.org/show_bug.cgi?id=150792
6 Reviewed by Saam Barati.
8 * Source/cmake/OptionsWin.cmake:
9 * Source/cmake/WebKitFeatures.cmake:
11 2015-12-01 Commit Queue <commit-queue@webkit.org>
13 Unreviewed, rolling out r192914.
14 https://bugs.webkit.org/show_bug.cgi?id=151734
16 JSC tests for this change are failing on 32 and 64-bit bots
17 (Requested by ryanhaddad on #webkit).
21 "[ES6] Implement LLInt/Baseline Support for ES6 Generators and
23 https://bugs.webkit.org/show_bug.cgi?id=150792
24 http://trac.webkit.org/changeset/192914
26 2015-12-01 Yusuke Suzuki <utatane.tea@gmail.com>
28 [ES6] Implement LLInt/Baseline Support for ES6 Generators and enable this feature
29 https://bugs.webkit.org/show_bug.cgi?id=150792
31 Reviewed by Saam Barati.
33 * Source/cmake/OptionsWin.cmake:
34 * Source/cmake/WebKitFeatures.cmake:
36 2015-11-23 Carlos Garcia Campos <cgarcia@igalia.com>
38 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.2 release.
40 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
42 2015-11-20 Alex Christensen <achristensen@webkit.org>
44 Remove NETWORK_PROCESS compile flag
45 https://bugs.webkit.org/show_bug.cgi?id=151512
47 Reviewed by Tim Horton.
49 * Source/cmake/OptionsEfl.cmake:
50 * Source/cmake/OptionsGTK.cmake:
51 * Source/cmake/OptionsMac.cmake:
52 * Source/cmake/WebKitFeatures.cmake:
54 2015-11-20 Csaba Osztrogonác <ossy@webkit.org>
56 [EFL] Enable FTL JIT by default on X86_64
57 https://bugs.webkit.org/show_bug.cgi?id=143822
59 Reviewed by Carlos Garcia Campos.
61 * Source/cmake/OptionsEfl.cmake:
63 2015-11-19 Commit Queue <commit-queue@webkit.org>
65 Unreviewed, rolling out r192667 and r192668.
66 https://bugs.webkit.org/show_bug.cgi?id=151476
68 broke api tests (Requested by alexchristensen on #webkit).
72 "Remove the non-NetworkProcess configurations"
73 https://bugs.webkit.org/show_bug.cgi?id=151418
74 http://trac.webkit.org/changeset/192667
76 "Fix GTK Build after r192667."
77 http://trac.webkit.org/changeset/192668
79 2015-11-19 Alex Christensen <achristensen@webkit.org>
81 Remove the non-NetworkProcess configurations
82 https://bugs.webkit.org/show_bug.cgi?id=151418
84 Reviewed by Geoffrey Garen.
86 * Source/cmake/OptionsEfl.cmake:
87 * Source/cmake/OptionsGTK.cmake:
88 * Source/cmake/OptionsMac.cmake:
89 * Source/cmake/WebKitFeatures.cmake:
91 2015-11-17 Carlos Garcia Campos <cgarcia@igalia.com>
93 REGRESSION(r192459): [GTK] User agent string is broken after r192459
94 https://bugs.webkit.org/show_bug.cgi?id=151347
96 Reviewed by Žan Doberšek.
98 Pass UA version numbers as strings to the build.
100 * Source/cmake/OptionsGTK.cmake:
102 2015-11-16 Alex Christensen <achristensen@webkit.org>
104 Fix CMake build and make PluginProcess executable
105 https://bugs.webkit.org/show_bug.cgi?id=151332
107 Reviewed by Tim Horton.
109 * Source/cmake/OptionsMac.cmake:
111 2015-11-16 Carlos Garcia Campos <cgarcia@igalia.com>
113 [GTK] Use FTL by default when LLVM 3.7 is available
114 https://bugs.webkit.org/show_bug.cgi?id=142128
116 Reviewed by Csaba Osztrogonác.
118 Enable FTL by default when architecture is X86_64. It requires
119 LLVM 3.7, but can be disabled manually as a cmake configure
122 * Source/cmake/FindLLVM.cmake: In debian llvm-config is only
123 available if the metapackage is installed and it points to
124 llvm-config-3.5. So, here we check first if the llvm-config is
125 from a recent enough version, and if not we check several
126 llvm-config-<version> programs, so this should work on any distro.
127 * Source/cmake/OptionsGTK.cmake: Enable FTL by default when
128 target architecture is X86_64, and check the LLVM is at least
129 3.7. The option is now public, since we want people to be able to
132 2015-11-11 Anders Carlsson <andersca@apple.com>
134 Enable cross-platform context menus by default
135 https://bugs.webkit.org/show_bug.cgi?id=151173
137 Reviewed by Tim Horton.
139 * Source/cmake/OptionsEfl.cmake:
141 2015-11-12 Csaba Osztrogonác <ossy@webkit.org>
143 Remove ENABLE(SATURATED_LAYOUT_ARITHMETIC) guards
144 https://bugs.webkit.org/show_bug.cgi?id=150972
146 Reviewed by Darin Adler.
148 * Source/cmake/OptionsMac.cmake:
149 * Source/cmake/WebKitFeatures.cmake:
151 2015-11-11 Philippe Normand <pnormand@igalia.com>
153 [GTK][Mac] don't install .frameworks
154 https://bugs.webkit.org/show_bug.cgi?id=151136
156 Reviewed by Alex Christensen.
158 * Source/cmake/WebKitMacros.cmake: Don't install framework files when building the GTK port on Mac.
160 2015-11-10 Pranjal Jumde <pjumde@apple.com>
162 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
163 https://bugs.webkit.org/show_bug.cgi?id=150252
164 <rdar://problem/23149470>
166 Reviewed by Brent Fulgham.
169 * Source/WebCore/editing/ios/EditorIOS.mm
170 * Source/WebCore/editing/mac/EditorMac.mm
171 In Editor::fontForSelection moved the node removal code, so that the
172 node is only removed if style is not NULL.
173 * Source/WebCore/editing/cocoa/EditorCocoa.mm
174 In Editor::styleForSelectionStart checking if the parentNode can
175 accept the styleElement node.
176 * LayoutTests/editing/execCommand/150252.xhtml
177 * LayoutTests/editing/execCommand/150252_minimal.xhtml
178 * LayoutTests/editing/execCommand/150252-expected.txt
179 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
181 2015-11-09 Pranjal Jumde <pjumde@apple.com>
183 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
184 https://bugs.webkit.org/show_bug.cgi?id=150252
185 <rdar://problem/23149470>
187 Reviewed by Brent Fulgham.
189 * Source/WebCore/editing/ios/EditorIOS.mm
190 * Source/WebCore/editing/mac/EditorMac.mm
191 In Editor::fontForSelection moved the node removal code, so that the
192 node is only removed if style is not NULL.
193 * LayoutTests/editing/execCommand/150252.xhtml
194 * LayoutTests/editing/execCommand/150252_minimal.xhtml
195 * LayoutTests/editing/execCommand/150252-expected.txt
196 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
198 2015-11-06 Daniel Bates <dabates@apple.com>
200 Teach Makefile to build LayoutTestRelay when building for iOS Simulator
201 https://bugs.webkit.org/show_bug.cgi?id=150849
203 Reviewed by Alexey Proskuryakov.
205 Add support for overriding the user-provided arguments SDKROOT and ARCHS
206 on a per Makefile basis.
210 2015-11-06 Philippe Normand <pnormand@igalia.com>
212 Unreviewed, GTK build fix after r192095.
214 * Source/cmake/FindGTK3.cmake:
216 2015-11-06 Philip Chimento <philip.chimento@gmail.com> and Michael Catanzaro <mcatanzaro@igalia.com>
218 [GTK] Re-enable Quartz backend on cmake build system
219 https://bugs.webkit.org/show_bug.cgi?id=144561
221 Reviewed by Philippe Normand.
223 * Source/cmake/FindGTK3.cmake: Set GTK3_SUPPORTS_QUARTZ based on
224 the presence of of gtk+-quartz-3.0 module.
225 * Source/cmake/OptionsGTK.cmake: Reintroduce the
226 ENABLE_QUARTZ_TARGET option to the CMake build, for building the
227 GTK+ Quartz backend on OS X.
229 2015-11-05 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
231 Add runtime and compile time flags for enabling Web Animations API and model.
232 https://bugs.webkit.org/show_bug.cgi?id=150914
234 Reviewed by Benjamin Poulain.
236 Add ENABLE_WEB_ANIMATIONS compile time flag, runtime flag webAnimationsEnabled and Expose WK2 preference for runtime flag.
238 * Source/cmake/OptionsWin.cmake:
239 * Source/cmake/WebKitFeatures.cmake:
241 2015-11-03 Brent Fulgham <bfulgham@apple.com>
243 [Win] CMake build update.
245 Rubberstamped by Tim Horton.
247 * Source/PlatformWin.cmake: Add internal tool to build
248 rules for internal use.
250 2015-11-03 Carlos Garcia Campos <cgarcia@igalia.com>
252 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.1 release.
254 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
256 2015-11-02 Philippe Normand <pnormand@igalia.com>
258 [Mac][GTK] Disable Ninja response file support
259 https://bugs.webkit.org/show_bug.cgi?id=150801
261 Reviewed by Alex Christensen.
263 * Source/cmake/OptionsCommon.cmake: The OSX toolchain doesn't
264 support response files, so instruct Ninja to not generate those.
266 2015-11-02 Csaba Osztrogonác <ossy@webkit.org>
268 Fix the FTL JIT build with system LLVM on Linux
269 https://bugs.webkit.org/show_bug.cgi?id=150795
271 Reviewed by Filip Pizlo.
273 * Source/cmake/FindLLVM.cmake:
275 2015-11-02 Carlos Garcia Campos <cgarcia@igalia.com>
277 Unreviewed. Bump GTK+ versions numbers.
279 * Source/cmake/OptionsGTK.cmake:
281 2015-11-01 Yusuke Suzuki <utatane.tea@gmail.com>
283 [ES6] Support Generator Syntax
284 https://bugs.webkit.org/show_bug.cgi?id=150769
286 Reviewed by Geoffrey Garen.
288 Added ENABLE_ES6_GENERATORS flag.
290 * Source/cmake/OptionsWin.cmake:
291 * Source/cmake/WebKitFeatures.cmake:
293 2015-10-30 Gyuyoung Kim <gyuyoung.kim@webkit.org>
295 [EFL] Add Shadow DOM feature
296 https://bugs.webkit.org/show_bug.cgi?id=150611
298 Reviewed by Csaba Osztrogonác.
300 * Source/cmake/OptionsEfl.cmake:
301 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SHADOW_DOM cmake variable.
303 2015-10-29 Alex Christensen <achristensen@webkit.org>
306 https://bugs.webkit.org/show_bug.cgi?id=150686
308 Reviewed by Filip Pizlo.
310 * Source/cmake/WebKitMacros.cmake:
312 2015-10-28 Alex Christensen <achristensen@webkit.org>
314 Compile and link with CMake on Mac
315 https://bugs.webkit.org/show_bug.cgi?id=150632
317 Reviewed by Tim Horton.
319 * Source/cmake/OptionsMac.cmake:
321 2015-10-26 Dana Burkart <dburkart@apple.com>
323 `make analyze` should build using the debug configuration
324 https://bugs.webkit.org/show_bug.cgi?id=150571
326 Reviewed by Lucas Forschler.
330 2015-10-26 Philippe Normand <pnormand@igalia.com>
332 Unreviewed, rolling out r191576.
334 broke the http/tests/media tests
338 "[GStreamer] Bump internal jhbuild versions to 1.6.0"
339 https://bugs.webkit.org/show_bug.cgi?id=149594
340 http://trac.webkit.org/changeset/191576
342 2015-10-26 ChangSeok Oh <changseok.oh@collabora.com>
344 [GStreamer] Bump internal jhbuild versions to 1.6.0
345 https://bugs.webkit.org/show_bug.cgi?id=149594
347 Reviewed by Philippe Normand.
349 Bump up the minimum reqirement version of gstreamer-gl to 1.6.0.
351 * Source/cmake/FindGStreamer.cmake:
353 2015-10-22 Philippe Normand <pnormand@igalia.com>
355 [GTK][Mac] ICU-related build fixes
356 https://bugs.webkit.org/show_bug.cgi?id=150032
358 Rubber-stamped by Darin Adler.
360 * Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
362 2015-10-20 Yoav Weiss <yoav@yoav.ws>
364 Rename the PICTURE_SIZES flag to CURRENTSRC
365 https://bugs.webkit.org/show_bug.cgi?id=150275
367 Reviewed by Dean Jackson.
369 * Source/cmake/OptionsEfl.cmake:
370 * Source/cmake/OptionsGTK.cmake:
371 * Source/cmake/OptionsMac.cmake:
372 * Source/cmake/OptionsWin.cmake:
373 * Source/cmake/WebKitFeatures.cmake:
375 2015-10-14 Tomas Popela <tpopela@redhat.com>
377 [GTK][EFL] Fix build with cmake 3.4
378 https://bugs.webkit.org/show_bug.cgi?id=150117
380 Explicitely include the CheckIncludeFiles module before using
381 the CHECK_INCLUDE_FILES command.
383 Reviewed by Žan Doberšek.
385 * Source/cmake/FindOpenGL.cmake:
386 * Source/cmake/FindWebP.cmake:
387 * Source/cmake/OptionsEfl.cmake:
389 2015-10-13 Dean Jackson <dino@apple.com>
391 Device motion and orientation should only be visible from the main frame's security origin
392 https://bugs.webkit.org/show_bug.cgi?id=150072
393 <rdar://problem/23082036>
395 Reviewed by Brent Fulgham.
397 Add a manual test for cross-origin device orientation events, while
398 we're waiting on the mock client to be supported everywhere.
400 * ManualTests/deviceorientation-child-frame.html: Added.
401 * ManualTests/deviceorientation-main-frame-only.html: Added.
403 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
405 [GTK] OSX linker doesn't understand --whole-archive
406 https://bugs.webkit.org/show_bug.cgi?id=144557
408 Reviewed by Martin Robinson.
410 * Source/cmake/OptionsGTK.cmake: Turn the macro
411 ADD_WHOLE_ARCHIVE_TO_LIBRARIES into a no-op on Darwin systems,
412 because XCode's linker doesn't have the --whole-archive option.
414 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
416 [GTK] Use --version-script only on Linux
417 https://bugs.webkit.org/show_bug.cgi?id=144555
419 Reviewed by Philippe Normand.
421 * Source/cmake/OptionsGTK.cmake: Don't add --version-script
422 option on Darwin (whose linker doesn't support it.)
424 2015-10-09 Gyuyoung Kim <gyuyoung.kim@webkit.org>
426 [CMake] Remove ENABLE_SUBPIXEL_LAYOUT macro
427 https://bugs.webkit.org/show_bug.cgi?id=149947
429 Reviewed by Csaba Osztrogonác.
431 ENABLE(SUBPIXEL_LAYOUT) was removed though, it is still alive in .cmake.
434 * Source/cmake/OptionsMac.cmake:
435 * Source/cmake/OptionsWin.cmake:
436 * Source/cmake/WebKitFeatures.cmake:
438 2015-10-06 Emanuele Aina <emanuele.aina@collabora.com>
440 Fix ENABLE_OPENGL=OFF builds
441 https://bugs.webkit.org/show_bug.cgi?id=146511
443 Reviewed by Darin Adler.
445 * Source/cmake/OptionsGTK.cmake: Make ENABLE_WAYLAND_TARGET depend on
446 ENABLE_OPENGL due to EGL usage.
448 2015-10-01 Wenson Hsieh <wenson_hsieh@apple.com>
450 Convert focused-input-should-assist-on-touch.html into an automated test
451 https://bugs.webkit.org/show_bug.cgi?id=149724
453 Reviewed by Simon Fraser.
455 Remove a manual test that can now be rewritten as an automated test.
457 * ManualTests/ios/focused-input-should-assist-on-touch.html: Removed.
459 2015-10-01 Brent Fulgham <bfulgham@apple.com>
461 [Win] Unreviewed CMake build fix.
463 * Source/cmake/OptionsWin.cmake: Clean up options setttings,
464 and make sure exception handling is turned off.
466 2015-09-30 Brent Fulgham <bfulgham@apple.com>
468 [Win] Unreviewed build fix after CMake conversion.
470 * Source/cmake/OptionsWin.cmake: Correct some Windows build flags.
472 2015-09-29 Michael Catanzaro <mcatanzaro@igalia.com>
474 [GTK][CMake] Warning about CMP0058
475 https://bugs.webkit.org/show_bug.cgi?id=149627
477 Reviewed by Martin Robinson.
479 Opt-in to the new behavior for CMP0058.
483 2015-09-28 Brent Fulgham <bfulgham@apple.com>
485 [Win] Unreviewed build fix for internal systems.
487 * Source/cmake/OptionsWin.cmake: Preferentially use the build target
488 location for include and link libraries, rather than the system locations.
490 2015-09-28 Alex Christensen <achristensen@webkit.org>
492 Build WK1 with CMake on Mac
493 https://bugs.webkit.org/show_bug.cgi?id=149604
495 Reviewed by Chris Dumez.
497 * Source/cmake/OptionsMac.cmake:
498 * Source/cmake/WebKitMacros.cmake:
499 ObjC bindings now have their own list of IDL files, but some of them still don't generate a .mm file.
501 2015-09-25 Alex Christensen <achristensen@webkit.org>
503 Clean up CMake build on Mac
504 https://bugs.webkit.org/show_bug.cgi?id=149573
506 Reviewed by Chris Dumez.
508 * Source/cmake/OptionsMac.cmake:
510 2015-09-25 Alex Christensen <achristensen@webkit.org>
512 [Win] Switch to CMake
513 https://bugs.webkit.org/show_bug.cgi?id=148111
515 Reviewed by Brent Fulgham.
517 * Source/cmake/WinTools.make: Added.
518 * Source/cmake/tools: Added.
519 * Source/cmake/tools/scripts: Copied from WebKitLibraries/win/tools/scripts.
520 * Source/cmake/tools/scripts/auto-version.pl: Copied from WebKitLibraries/win/tools/scripts/auto-version.pl.
522 2015-09-25 Alex Christensen <achristensen@webkit.org>
524 Prepare internal AppleWin build for CMake
525 https://bugs.webkit.org/show_bug.cgi?id=149570
527 Reviewed by Brent Fulgham.
529 * Source/PlatformWin.cmake:
530 Include internal CMake files if they exist.
532 2015-09-22 Gyuyoung Kim <gyuyoung.kim@webkit.org>
534 Add a file of pointer-lock to cmake ports
535 https://bugs.webkit.org/show_bug.cgi?id=149453
537 Reviewed by Csaba Osztrogonác.
539 * Source/cmake/OptionsEfl.cmake: Add a ENABLE_POINTER_LOCK.
541 2015-09-22 Carlos Alberto Lopez Perez <clopez@igalia.com>
543 [CMake] Allow to enable OpenMP support.
544 https://bugs.webkit.org/show_bug.cgi?id=149457
546 Reviewed by Csaba Osztrogonác.
548 * Source/cmake/OptionsCommon.cmake: Add the option USE_OPENMP that
549 will enable the support for OpenMP. Currently this is only used as
550 an alternative implementation to native threads for the parallelization
551 of the SVG filters. But name the option with a generic name (USE_OPENMP)
552 as it could be also used to enable future features that depend on OpenMP.
554 2015-09-22 Ryuan Choi <ryuan.choi@navercorp.com>
556 [EFL] Build break when DEVELOPER_MODE is OFF
557 https://bugs.webkit.org/show_bug.cgi?id=149448
559 Reviewed by Gyuyoung Kim.
561 Since r187191, DatabaseProcessMainUnix is missing in symbol filter.
563 * Source/cmake/eflsymbols.filter:
565 2015-09-21 Alex Christensen <achristensen@webkit.org>
567 Disable PICTURE_SIZES in Windows CMake build like r189745.
568 https://bugs.webkit.org/show_bug.cgi?id=149125
570 * Source/cmake/OptionsWin.cmake:
571 Do the same thing as r189745.
573 2015-09-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
575 Removing XHR_TIMEOUT guard
577 Remove XHR_TIMEOUT compilation guard
578 https://bugs.webkit.org/show_bug.cgi?id=149260
580 Reviewed by Benjamin Poulain.
582 * Source/cmake/OptionsEfl.cmake:
583 * Source/cmake/OptionsGTK.cmake:
584 * Source/cmake/OptionsMac.cmake:
585 * Source/cmake/OptionsWin.cmake:
586 * Source/cmake/WebKitFeatures.cmake:
588 2015-09-18 Alex Christensen <achristensen@webkit.org>
590 Fix tests on Windows after switching to CMake.
591 https://bugs.webkit.org/show_bug.cgi?id=149339
593 Reviewed by Brent Fulgham.
595 * Source/PlatformWin.cmake: Added to copy WebInspectorUI.
597 2015-09-17 Alex Christensen <achristensen@webkit.org>
599 Fix Windows EWS build after r189934.
601 * Source/cmake/OptionsWin.cmake:
602 Use WEBKIT_LIBRARIES environment variable if it exists.
603 We have the WebKitLibraries directory separate from the repository copy on the EWS bots.
605 2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
607 Add ShadowRoot interface and Element.prototype.attachShadow
608 https://bugs.webkit.org/show_bug.cgi?id=149187
610 Reviewed by Antti Koivisto.
612 * Source/cmake/OptionsGTK.cmake:
614 2015-09-15 Csaba Osztrogonác <ossy@webkit.org>
616 [cmake] Enable debug fission only if it is supported
617 https://bugs.webkit.org/show_bug.cgi?id=149161
619 Reviewed by Martin Robinson.
621 * Source/cmake/OptionsCommon.cmake:
623 2015-09-14 Alex Christensen <achristensen@webkit.org>
625 Progress towards CMake on Mac.
626 https://bugs.webkit.org/show_bug.cgi?id=149123
628 Reviewed by Chris Dumez.
630 * Source/cmake/OptionsMac.cmake:
631 * Source/cmake/WebKitFeatures.cmake:
632 Defined and enabled some more features needed on Mac.
633 * Source/cmake/WebKitMacros.cmake:
634 Objective C bindings need special changes when generating:
635 Some of the bindings do not generate a .mm file but the header is needed.
636 Some of the bindings do generate a .mm file that doesn't compile but the header is needed.
637 In order to handle these cases, it is necessary to change the GENERATE_BINDINGS macro just for ObjC.
639 2015-09-08 Daniel Bates <dabates@apple.com>
641 Convert manual test added in http://trac.webkit.org/changeset/70321 to an automated test
642 https://bugs.webkit.org/show_bug.cgi?id=74729
643 <rdar://problem/22550195>
645 Reviewed by Jon Honeycutt.
647 * ManualTests/compositing/resources/composited-subframe.html: Removed.
648 * ManualTests/compositing/show-composited-iframe-on-back-button.html: Removed.
650 2015-09-06 Andy Estes <aestes@apple.com>
652 WebKit.xcworkspace should be be able to build iOS platforms
653 https://bugs.webkit.org/show_bug.cgi?id=148881
655 Reviewed by Daniel Bates.
657 Since we don't want to create platform-specific schemes, all projects in the workspace's schemes need to build
658 for all supported platforms.
660 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Removed the DumpRenderTree target since its All
661 target was already included. Removed the WebKitTestRunner target and replaced it with its All target.
663 2015-09-04 Jon Honeycutt <jhoneycutt@apple.com>
665 [iOS] Need a test for bug #145539: Uploading an animated GIF from the
666 photo library uploads a JPEG
667 https://bugs.webkit.org/show_bug.cgi?id=148849
669 Reviewed by Daniel Bates.
671 * ManualTests/ios/image-file-uploads-as-original-type.html: Added.
672 On the Mac, file upload tests use EventSender::beginDragWithFiles. This
673 functionality doesn't exist on iOS, so we'll add a manual test.
674 This tests that the first few bytes of the selected file are "GIF".
676 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
678 Follow-up patch for r189343.
679 https://bugs.webkit.org/show_bug.cgi?id=148795
681 Rubber-stamped by Csaba Osztrogonác.
683 * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
684 to 1.9, since this seems to be enough to fix the build failure.
685 And 2.0 may cause problems for developers using some distributions like Ubuntu.
687 2015-09-04 Emanuele Aina <emanuele.aina@collabora.com>
689 [CMake] Trigger the memory-reduction tricks on armhf too
690 https://bugs.webkit.org/show_bug.cgi?id=146640
692 Reviewed by Csaba Osztrogonác.
694 * Source/cmake/OptionsCommon.cmake:
695 Activate --no-keep-memory even on armhf to reduce the amount of memory
696 needed during linking, to avoid out-of-memory failures as much as
699 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
701 REGRESSION(r189293): JavaScriptCore/offlineasm/x86.rb -- Build failure with ruby < 2.0
702 https://bugs.webkit.org/show_bug.cgi?id=148795
704 Rubber-stamped by Carlos Garcia Campos.
706 * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
708 2015-09-02 Alex Christensen <achristensen@webkit.org>
710 Make bison grammar compatible with bison 2.1
711 https://bugs.webkit.org/show_bug.cgi?id=148731
713 Reviewed by Tim Horton.
715 * Source/cmake/WebKitCommon.cmake:
718 2015-08-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
720 [CMake] Build with Debug Fission on by default on Debug builds.
721 https://bugs.webkit.org/show_bug.cgi?id=148639
723 Reviewed by Martin Robinson.
725 * Source/cmake/OptionsCommon.cmake:
727 2015-08-29 Alex Christensen <achristensen@webkit.org>
729 Unreviewed build fix after r179923.
731 * Source/CMakeLists.txt:
732 bmalloc isn't ported to Windows yet.
734 2015-08-27 Alex Christensen <achristensen@webkit.org>
736 Isolate Source directories in CMake build
737 https://bugs.webkit.org/show_bug.cgi?id=148389
739 Reviewed by Brent Fulgham.
742 * Source/cmake/WebKitCommon.cmake:
743 Move package finding to WebKitCommon.
745 2015-08-26 Per Arne Vollan <peavo@outlook.com>
747 [Win] Build does not generate debug info.
748 https://bugs.webkit.org/show_bug.cgi?id=148431
750 Reviewed by Alex Christensen.
752 Generate debug info for Windows builds.
754 * Source/cmake/OptionsWin.cmake:
756 2015-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
758 [GTK] Disable ACCELERATED_2D_CANVAS by default
759 https://bugs.webkit.org/show_bug.cgi?id=148473
761 Reviewed by Martin Robinson.
763 Currently ACCELERATED_2D_CANVAS is enabled by default on most systems (which have CairoGL)
764 but not on Debian (which does not). We've known this was problematic for a while, since it
765 means we have two different sets of distro-dependent bugs, but never decided whether that
766 outweighed the benefits of CarioGL or not. I'm making the call now: it's more important to
767 have the same bugs everywhere. We can turn this on again for other distros when we're ready
768 to turn it on for Debian.
770 Also, properly fail the build if ENABLE_ACCELERATED_2D_CANVAS is enabled but CairoGL is not
773 * Source/cmake/OptionsGTK.cmake:
775 2015-08-25 Commit Queue <commit-queue@webkit.org>
777 Unreviewed, rolling out r188919.
778 https://bugs.webkit.org/show_bug.cgi?id=148452
780 broke build (Requested by alexchristensen on #webkit).
784 "[Win] Build does not generate debug info."
785 https://bugs.webkit.org/show_bug.cgi?id=148431
786 http://trac.webkit.org/changeset/188919
788 2015-08-25 Michael Catanzaro <mcatanzaro@igalia.com>
790 [GTK] r186800 broke the build on Ubuntu 14.04
791 https://bugs.webkit.org/show_bug.cgi?id=147559
793 Reviewed by Martin Robinson.
795 * Source/cmake/FindGTK3.cmake: Always define GTK3_SUPPORTS_X11 and GTK3_SUPPORTS_WAYLAND.
796 * Source/cmake/OptionsGTK.cmake: Autodetect support for X11 and Wayland backends.
798 2015-08-25 Per Arne Vollan <peavo@outlook.com>
800 [Win] Build does not generate debug info.
801 https://bugs.webkit.org/show_bug.cgi?id=148431
803 Reviewed by Brent Fulgham.
805 Generate debug info for Windows builds.
807 * Source/cmake/OptionsWin.cmake:
809 2015-08-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
811 [GTK] Auto-detection of cairo-gl fails
812 https://bugs.webkit.org/show_bug.cgi?id=148189
814 Reviewed by Žan Doberšek.
816 * Source/cmake/FindCairoGL.cmake: only check for components if the main package has
817 been found. Otherwise, if either GLX or EGL are available, cairo-gl will also be
818 deemed available, which might not be the case.
819 * Source/cmake/OptionsGTK.cmake: fix the usage of the CAIROGL_FOUND variable.
821 2015-08-19 Alex Christensen <achristensen@webkit.org>
823 CMake Windows build should not include files directly from other Source directories
824 https://bugs.webkit.org/show_bug.cgi?id=148198
826 Reviewed by Brent Fulgham.
828 * Source/cmake/WebKitMacros.cmake:
830 2015-08-19 Alex Christensen <achristensen@webkit.org>
832 Build TestWTF on Mac with CMake.
833 https://bugs.webkit.org/show_bug.cgi?id=147972
835 Reviewed by Tim Horton.
837 * Source/cmake/OptionsMac.cmake:
838 Enable API tests in Mac's CMake build.
840 2015-08-18 Alex Christensen <achristensen@webkit.org>
842 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
843 https://bugs.webkit.org/show_bug.cgi?id=148127
845 Reviewed by Martin Robinson.
848 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
850 2015-08-17 Alex Christensen <achristensen@webkit.org>
852 [Win CMake] Allow WebKitLibraries directory to be set from the command line
853 https://bugs.webkit.org/show_bug.cgi?id=148112
855 Reviewed by Brent Fulgham.
857 * Source/cmake/OptionsWin.cmake:
858 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
859 Instead, use the default location if nothing is passed in from the command line.
860 This way we can set it from the command line for the AppleInternal build.
861 Also, set the output directories to be consistent between the old and new build systems (and ninja).
863 2015-08-17 Alex Christensen <achristensen@webkit.org>
865 Build Debug Suffix on Windows with CMake
866 https://bugs.webkit.org/show_bug.cgi?id=148083
868 Reviewed by Brent Fulgham.
870 * Source/cmake/OptionsWin.cmake:
871 Use debug libraries in debug suffix builds.
873 2015-08-17 Alex Christensen <achristensen@webkit.org>
875 Move some commands from ./CMakeLists.txt to Source/cmake
876 https://bugs.webkit.org/show_bug.cgi?id=148003
878 Reviewed by Brent Fulgham.
881 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
882 so we can change directory structure from command line parameters.
883 * Source/cmake/OptionsAppleWin.cmake:
884 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
885 * Source/cmake/OptionsWinCairo.cmake:
886 * Source/cmake/OptionsWindows.cmake: Removed.
887 * Source/cmake/WebKitCommon.cmake: Added.
888 * Source/cmake/WebKitFS.cmake:
890 2015-08-13 Commit Queue <commit-queue@webkit.org>
892 Unreviewed, rolling out r188428.
893 https://bugs.webkit.org/show_bug.cgi?id=148015
895 broke cmake build (Requested by alexchristensen on #webkit).
899 "Move some commands from ./CMakeLists.txt to Source/cmake"
900 https://bugs.webkit.org/show_bug.cgi?id=148003
901 http://trac.webkit.org/changeset/188428
903 2015-08-13 Alex Christensen <achristensen@webkit.org>
905 Move some commands from ./CMakeLists.txt to Source/cmake
906 https://bugs.webkit.org/show_bug.cgi?id=148003
908 Reviewed by Brent Fulgham.
911 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
912 so we can change directory structure from command line parameters.
913 * Source/cmake/WebKitCommon.cmake: Added.
914 * Source/cmake/WebKitFS.cmake:
916 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
918 A focused node should not be assisted when handling touch events synchronously
919 https://bugs.webkit.org/show_bug.cgi?id=147836
921 Reviewed by Enrica Casucci.
923 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
925 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
926 input can still be assisted due to a touch event.
927 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
928 event does not automatically cause us to assist the currently focused node.
930 2015-08-12 Alex Christensen <achristensen@webkit.org>
932 Fix Debug CMake builds on Windows
933 https://bugs.webkit.org/show_bug.cgi?id=147940
935 Reviewed by Chris Dumez.
937 * Source/cmake/OptionsWindows.cmake:
938 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
940 2015-08-10 Alex Christensen <achristensen@webkit.org>
942 Build TestWebKitAPI with CMake on Windows
943 https://bugs.webkit.org/show_bug.cgi?id=147851
945 Reviewed by Chris Dumez.
947 * Source/cmake/OptionsWindows.cmake:
948 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
950 2015-08-06 Alex Christensen <achristensen@webkit.org>
952 [Win] CMake build fix after r188098.
954 * Source/cmake/OptionsWinCairo.cmake:
955 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
957 2015-08-04 Alex Christensen <achristensen@webkit.org>
959 Fix quirks with CMake and VS2015
960 https://bugs.webkit.org/show_bug.cgi?id=147663
962 Reviewed by Brent Fulgham.
964 * Source/cmake/OptionsWindows.cmake:
965 Hide some warnings. Using the same variable names in nested scopes is ok for now.
966 Disable INTL for now.
968 2015-08-04 Alex Christensen <achristensen@webkit.org>
970 Enable WebGL on Windows CMake build.
971 https://bugs.webkit.org/show_bug.cgi?id=143311
973 Reviewed by Csaba Osztrogonác.
975 * Source/cmake/OptionsWindows.cmake:
976 Enable WebGL by default in CMake builds now that it works.
978 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
980 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
981 https://bugs.webkit.org/show_bug.cgi?id=147625
983 Reviewed by Martin Robinson.
985 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
986 components unless they were actually found, not to accidentally
987 enable Accelerated 2D canvas, which would cause the build to fail.
989 * Source/cmake/FindCairoGL.cmake: Set this variables only when
990 pkg_check_modules() had actually found the relevant component.
992 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
994 [CMake] Add an option to build AllInOne files
995 https://bugs.webkit.org/show_bug.cgi?id=102647
997 Reviewed by Alex Christensen.
999 * Source/cmake/OptionsEfl.cmake: Disabled by default.
1000 * Source/cmake/OptionsGTK.cmake: Disabled by default.
1001 * Source/cmake/OptionsWindows.cmake: Enabled by default.
1002 * Source/cmake/WebKitFeatures.cmake:
1003 * Source/cmake/WebKitMacros.cmake:
1005 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
1007 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
1009 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1011 2015-07-31 Alex Christensen <achristensen@webkit.org>
1013 Prepare for debug CMake builds on Windows.
1014 https://bugs.webkit.org/show_bug.cgi?id=147484
1016 Reviewed by Tim Horton.
1018 * Source/cmake/OptionsWindows.cmake:
1019 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
1021 2015-07-30 Joonghun Park <jh718.park@samsung.com>
1023 [EFL] Enable IndexedDB based on DatabaseProcess
1024 https://bugs.webkit.org/show_bug.cgi?id=147221
1026 Reviewed by Csaba Osztrogonác.
1028 * Source/cmake/OptionsEfl.cmake:
1030 2015-07-30 Alex Christensen <achristensen@webkit.org>
1032 Build AppleWin port with CMake
1033 https://bugs.webkit.org/show_bug.cgi?id=147385
1035 Reviewed by Martin Robinson.
1037 * Source/cmake/OptionsWindows.cmake:
1038 Use the static multithreaded runtime. Based on
1039 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
1041 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
1043 Implement basic types for ECMAScript Internationalization API
1044 https://bugs.webkit.org/show_bug.cgi?id=146926
1046 Reviewed by Benjamin Poulain.
1048 Enable flag now that the basic objects are in place.
1050 * Source/cmake/WebKitFeatures.cmake: enable INTL
1052 2015-07-29 Basile Clement <basile_clement@apple.com>
1054 Remove native call inlining
1055 https://bugs.webkit.org/show_bug.cgi?id=147417
1057 Rubber-stamped by Filip Pizlo.
1059 * Source/cmake/OptionsEfl.cmake:
1060 * Source/cmake/WebKitFeatures.cmake:
1062 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
1064 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
1065 https://bugs.webkit.org/show_bug.cgi?id=147350
1067 Reviewed by Sam Weinig.
1069 * Source/cmake/WebKitFeatures.cmake:
1071 2015-07-27 Alex Christensen <achristensen@webkit.org>
1073 Use Ninja on Windows.
1074 https://bugs.webkit.org/show_bug.cgi?id=147228
1076 Reviewed by Martin Robinson.
1078 * Source/cmake/OptionsWindows.cmake:
1079 Only use /MP when using generated Visual Studio solution files to build.
1080 It makes compiling parallel in MSVC, but Ninja doesn't like it.
1082 2015-07-27 Alex Christensen <achristensen@webkit.org>
1084 Progress towards building AppleWin with CMake
1085 https://bugs.webkit.org/show_bug.cgi?id=147325
1087 Reviewed by Martin Robinson.
1089 * Source/cmake/OptionsWindows.cmake:
1090 Link with 64-bit libraries if building 64-bit binaries.
1091 Don't run regular expressions on empty strings when using Ninja.
1092 Removed DebugSuffix Visual Studio environment variables.
1094 2015-07-23 Alex Christensen <achristensen@webkit.org>
1096 Remove compile and runtime flags for promises.
1097 https://bugs.webkit.org/show_bug.cgi?id=147244
1099 Reviewed by Yusuke Suzuki.
1101 * Source/cmake/OptionsMac.cmake:
1102 * Source/cmake/OptionsWindows.cmake:
1103 * Source/cmake/WebKitFeatures.cmake:
1105 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
1107 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
1108 https://bugs.webkit.org/show_bug.cgi?id=147212
1110 Reviewed by Filip Pizlo.
1112 * Source/cmake/WebKitFeatures.cmake:
1114 2015-07-22 Alex Christensen <achristensen@webkit.org>
1116 Fix quirks in CMake build on Mac and Windows
1117 https://bugs.webkit.org/show_bug.cgi?id=147174
1119 Reviewed by Gyuyoung Kim.
1122 * Source/cmake/OptionsWindows.cmake:
1123 Added options I removed in r187022. They are indeed needed.
1124 * Source/cmake/WebKitFS.cmake:
1125 Make the DerivedSources/WebKit directory.
1127 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
1129 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
1131 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1133 2015-07-20 Alex Christensen <achristensen@webkit.org>
1135 Resurrect CMake build on Windows.
1136 https://bugs.webkit.org/show_bug.cgi?id=147083
1138 Reviewed by Gyuyoung Kim.
1140 * Source/cmake/OptionsCommon.cmake:
1141 * Source/cmake/OptionsWindows.cmake:
1142 Change features to get it to compile. Still not a complete feature set.
1144 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
1146 [GTK] Add seccomp filters support
1147 https://bugs.webkit.org/show_bug.cgi?id=110014
1149 Reviewed by Žan Doberšek.
1151 Find needed compiler and linker flags for libseccomp.
1153 * Source/cmake/OptionsGTK.cmake:
1155 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
1157 Bring back the GNU ar check to create thin archives on non-Linux systems
1158 https://bugs.webkit.org/show_bug.cgi?id=146681
1160 Reviewed by Martin Robinson.
1162 We already use GNU ar thin archive feature to save time and disk space
1163 on creating static archives, but it is only enabled on Linux. Without
1164 this feature, the debug build of WebCore can be larger than 4 GiB,
1165 which can cause error because GNU ar format uses 32-bit integer to
1166 store offsets in the symbol table. This patch is similar to
1167 https://bugs.webkit.org/show_bug.cgi?id=128596.
1169 * Source/cmake/OptionsCommon.cmake:
1171 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
1173 [GTK] [Wayland] Build by default the X11 and Wayland targets.
1174 https://bugs.webkit.org/show_bug.cgi?id=146057
1176 Reviewed by Carlos Garcia Campos.
1178 * Source/cmake/OptionsGTK.cmake:
1180 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
1182 [GTK] ar warning when linking static libraries
1183 https://bugs.webkit.org/show_bug.cgi?id=144988
1185 Reviewed by Carlos Garcia Campos.
1187 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
1188 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
1189 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
1190 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
1191 should either stop using 'u' or else add 'U' as well in order to disable deterministic
1192 archives. Using 'U' should result in a somewhat faster build (at least when using the
1193 Makefile generator), but it's unlikely that the difference is significant, so let's simply
1194 remove 'u' until someone determines otherwise. This seems like a better option than adding
1195 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
1196 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
1197 behavior change on distributions that do not use --enable-deterministic-archives, notably
1200 * Source/cmake/OptionsCommon.cmake:
1202 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
1204 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
1205 https://bugs.webkit.org/show_bug.cgi?id=146590
1207 Reviewed by Martin Robinson.
1209 * Source/PlatformGTK.cmake: override the cached variables to
1210 forcefully disable gtk-doc and gobject-introspection when
1212 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
1213 documentation syntax when cross-building.
1216 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
1218 [EFL] test_ewk2_application_cache_manager has been failed since r185527
1219 https://bugs.webkit.org/show_bug.cgi?id=146016
1221 Reviewed by Gyuyoung Kim.
1223 In order to handle properly WebApplicationCacheManagerProxy implementation which use
1224 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
1225 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
1227 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
1229 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
1231 Implement ECMAScript Internationalization API
1232 https://bugs.webkit.org/show_bug.cgi?id=90906
1234 Reviewed by Benjamin Poulain.
1236 Begin implementing the Intl apis behind ENABLE_INTL flag.
1237 Create the base Intl namespace object.
1239 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
1241 2015-06-30 Philippe Normand <pnormand@igalia.com>
1243 [CMake] Error when gst-plugins-base is missing is too confusing
1244 https://bugs.webkit.org/show_bug.cgi?id=145682
1246 Reviewed by Carlos Garcia Campos.
1248 * Source/cmake/OptionsGTK.cmake: Error out if the required
1249 GStreamer libraries are not found on the host.
1251 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
1253 CairoGL should be checked unconditionally
1254 https://bugs.webkit.org/show_bug.cgi?id=146390
1256 Reviewed by Darin Adler.
1258 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
1259 it is run unconditionally; this is necessary because its result
1260 is used later on, outside of any conditions.
1262 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
1264 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
1265 https://bugs.webkit.org/show_bug.cgi?id=146318
1267 Reviewed by Sergio Villar Senin.
1269 Enable PUBLIC_SUFFIX_LIST for GTK+.
1271 * Source/cmake/OptionsGTK.cmake:
1273 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
1275 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
1277 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1279 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
1281 [EFL] Hyphenation is not supported
1282 https://bugs.webkit.org/show_bug.cgi?id=89830
1284 Reviewed by Gyuyoung Kim.
1286 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
1288 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
1290 [CMake] Add support for building with various sanitizer tools
1291 https://bugs.webkit.org/show_bug.cgi?id=131941
1293 Reviewed by Martin Robinson.
1295 * Source/PlatformGTK.cmake: Don't generate any documentation
1296 when compiling with sanitizers enabled.
1297 * Source/cmake/OptionsCommon.cmake: Allow linking with
1298 undefined symbols when compiling with sanitizers enabled.
1300 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
1302 libwebkit2gtk fails to link without opengl
1303 https://bugs.webkit.org/show_bug.cgi?id=138332
1305 Reviewed by Carlos Garcia Campos.
1307 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
1308 enabled regardless of whether OpenGL is, because certain symbols
1309 such as WebCore::GraphicsLayer::create() need to be built.
1311 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
1313 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
1314 https://bugs.webkit.org/show_bug.cgi?id=146181
1316 Reviewed by Martin Robinson.
1318 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
1320 * Source/cmake/OptionsGTK.cmake:
1322 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
1324 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
1325 https://bugs.webkit.org/show_bug.cgi?id=146171
1327 Reviewed by Gyuyoung Kim.
1329 * Source/cmake/OptionsEfl.cmake:
1330 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
1332 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
1334 [CMake] FindGTK3.cmake should not modify the values of build options
1335 https://bugs.webkit.org/show_bug.cgi?id=144613
1337 Reviewed by Martin Robinson.
1339 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
1340 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
1341 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
1342 GTK3_SUPPORTS_GESTURES for consistency.
1343 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
1344 available. It's not possible to automatically select a backend correctly anymore, since all
1345 options are set at the same time.
1347 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
1349 Remove unnecessary svn:executable flags
1350 https://bugs.webkit.org/show_bug.cgi?id=146107
1352 Reviewed by Alexey Proskuryakov.
1354 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
1355 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
1356 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
1357 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
1358 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
1360 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
1362 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
1363 https://bugs.webkit.org/show_bug.cgi?id=146108
1365 Reviewed by Gyuyoung Kim.
1367 * Source/cmake/OptionsEfl.cmake:
1369 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
1371 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
1372 https://bugs.webkit.org/show_bug.cgi?id=146035
1374 Reviewed by Gyuyoung Kim.
1376 * Source/cmake/OptionsEfl.cmake:
1378 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
1380 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1381 https://bugs.webkit.org/show_bug.cgi?id=145701
1383 Reviewed by Darin Adler.
1385 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1387 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
1389 [iOS] Crash long pressing on <input type=file>
1390 https://bugs.webkit.org/show_bug.cgi?id=146009
1391 <rdar://problem/21234453>
1393 Reviewed by Ryosuke Niwa.
1395 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
1397 2015-06-16 Brent Fulgham <bfulgham@apple.com>
1399 Rollout accidental Xcode project change.
1401 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1403 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1405 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
1406 https://bugs.webkit.org/show_bug.cgi?id=145909
1408 Reviewed by Csaba Osztrogonác.
1410 Bump EWebKit version based on efl library version used by the EWebKit.
1412 * Source/cmake/OptionsEfl.cmake:
1414 2015-06-11 Commit Queue <commit-queue@webkit.org>
1416 Unreviewed, rolling out r185453.
1417 https://bugs.webkit.org/show_bug.cgi?id=145881
1419 it broke the 32-bit build (Requested by clopez on #webkit).
1423 "[GTK] [Wayland] Should be possible to build with support for
1424 both X11 and Wayland."
1425 https://bugs.webkit.org/show_bug.cgi?id=145701
1426 http://trac.webkit.org/changeset/185453
1428 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1430 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
1431 https://bugs.webkit.org/show_bug.cgi?id=145701
1433 Reviewed by Žan Doberšek.
1435 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
1437 2015-06-03 Daniel Bates <dabates@apple.com>
1439 Caps lock indicator should not be shown in read-only or disabled field
1440 https://bugs.webkit.org/show_bug.cgi?id=145612
1441 <rdar://problem/21227454>
1443 Reviewed by Darin Adler.
1445 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
1446 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
1447 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
1449 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
1451 [cmake] Suppress parentheses-equality warnings
1452 https://bugs.webkit.org/show_bug.cgi?id=145126
1454 Reviewed by Darin Adler.
1456 * Source/cmake/WebKitHelpers.cmake:
1458 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1460 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
1461 https://bugs.webkit.org/show_bug.cgi?id=145408
1463 Reviewed by Carlos Garcia Campos.
1465 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
1466 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
1467 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
1469 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
1470 libraries. Detect also GLX libraries.
1471 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
1472 libraries. Use find_path() to get the include path.
1473 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
1475 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
1476 depending on the libraries found on the system.
1477 Move the detection of GLX (and the include of CMakePushCheckState)
1478 to FindOpenGL.cmake.
1479 Ensure that we only define USE_GLX when we build with OpenGL
1480 (but not with GLESv2).
1482 2015-05-27 Dean Jackson <dino@apple.com>
1484 img.currentSrc problem in strict mode with old picturefill
1485 https://bugs.webkit.org/show_bug.cgi?id=144095
1486 <rdar://problem/21087013>
1488 Reviewed by Simon Fraser.
1490 Add a PICTURE_SIZES flag.
1492 * Source/cmake/OptionsEfl.cmake:
1493 * Source/cmake/OptionsGTK.cmake:
1494 * Source/cmake/OptionsMac.cmake:
1495 * Source/cmake/OptionsWindows.cmake:
1496 * Source/cmake/WebKitFeatures.cmake:
1498 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
1500 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
1502 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1504 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1506 Unreviewed. Export DatabaseProcessMainUnix symbol.
1508 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
1509 is exported in production builds.
1511 * Source/cmake/gtksymbols.filter:
1513 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
1515 [GTK] Enable IndexedDB
1516 https://bugs.webkit.org/show_bug.cgi?id=98932
1518 Reviewed by Žan Doberšek.
1520 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1521 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1523 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
1525 [GTK] Bump GCC requirements to 4.9.0
1526 https://bugs.webkit.org/show_bug.cgi?id=145211
1528 Reviewed by Žan Doberšek.
1530 It's required to build with IndexedDB support when using GCC,
1531 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
1533 * Source/cmake/OptionsGTK.cmake:
1535 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
1537 [CMake] Ignore warnings in system headers
1538 https://bugs.webkit.org/show_bug.cgi?id=144747
1540 Reviewed by Darin Adler.
1542 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
1543 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
1544 use the SYSTEM argument to the command (added in 2.8.12).
1548 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
1550 [CMake] Error out when ruby is too old
1551 https://bugs.webkit.org/show_bug.cgi?id=145014
1553 Reviewed by Martin Robinson.
1555 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
1560 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
1562 [GTK] Enable plugin-related CMake options and variables for the X11 target only
1563 https://bugs.webkit.org/show_bug.cgi?id=144995
1565 Reviewed by Carlos Garcia Campos.
1567 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
1568 the X11 windowing target at the moment, so the following options
1569 and variables should be enabled or disabled accordingly:
1570 - ENABLE_PLUGIN_PROCESS_GTK2
1571 - ENABLE_NETSCAPE_PLUGIN_API
1572 - ENABLE_PLUGIN_PROCESS
1574 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
1576 Linker fails without -DDEVELOPER_MODE=ON
1577 https://bugs.webkit.org/show_bug.cgi?id=144117
1579 Reviewed by Gyuyoung Kim.
1581 * Source/cmake/OptionsEfl.cmake:
1582 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
1583 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
1585 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1587 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
1588 https://bugs.webkit.org/show_bug.cgi?id=144846
1590 Reviewed by Martin Robinson.
1592 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
1593 CAIRO_GL_* throughout, because find_package will define
1595 * Source/cmake/OptionsGTK.cmake: Ditto.
1597 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
1599 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
1600 https://bugs.webkit.org/show_bug.cgi?id=144845
1602 Reviewed by Martin Robinson.
1604 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
1605 if their corresponding WTF options are ON. The code in npapi.h
1606 relies on these being undefined if they are to be switched off.
1608 2015-05-09 Yoav Weiss <yoav@yoav.ws>
1610 Remove the PICTURE_SIZES build flag
1611 https://bugs.webkit.org/show_bug.cgi?id=144679
1613 Reviewed by Benjamin Poulain.
1615 Removed the PICTURE_SIZES build time flag.
1617 * Source/cmake/OptionsEfl.cmake:
1618 * Source/cmake/OptionsGTK.cmake:
1619 * Source/cmake/OptionsMac.cmake:
1620 * Source/cmake/OptionsWindows.cmake:
1621 * Source/cmake/WebKitFeatures.cmake:
1623 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
1625 [GTK] [CMake] Check for required X libraries
1626 https://bugs.webkit.org/show_bug.cgi?id=144823
1628 Reviewed by Martin Robinson.
1630 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
1632 * Source/cmake/OptionsGTK.cmake:
1634 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
1636 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1637 https://bugs.webkit.org/show_bug.cgi?id=144746
1639 Reviewed by Carlos Garcia Campos.
1641 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1642 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
1643 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
1645 * Source/cmake/OptionsGTK.cmake:
1647 2015-05-08 Daniel Bates <dabates@apple.com>
1649 [iOS] WebSQL operations are not performed after device is locked
1650 https://bugs.webkit.org/show_bug.cgi?id=137503
1651 <rdar://problem/20844952>
1653 Rubber-stamped by Alexey Proskuryakov.
1655 Add a manual test to help verify that we do not regress this issue.
1657 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
1659 2015-05-08 Commit Queue <commit-queue@webkit.org>
1661 Unreviewed, rolling out r183945.
1662 https://bugs.webkit.org/show_bug.cgi?id=144789
1664 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
1668 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
1669 https://bugs.webkit.org/show_bug.cgi?id=144746
1670 http://trac.webkit.org/changeset/183945
1672 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
1674 Cleanup after r183940
1675 https://bugs.webkit.org/show_bug.cgi?id=144768
1679 Looks like the empty directories were not deleted.
1681 * Source/PAL: Removed.
1682 * Source/PAL/Configurations: Removed.
1683 * Source/PAL/PAL.xcodeproj: Removed.
1684 * Source/PAL/graphics: Removed.
1686 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
1688 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
1689 https://bugs.webkit.org/show_bug.cgi?id=144746
1691 Reviewed by Martin Robinson.
1693 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
1694 what it is defined to, so defining it to 0 effectively turned it on always.
1696 * Source/cmake/OptionsGTK.cmake:
1698 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1700 Revert "Introducing the Platform Abstraction Layer (PAL)"
1701 https://bugs.webkit.org/show_bug.cgi?id=144751
1705 PAL should be a new target inside WebCore, rather than a top-level folder.
1707 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1709 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
1711 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
1713 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1715 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
1717 Introducing the Platform Abstraction Layer (PAL)
1718 https://bugs.webkit.org/show_bug.cgi?id=143358
1720 Reviewed by Simon Fraser.
1722 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
1724 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
1726 [cmake] Disable GNU Gold linker on Cortex A53
1727 https://bugs.webkit.org/show_bug.cgi?id=144382
1729 Reviewed by Carlos Garcia Campos.
1731 * Source/cmake/OptionsCommon.cmake:
1733 2015-05-01 Martin Robinson <mrobinson@igalia.com>
1735 USE(...) macro should expect unprefixed variables
1736 https://bugs.webkit.org/show_bug.cgi?id=144454
1738 Reviewed by Daniel Bates.
1740 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
1741 * Source/cmake/OptionsEfl.cmake: Ditto.
1742 * Source/cmake/OptionsGTK.cmake: Ditto.
1743 * Source/cmake/OptionsMac.cmake: Ditto.
1744 * Source/cmake/OptionsWinCairo.cmake: Ditto.
1745 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
1748 2015-04-30 Martin Robinson <mrobinson@igalia.com>
1750 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
1751 https://bugs.webkit.org/show_bug.cgi?id=144394
1753 Reviewed by Carlos Garcia Campos.
1755 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
1756 is that it fixes the redirected XComposite window for GTK+, which was accidentally
1757 disabled in previous reworking of the CMake configuration.
1759 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
1760 version of USE variables.
1761 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
1762 is exposed to the build.
1764 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
1766 Unreviewed. Bump GTK+ version numbers.
1768 * Source/cmake/OptionsGTK.cmake:
1770 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1772 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
1773 https://bugs.webkit.org/show_bug.cgi?id=144435
1775 Reviewed by Gyuyoung Kim.
1777 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
1778 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
1780 * Source/cmake/OptionsEfl.cmake:
1782 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
1784 REGRESSION(183583): [Mac] make without SDKROOT has issues
1785 https://bugs.webkit.org/show_bug.cgi?id=144431
1787 Reviewed by Dan Bernstein.
1790 Assume an empty SDKROOT means an macosx variant, so only
1791 enable settings if the SDKROOT is not empty and does not
1794 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1796 Fix the GTK+ build after r183584
1798 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
1800 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1802 [GTK] Add support for automatic hyphenation
1803 https://bugs.webkit.org/show_bug.cgi?id=44478
1805 Reviewed by Carlos Garcia Campos.
1807 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
1808 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
1809 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
1811 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
1813 Failure when building WebKit for appletvsimulator.
1814 https://bugs.webkit.org/show_bug.cgi?id=144356
1816 Reviewed by Alexey Proskuryakov.
1818 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
1819 make TVOS and WatchOS behave correctly.
1823 2015-04-29 Martin Robinson <mrobinson@igalia.com>
1825 [CMake] [GTK] Organize and clean up unused CMake variables
1826 https://bugs.webkit.org/show_bug.cgi?id=144364
1828 Reviewed by Gyuyoung Kim.
1830 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
1831 specific to certain projects into their PlatformGTK.cmake files.
1833 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
1835 [EFL] Build failure to find gio-unix
1836 https://bugs.webkit.org/show_bug.cgi?id=144083
1838 Reviewed by Gyuyoung Kim.
1840 Original patch by Doug Newgard <scimma22@outlook.com>
1842 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
1844 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
1846 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
1847 https://bugs.webkit.org/show_bug.cgi?id=143001
1849 Reviewed by Gyuyoung Kim.
1851 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
1852 * Source/cmake/OptionsGTK.cmake: Ditto.
1854 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1856 Unreviewed, fix typo in previous commit
1858 libsecretr -> libsecret in the error message.
1860 * Source/cmake/OptionsGTK.cmake:
1862 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1864 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
1865 https://bugs.webkit.org/show_bug.cgi?id=143546
1867 Reviewed by Martin Robinson.
1869 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
1870 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
1871 default. Fail the build with an informative error message if an optional dependency required
1872 for an enabled feature is not present. Perform find_package commands only when necessary.
1873 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
1876 * Source/cmake/OptionsGTK.cmake:
1878 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1880 [GTK] Make all options actually options
1881 https://bugs.webkit.org/show_bug.cgi?id=144106
1883 Reviewed by Martin Robinson.
1885 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
1886 ENABLE_WAYLAND_TARGET.
1888 * Source/cmake/OptionsGTK.cmake:
1890 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
1892 Unreviewed, fix GTK build after r183452
1894 * Source/cmake/OptionsGTK.cmake:
1896 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1898 [GTK] Add one single option to control all OpenGL-related options
1899 https://bugs.webkit.org/show_bug.cgi?id=144105
1901 Reviewed by Martin Robinson.
1903 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
1904 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
1905 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
1906 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
1907 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
1908 presence of CairoGL.
1910 * Source/cmake/OptionsGTK.cmake:
1912 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1914 [GTK] ENABLE_SMOOTH_SCROLLING should be private
1915 https://bugs.webkit.org/show_bug.cgi?id=144306
1917 Reviewed by Martin Robinson.
1919 Make ENABLE_SMOOTH_SCROLLING private instead of public.
1921 * Source/cmake/OptionsGTK.cmake:
1923 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1925 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
1926 https://bugs.webkit.org/show_bug.cgi?id=144193
1928 Reviewed by Darin Adler.
1930 * Source/cmake/OptionsEfl.cmake:
1931 * Source/cmake/OptionsGTK.cmake:
1932 * Source/cmake/OptionsWinCairo.cmake:
1933 * Source/cmake/WebKitFeatures.cmake:
1935 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
1937 [CMake] Should be possible for an option to conflict with other options
1938 https://bugs.webkit.org/show_bug.cgi?id=143956
1940 Reviewed by Martin Robinson.
1942 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
1944 * Source/cmake/WebKitFeatures.cmake:
1946 2015-04-22 Martin Robinson <mrobinson@igalia.com>
1948 [CMake] Autogenerate cmakeconfig.h.cmake
1949 https://bugs.webkit.org/show_bug.cgi?id=143997
1951 Reviewed by Csaba Osztrogonác.
1953 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
1954 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
1955 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
1956 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
1957 Do some other miscellaneous related cleanup.
1958 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
1959 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
1960 build exposed variables. Add a macro to generate a configuration from them.
1961 * Source/cmakeconfig.h.cmake: Removed.
1963 2015-04-24 Philippe Normand <pnormand@igalia.com>
1965 [JHBuild] Move to upstream OpenWebRTC
1966 https://bugs.webkit.org/show_bug.cgi?id=144145
1968 Reviewed by Carlos Garcia Campos.
1970 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
1973 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
1975 [ES6] Implement ES6 template literals
1976 https://bugs.webkit.org/show_bug.cgi?id=142691
1978 Reviewed by Darin Adler.
1980 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
1982 * Source/cmake/WebKitFeatures.cmake:
1983 * Source/cmakeconfig.h.cmake:
1985 2015-04-25 Martin Robinson <mrobinson@igalia.com>
1987 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
1988 https://bugs.webkit.org/show_bug.cgi?id=144182
1990 Reviewed by Simon Fraser.
1992 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1993 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1994 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1995 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1996 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
1998 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2000 [GTK] Add more public options
2001 https://bugs.webkit.org/show_bug.cgi?id=144116
2003 Reviewed by Martin Robinson.
2005 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
2007 * Source/cmake/OptionsGTK.cmake:
2009 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2011 [CMake] Some internal variables are not marked as advanced
2012 https://bugs.webkit.org/show_bug.cgi?id=143595
2014 Reviewed by Martin Robinson.
2016 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
2017 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
2019 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2021 [GTK] Mark as advanced the build options we don't want to expose
2022 https://bugs.webkit.org/show_bug.cgi?id=143558
2024 Reviewed by Martin Robinson.
2026 Mark various options as private instead of public.
2028 * Source/cmake/OptionsGTK.cmake:
2030 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2032 [CMake] Should be possible for an option to depend on multiple options
2033 https://bugs.webkit.org/show_bug.cgi?id=143839
2035 Reviewed by Martin Robinson.
2037 Use a list instead of a single variable to track the dependencies of each option. Iterate
2038 over the list as many times as necessary to ensure all options are properly disabled.
2040 * Source/cmake/WebKitFeatures.cmake:
2042 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2044 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
2045 https://bugs.webkit.org/show_bug.cgi?id=144103
2047 Reviewed by Martin Robinson.
2049 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
2051 * Source/cmake/WebKitFeatures.cmake:
2053 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
2055 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
2056 https://bugs.webkit.org/show_bug.cgi?id=144102
2058 Reviewed by Martin Robinson.
2060 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
2061 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
2062 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
2064 * Source/cmake/OptionsGTK.cmake:
2066 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2068 [CMake] Clean up JSC JIT options
2069 https://bugs.webkit.org/show_bug.cgi?id=143998
2071 Reviewed by Filip Pizlo.
2073 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
2074 define for ENABLE_FTL_NATIVE_CALL_INLINING.
2075 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
2076 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
2077 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
2078 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
2080 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2082 [CMake] Use lowercase for local variables in macros
2083 https://bugs.webkit.org/show_bug.cgi?id=144059
2085 Reviewed by Martin Robinson.
2087 Convert some variable names to lowercase.
2089 * Source/cmake/WebKitFeatures.cmake:
2091 2015-04-22 Commit Queue <commit-queue@webkit.org>
2093 Unreviewed, rolling out r183116.
2094 https://bugs.webkit.org/show_bug.cgi?id=144060
2096 Inadvertently deleted a file... (Requested by mcatanzaro on
2101 "[CMake] Use lowercase for local variables in macros"
2102 https://bugs.webkit.org/show_bug.cgi?id=144059
2103 http://trac.webkit.org/changeset/183116
2105 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2107 [CMake] Use lowercase for local variables in macros
2108 https://bugs.webkit.org/show_bug.cgi?id=144059
2110 Reviewed by Martin Robinson.
2112 Convert some variable names to lowercase.
2114 * Source/cmake/WebKitFeatures.cmake:
2116 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2118 [CMake] Features list should print dots every other row
2119 https://bugs.webkit.org/show_bug.cgi?id=143832
2121 Reviewed by Martin Robinson.
2123 Discount private options when determining whether to print dots on a given row of the
2124 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
2125 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
2126 wasn't noticed because it only affects the first line, and use of the variable name as a
2127 string in a conditional.)
2129 * Source/cmake/WebKitFeatures.cmake:
2131 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
2133 [CMake] Require specifying visibility of WebKit options
2134 https://bugs.webkit.org/show_bug.cgi?id=143831
2136 Reviewed by Alex Christensen.
2138 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
2139 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
2140 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
2141 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
2142 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
2143 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
2144 cross-platform options as PRIVATE.
2146 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2148 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
2149 https://bugs.webkit.org/show_bug.cgi?id=143935
2151 Reviewed by Darin Adler.
2153 Some variables aren't defined in these files or unused variables aren't removed. This
2154 patch cleans up it as well as fix wrong alphabet order.
2156 * Source/cmake/WebKitFeatures.cmake:
2157 * Source/cmakeconfig.h.cmake:
2159 2015-04-19 Simon Fraser <simon.fraser@apple.com>
2161 Restore the WebKit.xcworkspace to the way it was before r182899,
2162 which inadvertently added the Source directory and a couple of source
2165 * WebKit.xcworkspace/contents.xcworkspacedata:
2167 2015-04-16 Basile Clement <basile_clement@apple.com>
2169 Extract the allocation profile from JSFunction into a rare object
2170 https://bugs.webkit.org/show_bug.cgi?id=143807
2172 Reviewed by Filip Pizlo.
2174 * WebKit.xcworkspace/contents.xcworkspacedata:
2176 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
2178 [EFL] Bump LLVM to version 3.6.0 on X86_64
2179 https://bugs.webkit.org/show_bug.cgi?id=143604
2181 Reviewed by Gyuyoung Kim.
2183 * Source/cmake/FindLLVM.cmake: Added version handling.
2184 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
2186 2015-04-15 Timothy Horton <timothy_horton@apple.com>
2188 Custom CSS cursors do not use -webkit-image-set on retina displays
2189 https://bugs.webkit.org/show_bug.cgi?id=120783
2191 Reviewed by Beth Dakin.
2192 Patch by Evan Wallace <evan.exe@gmail.com>.
2194 Add a manual test for custom CSS cursors on retina displays.
2196 * ManualTests/retina-cursors.html: Added.
2198 2015-04-15 Alex Christensen <achristensen@webkit.org>
2200 Progress towards CMake on Mac.
2201 https://bugs.webkit.org/show_bug.cgi?id=143785
2203 Reviewed by Csaba Osztrogonác.
2206 * Source/cmake/OptionsMac.cmake:
2207 * Source/cmake/WebKitFS.cmake:
2209 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
2211 Cannot click "Next" button on Google two-factor auth setup page
2213 <https://bugs.webkit.org/show_bug.cgi?id=143624>
2214 <rdar://problem/19175714>
2216 Reviewed by Darin Adler.
2218 * ManualTests/button-that-focuses-itself-on-click.html: Added.
2220 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
2222 [cmake] REGRESSION(182663): It broke feature dependency handling
2223 https://bugs.webkit.org/show_bug.cgi?id=143665
2225 Reviewed by Csaba Osztrogonác.
2227 Don't try to check the value of options before defining the options.
2229 * Source/cmake/WebKitFeatures.cmake:
2231 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
2233 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
2234 https://bugs.webkit.org/show_bug.cgi?id=143664
2236 Reviewed by Gyuyoung Kim.
2238 * Source/cmake/OptionsEfl.cmake:
2239 * Source/cmake/OptionsGTK.cmake:
2240 * Source/cmake/WebKitFeatures.cmake:
2241 * Source/cmakeconfig.h.cmake:
2243 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2245 [EFL] Enable Media Source
2246 https://bugs.webkit.org/show_bug.cgi?id=143635
2248 Reviewed by Csaba Osztrogonác.
2250 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
2252 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2254 [CMake] Miscellaneous issues in WebKitFeatures.cmake
2255 https://bugs.webkit.org/show_bug.cgi?id=143636
2257 Reviewed by Martin Robinson.
2259 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
2260 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
2262 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
2263 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
2265 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
2267 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
2269 Fix ENABLE_TOUCH_SLIDER so that it can be used
2273 * Source/cmake/WebKitFeatures.cmake:
2275 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2277 [CMake] Print sorted feature list at the very end of the configure process
2278 https://bugs.webkit.org/show_bug.cgi?id=143596
2280 Reviewed by Martin Robinson.
2282 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
2283 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
2284 and sort the options before printing. Reorder some code so that features still get
2285 propagated to the bindings generators.
2287 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
2289 [CMake] Options should be marked as advanced by default
2290 https://bugs.webkit.org/show_bug.cgi?id=143572
2292 Reviewed by Gyuyoung Kim.
2294 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
2295 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
2296 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
2297 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
2298 option without making it public.
2300 * Source/cmake/WebKitFeatures.cmake:
2302 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2304 [CMake] Remove unnecessary ENABLE_WEBCORE switch
2305 https://bugs.webkit.org/show_bug.cgi?id=143584
2307 Reviewed by Csaba Osztrogonác.
2309 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
2313 * Source/CMakeLists.txt:
2314 * Source/cmake/OptionsGTK.cmake:
2315 * Source/cmake/WebKitFS.cmake:
2317 2015-04-08 Filip Pizlo <fpizlo@apple.com>
2319 Unreviewed, revert accidental commit.
2323 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
2325 Add CMake build system for WinCairo port.
2326 https://bugs.webkit.org/show_bug.cgi?id=115944
2328 Reviewed by Chris Dumez.
2330 * Source/cmake/OptionsWindows.cmake:
2331 * Source/cmake/WebKitMacros.cmake:
2332 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2334 2015-04-06 Alberto Garcia <berto@igalia.com>
2336 [GTK] Fix HPPA build
2337 https://bugs.webkit.org/show_bug.cgi?id=143453
2339 Reviewed by Darin Adler.
2341 Add HPPA to the list of supported CPUs.
2345 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
2347 Unreviewed, kick the GTK bots to fix an incremental build issue.
2349 * Source/cmake/OptionsGTK.cmake:
2351 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
2353 Fix the EFL and GTK build after r182243
2354 https://bugs.webkit.org/show_bug.cgi?id=143361
2356 Reviewed by Csaba Osztrogonác.
2358 * Source/PlatformEfl.cmake: Add a custom command that copies
2359 the InspectorBackendCommands.js file into the proper directory
2360 under DerivedSources/WebInspectorUI/.
2362 2015-04-01 Alex Christensen <achristensen@webkit.org>
2364 Progress towards CMake on Windows and Mac.
2365 https://bugs.webkit.org/show_bug.cgi?id=143293
2367 Reviewed by Filip Pizlo.
2370 Set DERIVED_SOURCES_WTF_DIR for Windows.
2371 * Source/CMakeLists.txt:
2372 Don't compile bmalloc on Windows.
2373 * Source/cmake/OptionsCommon.cmake:
2374 Use the absolute path of the C preprocessor.
2375 * Source/cmake/OptionsWinCairo.cmake:
2376 Added needed definitions.
2377 * Source/cmake/OptionsWindows.cmake:
2378 Set some default values and removed support for old Visual Studio versions before /MP.
2379 * Source/cmake/WebKitFS.cmake:
2380 Make WTF DerivedSources directory.
2381 * Source/cmake/WebKitMacros.cmake:
2382 Added ADD_PRECOMPILED_HEADER macro based on
2383 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
2385 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
2387 Use colored diagnostics when building with cmake + ninja + clang
2388 https://bugs.webkit.org/show_bug.cgi?id=143297
2390 Reviewed by Žan Doberšek.
2392 Because that ninja sets subprocess stdout/stderr to a pipe, clang
2393 disables colored output.
2394 This patch forces clang to use colored diagnostics when we are using
2397 * Source/cmake/OptionsCommon.cmake:
2399 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2401 [CMake] Update old CMakeList.txt in gtest
2402 https://bugs.webkit.org/show_bug.cgi?id=143192
2404 Reviewed by Darin Adler.
2406 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
2407 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
2408 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
2410 * Source/CMakeLists.txt:
2411 * Source/cmake/gtest/CMakeLists.txt: Removed.
2413 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2415 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
2416 https://bugs.webkit.org/show_bug.cgi?id=143138
2418 Reviewed by Csaba Osztrogonác.
2420 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
2421 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
2423 * Source/cmake/OptionsWindows.cmake:
2424 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
2425 * Source/cmake/WebKitMacros.cmake:
2427 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2429 [GStreamer] share GL context in pipeline, part 2
2430 https://bugs.webkit.org/show_bug.cgi?id=143049
2432 Reviewed by Carlos Garcia Campos.
2434 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
2435 OpenGL/ES2 is found and GLX/EGL is found too.
2437 2015-03-26 Alex Christensen <achristensen@webkit.org>
2439 Progress towards CMake on Mac.
2440 https://bugs.webkit.org/show_bug.cgi?id=143112
2442 Reviewed by Chris Dumez.
2444 * Source/cmake/OptionsMac.cmake:
2446 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
2448 [EFL] Add OpenWebRTC in jhbuild
2449 https://bugs.webkit.org/show_bug.cgi?id=142778
2451 Reviewed by Gyuyoung Kim.
2453 Original patch by Philippe Normand <pnormand@igalia.com>
2455 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
2456 mediastream build is enabled.
2458 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
2460 [GTK] Add a configure option to build without Redirected XComposite Window
2461 https://bugs.webkit.org/show_bug.cgi?id=142865
2463 Reviewed by Žan Doberšek.
2465 The Redirected XComposite Window was added to support some
2466 features like GtkOverlay, but in cases where we don't need such
2467 features, it's more efficient to use the XID of the WebKitWebView
2468 window as the native surface handle for the accelerated
2469 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
2470 that is enabled by default for X11 target when OpenGL is enabled.
2472 * Source/cmake/OptionsGTK.cmake:
2474 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
2476 [GTK] Search for the Wayland dependency when enabling Wayland target
2477 https://bugs.webkit.org/show_bug.cgi?id=142876
2479 Reviewed by Carlos Garcia Campos.
2481 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
2482 requirement of either the GTK+ or GDK pkg-config files, so we have to
2483 search for it ourselves when WebKitGTK+ has been configured to support
2484 the Wayland windowing target.
2486 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2488 Unreviewed, kick the GTK bots to regenerate makefile.
2489 https://bugs.webkit.org/show_bug.cgi?id=137394
2491 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
2492 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
2494 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
2496 Unreviewed, kick the GTK bots to regenerate makefile.
2497 https://bugs.webkit.org/show_bug.cgi?id=137394
2499 * Source/cmake/OptionsEfl.cmake:
2501 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
2503 [GTK] Fix inspector userinterface related incremental build issue
2504 https://bugs.webkit.org/show_bug.cgi?id=142849
2506 Reviewed by Carlos Garcia Campos.
2508 * Source/cmake/OptionsGTK.cmake: Revert r181733.
2510 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
2512 Unreviewed, kick the GTK bots to regenerate makefile.
2514 * Source/cmake/OptionsGTK.cmake:
2516 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
2518 [EFL] Expose JavaScript binding interface through ewk_extension
2519 https://bugs.webkit.org/show_bug.cgi?id=142033
2521 Reviewed by Gyuyoung Kim.
2523 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
2525 2015-03-17 Philippe Normand <pnormand@igalia.com>
2527 [GTK] basic OpenWebRTC build support
2528 https://bugs.webkit.org/show_bug.cgi?id=142393
2530 Reviewed by Carlos Garcia Campos.
2532 * Source/cmake/FindOpenWebRTC.cmake: Added.
2533 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
2534 mediastream build is enabled.
2536 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2538 [CMake][EFL] Build test tools only for developer mode
2539 https://bugs.webkit.org/show_bug.cgi?id=142761
2541 Reviewed by Csaba Osztrogonác.
2543 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
2545 * Source/cmake/OptionsEfl.cmake:
2546 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
2547 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
2548 * Source/cmakeconfig.h.cmake:
2550 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
2552 Enable ES6 classes by default
2553 https://bugs.webkit.org/show_bug.cgi?id=142774
2555 Reviewed by Gavin Barraclough.
2557 * Source/cmake/WebKitFeatures.cmake:
2559 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2561 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
2562 https://bugs.webkit.org/show_bug.cgi?id=142722
2564 Reviewed by Csaba Osztrogonác.
2566 Categorize to define cmake variables, to find necessary packages,
2567 use upper case for "glib_conponents" cmake variable name, re-arrange
2568 wrong alphabet sorting, and so on.
2570 * CMakeLists.txt: Remove WinCE port.
2571 * Source/cmake/OptionsEfl.cmake:
2573 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2575 [GStreamer] share GL context in pipeline
2576 https://bugs.webkit.org/show_bug.cgi?id=142693
2578 Reviewed by Philippe Normand.
2580 Add search of gstreamer-gl library in the GStreamer installation. If
2581 it is found, WTF_USE_GSTREAMER_GL macro is defined.
2583 * Source/cmake/FindGStreamer.cmake:
2584 * Source/cmake/OptionsGTK.cmake:
2586 2015-03-13 Alex Christensen <achristensen@webkit.org>
2588 Progress towards CMake on Mac.
2589 https://bugs.webkit.org/show_bug.cgi?id=142680
2591 Reviewed by Gyuyoung Kim.
2594 * Source/PlatformMac.cmake: Added stub.
2595 * Source/cmake/OptionsMac.cmake:
2596 Change defines to get CMake working.
2598 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2600 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
2601 https://bugs.webkit.org/show_bug.cgi?id=126688
2603 Reviewed by Gustavo Noronha Silva.
2605 Add ENABLE_MINIBROWSER option, enabled by default for development
2606 builds and disabled for production builds unless explicilty enabled.
2608 * Source/cmake/OptionsGTK.cmake:
2610 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
2612 [GTK] Do not look for child processes in the UI process binary path
2613 https://bugs.webkit.org/show_bug.cgi?id=135752
2615 Reviewed by Gustavo Noronha Silva.
2617 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
2618 build for development builds.
2620 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
2622 [GTK] Add a configure option to build with OpenGL ES 2
2623 https://bugs.webkit.org/show_bug.cgi?id=142498
2625 Reviewed by Martin Robinson.
2627 Add ENABLE_GLES2 option. It's disabled by default, but if passed
2628 GLES2 is required and OpenGL is not even searched. Otherwise we
2629 search for OpenGL as usual, using it only if present.
2631 * Source/cmake/OptionsGTK.cmake:
2633 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
2635 [cmake] Handle unused parameter warnings as build errors except in WebKit2
2636 https://bugs.webkit.org/show_bug.cgi?id=142338
2638 Reviewed by Gyuyoung Kim.
2640 * Source/cmake/WebKitHelpers.cmake:
2642 2015-03-03 Daniel Bates <dabates@apple.com>
2644 Convert ManualTests/svg-tooltip.svg to a DRT test
2645 https://bugs.webkit.org/show_bug.cgi?id=140480
2647 Reviewed by Alex Christensen.
2649 * ManualTests/svg-tooltip.svg: Removed.
2651 2015-03-02 Debarshi Ray <debarshir@gnome.org>
2653 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
2654 https://bugs.webkit.org/show_bug.cgi?id=142165
2656 Reviewed by Carlos Garcia Campos.
2658 * Source/cmake/gtksymbols.filter:
2660 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
2662 [EFL] Remove unnecessary comment after r179110
2663 https://bugs.webkit.org/show_bug.cgi?id=142042
2665 Reviewed by Gyuyoung Kim.
2667 * Source/cmake/OptionsEfl.cmake:
2669 2015-02-23 Tomas Popela <tpopela@redhat.com>
2671 [GTK] Fails to compile with cmake 3.2.x
2672 https://bugs.webkit.org/show_bug.cgi?id=141796
2674 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
2675 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
2676 added and the build will fail.
2678 Reviewed by Martin Robinson.
2680 * Source/cmake/OptionsGTK.cmake:
2682 2015-02-20 Alexey Proskuryakov <ap@apple.com>
2684 Remove svn:keywords property.
2686 As far as I can tell, the property had no effect on any of these files, but also,
2687 when it has effect it's likely harmful.
2689 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
2690 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
2691 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
2692 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
2693 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
2694 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
2695 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
2696 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
2697 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
2698 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
2699 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
2700 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
2701 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
2702 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
2704 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2706 [CMAKE] Remove CMakeLists.txt in WK1 port
2707 https://bugs.webkit.org/show_bug.cgi?id=141617
2709 Reviewed by Anders Carlsson.
2711 Nobody uses CMake in WK1 port. Remove it.
2715 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
2717 Unreviewed, remove empty directories.
2719 * ManualTests/qt: Removed.
2721 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
2723 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
2724 https://bugs.webkit.org/show_bug.cgi?id=141481
2726 Reviewed by Csaba Osztrogonác.
2728 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
2730 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2732 [EFL][GTK] Use bmalloc instead of tcmalloc
2733 https://bugs.webkit.org/show_bug.cgi?id=140162
2735 Reviewed by Carlos Garcia Campos.
2737 Add bmalloc directory to build list.
2739 * CMakeLists.txt: Define BMALLOC_DIR directory.
2740 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
2742 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
2744 [GTK] Add default color chooser implementation using GtkColorChooserDialog
2745 https://bugs.webkit.org/show_bug.cgi?id=141392
2747 Reviewed by Gustavo Noronha Silva.
2749 Enable INPUT_TYPE_COLOR by default for GTK+ port.
2751 * Source/cmake/OptionsGTK.cmake:
2753 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
2755 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
2756 https://bugs.webkit.org/show_bug.cgi?id=141328
2758 Reviewed by Darin Adler.
2760 Added as manual test because it involves a huge grid allocation
2761 which is very slow on Debug bots, the only ones capable to trigger
2764 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
2766 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
2768 [Streams API] Implement a barebone ReadableStream interface
2769 https://bugs.webkit.org/show_bug.cgi?id=141045
2771 Reviewed by Benjamin Poulain.
2773 * Source/cmake/WebKitFeatures.cmake:
2774 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
2776 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2778 Revert accidental change in r179490.
2782 2015-02-02 Filip Pizlo <fpizlo@apple.com>
2784 Unreviewed, revert accidental change to Makefile.shared in r179478
2788 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
2790 [CMake] Minimum python version should be 2.7.
2791 https://bugs.webkit.org/show_bug.cgi?id=140997
2793 Reviewed by Csaba Osztrogonác.
2797 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
2799 Apply feTurbulence spec change to fix zero length vector generation
2800 https://bugs.webkit.org/show_bug.cgi?id=140812
2802 Reviewed by Darin Adler.
2804 Recently a bug with the turbulence algorithm was corrected in the
2805 Filter Effects specification.
2806 For some seed values this bug allowed zero length vectors to be generated.
2807 This resulted in large solid color squares being present in the generated image.
2808 The feTurbulence algorithm was updated to reject zero length vectors. This patch
2809 applies that change in WebCore.
2811 Test: svg/filters/feTurbulence_bad_seeds.html
2813 * platform/graphics/filters/FETurbulence.cpp:
2814 (WebCore::FETurbulence::initPaint):
2815 Added rejection sampling during vector generation to avoid zero length vectors.
2817 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2819 [cmake] Remove compiler version calculate cruft
2820 https://bugs.webkit.org/show_bug.cgi?id=140885
2822 Reviewed by Darin Adler.
2824 * Source/cmake/WebKitHelpers.cmake:
2826 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
2828 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
2829 https://bugs.webkit.org/show_bug.cgi?id=140886
2831 Reviewed by Žan Doberšek.
2833 * Source/cmake/WebKitHelpers.cmake:
2835 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
2837 [GTK] gtkdoc does not appear in DevHelp
2838 https://bugs.webkit.org/show_bug.cgi?id=139369
2840 Reviewed by Philippe Normand.
2842 Expect the gtkdoc to be generated in folders named with the API version.
2844 * Source/PlatformGTK.cmake:
2846 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
2848 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
2849 https://bugs.webkit.org/show_bug.cgi?id=140609
2851 Reviewed by Csaba Osztrogonác.
2853 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
2854 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
2855 compilation flags. Those were added after the jsCStack branch merge, but
2856 can now be removed since the -ftree-dce issues were fixed in GCC, and
2857 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
2859 * Source/cmake/OptionsEfl.cmake:
2860 * Source/cmake/OptionsGTK.cmake:
2862 2015-01-26 Commit Queue <commit-queue@webkit.org>
2864 Unreviewed, rolling out r179107.
2865 https://bugs.webkit.org/show_bug.cgi?id=140880
2867 The GCC in the bots doesn't support the AsyncTask
2868 implementation (Requested by KaL on #webkit).
2872 "[GTK] Enable IndexedDB"
2873 https://bugs.webkit.org/show_bug.cgi?id=98932
2874 http://trac.webkit.org/changeset/179107
2876 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
2878 [GTK] Enable IndexedDB
2879 https://bugs.webkit.org/show_bug.cgi?id=98932
2881 Reviewed by Žan Doberšek.
2883 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
2884 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
2886 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
2888 [GTK] Add initial database process support
2889 https://bugs.webkit.org/show_bug.cgi?id=139491
2891 Reviewed by Sergio Villar Senin.
2893 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
2895 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
2897 Add a build flag for ES6 class syntax
2898 https://bugs.webkit.org/show_bug.cgi?id=140760
2900 Reviewed by Michael Saboff.
2902 * Source/cmake/WebKitFeatures.cmake:
2903 * Source/cmakeconfig.h.cmake:
2905 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2907 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
2908 https://bugs.webkit.org/show_bug.cgi?id=140049
2910 Reviewed by Gyuyoung Kim.
2912 * Source/cmake/OptionsCommon.cmake:
2914 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
2916 Remove ENABLE(INSPECTOR) ifdef guards
2917 https://bugs.webkit.org/show_bug.cgi?id=140668
2919 Reviewed by Darin Adler.
2921 * Source/PlatformEfl.cmake:
2922 * Source/cmake/OptionsEfl.cmake:
2923 * Source/cmake/OptionsGTK.cmake:
2924 * Source/cmake/OptionsMac.cmake:
2925 * Source/cmake/WebKitFeatures.cmake:
2926 * Source/cmakeconfig.h.cmake:
2928 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
2930 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
2932 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2934 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2936 [CMAKE] Fix cmake warning
2937 https://bugs.webkit.org/show_bug.cgi?id=140497
2939 Reviewed by Gustavo Noronha Silva.
2941 r173155 already tried to fix cmake warning though, the warning is still exist.
2942 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
2943 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
2944 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
2945 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
2946 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
2950 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
2952 [GTK] Generate the make dist manifest from a CMake template file
2953 https://bugs.webkit.org/show_bug.cgi?id=139387
2955 Reviewed by Martin Robinson.
2957 Generate manifest.txt from manifest.txt.in. Only expose the dist and
2958 distcheck targets for developer builds, as they won't work when
2959 building from a tarball because the manifest is not distributed.
2961 * Source/PlatformGTK.cmake:
2963 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
2965 Remove ENABLE(SQL_DATABASE) guards
2966 https://bugs.webkit.org/show_bug.cgi?id=140434
2968 Reviewed by Darin Adler.
2970 * Source/cmake/OptionsMac.cmake:
2971 * Source/cmake/WebKitFeatures.cmake:
2972 * Source/cmakeconfig.h.cmake:
2974 2015-01-11 Sam Weinig <sam@webkit.org>
2976 Remove support for SharedWorkers
2977 https://bugs.webkit.org/show_bug.cgi?id=140344
2979 Reviewed by Anders Carlsson.
2981 * Source/cmake/OptionsEfl.cmake:
2982 * Source/cmake/OptionsGTK.cmake:
2983 * Source/cmake/OptionsMac.cmake:
2984 * Source/cmake/WebKitFeatures.cmake:
2985 * Source/cmakeconfig.h.cmake:
2987 2015-01-10 Dan Bernstein <mitz@apple.com>
2989 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
2990 https://bugs.webkit.org/show_bug.cgi?id=140339
2992 Reviewed by Mark Rowe.
2994 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
2995 prevents unnecessary rebuilding due to PATH differences.
2997 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
2999 [GTK][ThreadedCompositor] Add support for threaded compositor.
3000 https://bugs.webkit.org/show_bug.cgi?id=118265
3002 Reviewed by Martin Robinson.
3004 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
3005 autotools build systems. The feature is disabled by default.
3006 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
3007 from the feature flags.
3009 * Source/cmake/OptionsEfl.cmake:
3010 * Source/cmake/OptionsGTK.cmake:
3011 * Source/cmake/WebKitFeatures.cmake:
3012 * Source/cmakeconfig.h.cmake:
3014 2014-12-23 Alexey Proskuryakov <ap@apple.com>
3016 Simplify building with ASan
3017 https://bugs.webkit.org/show_bug.cgi?id=139916
3019 Reviewed by Mark Rowe.
3021 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
3023 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
3025 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
3027 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3029 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
3031 Null dereference performing a "TapAndAHalf" gesture in Google search field
3033 <https://bugs.webkit.org/show_bug.cgi?id=139506>
3034 <rdar://problem/19028828>
3036 Reviewed by Darin Adler.
3038 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
3040 2014-12-10 Dean Jackson <dino@apple.com>
3042 Blur filter performance test doesn't provide results
3043 https://bugs.webkit.org/show_bug.cgi?id=139462
3045 Reviewed by Sam Weinig.
3047 This can't currently work under our performance test
3048 infrastructure. Move it to a manual test to avoid
3049 putting FAILures into the results.
3051 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
3053 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3055 [GTK][WK2] Add HTML5 Notifications support
3056 https://bugs.webkit.org/show_bug.cgi?id=61140
3058 Reviewed by Carlos Garcia Campos.
3060 * Source/cmake/FindLibNotify.cmake: Added.
3061 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
3062 libnotify and use it for a default implementation when found.
3064 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
3066 REGRESSION(r155906): Page content disappears on Tuaw article after loading
3067 https://bugs.webkit.org/show_bug.cgi?id=138100
3069 Reviewed by Simon Fraser.
3071 DRT causes an extra paint which makes it impossible to test this with
3074 * ManualTests/float-layer-not-painting.html: Added.
3076 2014-12-07 Alberto Garcia <berto@igalia.com>
3078 [GTK] WebKit has a new required dependency on GnuTLS
3079 https://bugs.webkit.org/show_bug.cgi?id=136158
3081 Reviewed by Martin Robinson.
3083 Detect if GnuTLS is installed and enable or disable subtle crypto
3084 support accordingly.
3086 * Source/cmake/OptionsGTK.cmake:
3088 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
3090 [GTK] Missing API detected in GObject DOM bindings after r176630
3091 https://bugs.webkit.org/show_bug.cgi?id=139201
3093 Reviewed by Gustavo Noronha Silva.
3095 Change GENERATE_BINDINGS macro to receive a list of optional
3096 additional dependencies, so that we can add more dependecies
3097 without having to change the macro.
3099 * Source/cmake/WebKitMacros.cmake:
3101 2014-12-05 Simon Fraser <simon.fraser@apple.com>
3103 Programmatic scrolling and content changes are not always synchronized
3104 https://bugs.webkit.org/show_bug.cgi?id=139245
3105 rdar://problem/18833612
3107 Reviewed by Anders Carlsson.
3109 Manual test that tries to sync layout with programmatic scrolling.
3111 * ManualTests/programmatic-scroll-flicker.html: Added.
3113 2014-12-04 Alberto Garcia <berto@igalia.com>
3115 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
3116 https://bugs.webkit.org/show_bug.cgi?id=136576
3118 Reviewed by Carlos Garcia Campos.
3120 CMake should complain if Accelerated 2D Canvas is explicitly
3121 enabled but cairo-gl is not found.
3123 * Source/cmake/OptionsGTK.cmake:
3125 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3127 [EFL] Add subtle crypto to the build system
3128 https://bugs.webkit.org/show_bug.cgi?id=138612
3130 Reviewed by Csaba Osztrogonác.
3132 * Source/cmake/OptionsEfl.cmake:
3134 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3136 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
3137 https://bugs.webkit.org/show_bug.cgi?id=139085
3139 Reviewed by Andreas Kling.
3141 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
3142 * Source/cmake/WebKitFeatures.cmake: ditto.
3143 * Source/cmakeconfig.h.cmake: ditto.
3145 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
3147 [EFL] Drop support for the EFL 1.7
3148 https://bugs.webkit.org/show_bug.cgi?id=139114
3150 Reviewed by Gyuyoung Kim.
3152 * Source/cmake/EFLHelpers.cmake: Removed.
3153 * Source/cmake/FindEcore.cmake: Removed.
3154 * Source/cmake/FindEdje.cmake: Removed.
3155 * Source/cmake/FindEet.cmake: Removed.
3156 * Source/cmake/FindEeze.cmake: Removed.
3157 * Source/cmake/FindEfreet.cmake: Removed.
3158 * Source/cmake/FindEina.cmake: Removed.
3159 * Source/cmake/FindElementary.cmake: Removed.
3160 * Source/cmake/FindEvas.cmake: Removed.
3161 * Source/cmake/OptionsEfl.cmake:
3163 2014-11-28 Philippe Normand <pnormand@igalia.com>
3165 [CMake] Build failure against GStreamer git master
3166 https://bugs.webkit.org/show_bug.cgi?id=138872
3168 Reviewed by Csaba Osztrogon.
3170 * Source/cmake/FindGStreamer.cmake: Simplified the
3171 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
3172 headers lookup, there's no need to do this manually. Also
3173 explicitely check the version specified in GStreamer_FIND_VERSION.
3175 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
3177 [EFL] Remove E_Dbus dependency
3178 https://bugs.webkit.org/show_bug.cgi?id=136355
3180 Reviewed by Gyuyoung Kim.
3182 * Source/cmake/FindE_DBus.cmake: Removed.
3183 * Source/cmake/OptionsEfl.cmake:
3185 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
3187 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
3189 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3191 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
3193 [CMake] Use ld.gold if it is available to speedup builds
3194 https://bugs.webkit.org/show_bug.cgi?id=137953
3196 Reviewed by Carlos Garcia Campos.
3198 * Source/cmake/OptionsCommon.cmake:
3200 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
3202 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
3203 https://bugs.webkit.org/show_bug.cgi?id=138840
3205 Reviewed by Csaba Osztrogonác.
3207 * Source/cmake/OptionsCommon.cmake:
3209 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
3211 Remove Source/Platform cruft
3212 https://bugs.webkit.org/show_bug.cgi?id=138658
3214 Reviewed by Anders Carlsson.
3217 * Source/Platform: Removed.
3219 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
3221 Enable Cortex-A53-specific code paths by default if core is detected.
3222 https://bugs.webkit.org/show_bug.cgi?id=138499
3224 Reviewed by Csaba Osztrogonác.
3226 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
3227 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
3230 Since on ARM64/Linux the part number that cpuinfo reports depends on
3231 the core the query is run on, the check is bound to and executed on the
3232 available cores one by one.
3234 * Source/cmake/OptionsCommon.cmake:
3236 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3238 [EFL] Remove unnecessary version check from OptionsEfl.cmake
3239 https://bugs.webkit.org/show_bug.cgi?id=138498
3241 Reviewed by Csaba Osztrogonác.
3243 * Source/cmake/OptionsEfl.cmake:
3245 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3247 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
3248 https://bugs.webkit.org/show_bug.cgi?id=138465
3250 Reviewed by Gyuyoung Kim.
3252 * Source/cmake/OptionsEfl.cmake:
3254 2014-11-03 Dean Jackson <dino@apple.com>
3256 Add ENABLE_FILTERS_LEVEL_2 feature guard.
3257 https://bugs.webkit.org/show_bug.cgi?id=138362
3259 Reviewed by Tim Horton.
3261 Add a new feature define for Level 2 of CSS Filters.
3262 http://dev.w3.org/fxtf/filters-2/
3264 * Source/cmake/OptionsEfl.cmake:
3265 * Source/cmake/OptionsGTK.cmake:
3266 * Source/cmake/OptionsMac.cmake:
3267 * Source/cmake/WebKitFeatures.cmake:
3268 * Source/cmakeconfig.h.cmake:
3270 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
3272 Workaround for Cortex-A53 erratum 835769
3273 https://bugs.webkit.org/show_bug.cgi?id=138315
3275 Reviewed by Filip Pizlo.
3277 This patch introduces CMake variable and preprocessor macro
3278 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
3279 code paths, if set true.
3281 * Source/cmake/OptionsCommon.cmake:
3282 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
3284 * Source/cmakeconfig.h.cmake:
3285 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
3287 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
3289 [GTK] Fix the build of FTL JIT
3290 https://bugs.webkit.org/show_bug.cgi?id=138298
3292 Reviewed by Carlos Garcia Campos.
3294 * Source/cmake/OptionsGTK.cmake:
3295 Remove the need for the LIBCXXABI package.
3297 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
3299 REGRESSION(CMake): Make it possible to build without introspection
3300 https://bugs.webkit.org/show_bug.cgi?id=138006
3302 Reviewed by Philippe Normand.
3304 Add ENABLE_INTROSPECTION option.
3306 * Source/PlatformGTK.cmake: Dot not add gir global target if
3307 introspection is disabled.
3308 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
3309 introspection is disabled.
3311 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
3313 [GTK] Support script message handlers WebKitUserContentManager
3314 https://bugs.webkit.org/show_bug.cgi?id=133730
3316 Reviewed by Carlos Garcia Campos.
3318 Support user script message handlers in WebKitUserContentManager.
3319 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
3320 an option is added to the CMake build files. The option is disabled
3321 globally by default, and the WebKitGTK port enables it. On the API
3322 level, two new methods to register and unregister names are provided
3323 in the "window.webkit" namespace, and on message reception the
3324 "WebKitUserContentManager::script-message-received" signal is
3325 emitted, using the registered names as signal detail.
3327 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
3328 ENABLE_USER_MESSAGE_HANDLERS feature by default.
3329 * Source/cmake/WebKitFeatures.cmake: Add feature description for
3330 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
3332 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
3334 [GTK] Bump libsoup's minimum version to 2.42.0.
3335 https://bugs.webkit.org/show_bug.cgi?id=138086
3337 Reviewed by Martin Robinson.
3339 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
3340 soup-version.h header was added to soup.h in 2.41.4, which then becomes
3341 the minimum version required to build the port these days.
3343 In addition, since the autotools build system required 2.42.0 before
3344 being retired, require the same version here. Version 2.42.0 was also
3346 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
3348 * Source/cmake/OptionsGTK.cmake:
3350 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3352 [EFL] Remove unnecessary defines from OptionsEfl.cmake
3353 https://bugs.webkit.org/show_bug.cgi?id=138132
3355 Reviewed by Csaba Osztrogonác.
3357 * Source/cmake/OptionsEfl.cmake:
3359 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
3361 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
3363 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3365 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
3367 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
3368 https://bugs.webkit.org/show_bug.cgi?id=137946
3370 Reviewed by Gyuyoung Kim.
3372 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
3374 * Source/cmake/OptionsEfl.cmake:
3376 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3378 Fix FTL Native Inlining for EFL
3379 https://bugs.webkit.org/show_bug.cgi?id=137774
3381 Reviewed by Michael Saboff.
3383 Updated CMake for FTL Native Inlining.
3386 * Source/cmake/FindClang.cmake: Added.
3387 * Source/cmake/OptionsEfl.cmake:
3388 * Source/cmakeconfig.h.cmake:
3390 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
3392 Web Inspector: Generate all Inspector domains together in JavaScriptCore
3393 https://bugs.webkit.org/show_bug.cgi?id=137748
3395 Reviewed by Brian Burg.
3397 * Source/PlatformEfl.cmake:
3399 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
3401 [GTK] Add initial gestures support
3402 https://bugs.webkit.org/show_bug.cgi?id=137812
3404 Reviewed by Sergio Villar Senin.
3406 Check if the GTK+ version supports gestures or not.
3408 * Source/cmake/FindGTK3.cmake:
3409 * Source/cmake/OptionsGTK.cmake:
3411 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
3413 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
3414 https://bugs.webkit.org/show_bug.cgi?id=137781
3416 Reviewed by Martin Robinson.
3418 We used to enable smooth scrolling unconditionally in autotools
3419 (via WebKitFeatures.m4), but since the switch to CMake it's
3420 unconditionally disabled, so changing the setting doesn't have any
3423 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
3425 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
3427 Removing CUSTOM_PROTOCOLS guard
3428 https://bugs.webkit.org/show_bug.cgi?id=137741
3430 Reviewed by Benjamin Poulain.
3432 * Source/cmake/OptionsEfl.cmake:
3434 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
3436 [EFL] Enable WebP support.
3437 https://bugs.webkit.org/show_bug.cgi?id=136156
3439 Reviewed by Gyuyoung Kim.
3441 Add WebP package finding rule.
3443 * Source/cmake/OptionsEfl.cmake:
3445 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
3447 [EFL] Enable custom URI schemes with CustomProtocols
3448 https://bugs.webkit.org/show_bug.cgi?id=128177
3450 Reviewed by Gyuyoung Kim.
3452 Fixing ewk_context_url_scheme_register() ewebkit2 API
3453 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
3455 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
3457 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
3459 Bump version to 2.7.0
3460 https://bugs.webkit.org/show_bug.cgi?id=137301
3462 Rubber-stamped by Carlos Garcia Campos.
3464 * Source/cmake/OptionsGTK.cmake: Bump version numbers
3466 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3468 [EFL] Rename TEST_THEME_DIR macro
3469 https://bugs.webkit.org/show_bug.cgi?id=137244
3471 Reviewed by Csaba Osztrogonác.
3473 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
3475 2014-09-27 Dan Bernstein <mitz@apple.com>
3477 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
3478 https://bugs.webkit.org/show_bug.cgi?id=137053
3480 Reviewed by Mark Rowe.
3482 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3483 In the build pre-action, pass the --wksi and --llvm options to
3484 copy-webkitlibraries-to-product-directory.
3485 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
3487 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
3489 [GTK] Enable CSS_IMAGE_SET in production builds
3490 https://bugs.webkit.org/show_bug.cgi?id=137142
3492 Reviewed by Alejandro G. Castro.
3494 This is required by the inspector to show some of the icons that
3495 has a HiDPI variant.
3497 * Source/cmake/OptionsGTK.cmake:
3499 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
3501 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
3502 https://bugs.webkit.org/show_bug.cgi?id=136377
3504 Reviewed by Philippe Normand.
3506 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
3507 for CMake versions less than 3.
3509 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
3511 Remove WinCE port from trunk
3512 https://bugs.webkit.org/show_bug.cgi?id=136951
3514 Reviewed by Alex Christensen.
3516 * Source/cmake/OptionsWinCE.cmake: Removed.
3517 * Source/cmake/WebKitPackaging.cmake:
3519 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
3521 [EFL][GTK] Remove WebKit1 related codes
3522 https://bugs.webkit.org/show_bug.cgi?id=136853
3524 Reviewed by Csaba Osztrogonác.
3526 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
3529 * Source/PlatformGTK.cmake:
3531 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3534 https://bugs.webkit.org/show_bug.cgi?id=136820
3536 Reviewed by Csaba Osztrogonác.
3538 * Source/cmake/FindICU.cmake:
3540 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
3542 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
3543 https://bugs.webkit.org/show_bug.cgi?id=136814
3545 Reviewed by Philippe Normand.
3547 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
3548 We bundle the wayland-egl dependency with wayland-client and wayland-server
3549 and store the resulting variables with the WAYLAND_ prefix. Because of this
3550 this line wasn't exporting anything useful.
3552 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
3554 URTBF after r173574.
3556 * Source/cmake/WebKitMacros.cmake:
3558 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
3560 [JavaScriptCore] Fix FTL on platform EFL.
3561 https://bugs.webkit.org/show_bug.cgi?id=133571
3563 Reviewed by Filip Pizlo.
3567 * Source/cmake/FindLIBCXXABI.cmake: Removed.
3568 * Source/cmake/OptionsEfl.cmake:
3570 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3573 https://bugs.webkit.org/show_bug.cgi?id=136571
3575 Reviewed by Darin Adler.
3577 * Source/cmake/OptionsEfl.cmake:
3578 * Source/cmake/OptionsGTK.cmake:
3579 * Source/cmake/OptionsMac.cmake:
3580 * Source/cmake/WebKitFeatures.cmake:
3581 * Source/cmakeconfig.h.cmake:
3583 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3585 Remove CSS_FILTERS flag
3586 https://bugs.webkit.org/show_bug.cgi?id=136529
3588 Reviewed by Dirk Schulze.
3590 * Source/cmake/OptionsEfl.cmake:
3591 * Source/cmake/OptionsGTK.cmake:
3592 * Source/cmake/OptionsMac.cmake:
3593 * Source/cmake/WebKitFeatures.cmake:
3594 * Source/cmakeconfig.h.cmake:
3596 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3598 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
3599 https://bugs.webkit.org/show_bug.cgi?id=136194
3601 Reviewed by Csaba Osztrogonác.
3603 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
3607 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3609 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
3610 https://bugs.webkit.org/show_bug.cgi?id=135560
3612 Reviewed by Gyuyoung Kim.
3614 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
3616 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
3618 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
3619 https://bugs.webkit.org/show_bug.cgi?id=136343
3621 Reviewed by David Kilzer.
3623 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
3625 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3626 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3628 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
3630 [EFL] Share fast/speechsynthesis/ with other ports
3631 https://bugs.webkit.org/show_bug.cgi?id=136224
3633 Reviewed by Chris Fleizach.
3635 Enable WebSpeech for EFL.
3637 * Source/cmake/OptionsEfl.cmake:
3639 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
3641 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
3642 https://bugs.webkit.org/show_bug.cgi?id=136127
3644 Reviewed by Gyuyoung Kim.
3646 Add build support for espeak.
3648 * Source/cmake/FindEspeak.cmake: Added.
3649 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
3651 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
3653 [EFL] Build break using clang
3654 https://bugs.webkit.org/show_bug.cgi?id=136245
3656 Reviewed by Gyuyoung Kim.
3658 * Source/cmake/OptionsEfl.cmake:
3659 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
3660 Some warnings are from system libraries.
3662 2014-08-25 Alberto Garcia <berto@igalia.com>
3664 [GTK] Unify webkitgtk and webkit2gtk directories
3665 https://bugs.webkit.org/show_bug.cgi?id=136209
3667 Reviewed by Carlos Garcia Campos.
3669 Use webkit2gtk-X.X both for the process binaries and the injected
3672 * Source/cmake/OptionsGTK.cmake:
3674 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3676 [EFL] Move Efl specific code from Source/CMakeLists.txt
3677 https://bugs.webkit.org/show_bug.cgi?id=136206
3679 Reviewed by Gyuyoung Kim.
3681 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
3682 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
3684 * Source/CMakeLists.txt:
3685 * Source/cmake/OptionsEfl.cmake:
3687 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
3689 [EFL] Introduce DEVELOPER_MODE
3690 https://bugs.webkit.org/show_bug.cgi?id=135884
3692 Reviewed by Gyuyoung Kim.
3694 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
3695 instead of SHARED_CORE.
3696 SHARED_CORE can reduce link time and memory consumption but it is slightly different
3697 from release binary.
3699 * Source/cmake/OptionsEfl.cmake:
3700 * Source/cmake/WebKitHelpers.cmake:
3701 Moved fvisibility=hidden to OptionsEfl.cmake
3703 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
3705 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
3706 https://bugs.webkit.org/show_bug.cgi?id=136110
3708 Reviewed by Gyuyoung Kim.
3710 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
3712 * Source/cmake/OptionsEfl.cmake:
3714 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3716 [EFL] Apply eflsymbols.filter to WebKit2
3717 https://bugs.webkit.org/show_bug.cgi?id=136148
3719 Reviewed by Csaba Osztrogonác.
3721 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
3722 in the eflsymbols.filter.
3724 * Source/cmake/OptionsEfl.cmake:
3725 * Source/cmake/eflsymbols.filter:
3727 2014-08-21 Zalan Bujtas <zalan@apple.com>
3729 Enable SATURATED_LAYOUT_ARITHMETIC.
3730 https://bugs.webkit.org/show_bug.cgi?id=136106
3732 Reviewed by Simon Fraser.
3734 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
3735 (No measurable performance regression on Mac.)
3737 * Source/cmake/OptionsMac.cmake:
3738 * Source/cmake/WebKitFeatures.cmake:
3739 * Source/cmakeconfig.h.cmake:
3741 2014-08-19 Zalan Bujtas <zalan@apple.com>
3743 Remove ENABLE(SUBPIXEL_LAYOUT).
3744 https://bugs.webkit.org/show_bug.cgi?id=136077
3746 Reviewed by Simon Fraser.
3748 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
3750 * Source/cmake/OptionsEfl.cmake:
3751 * Source/cmake/OptionsGTK.cmake:
3752 * Source/cmake/OptionsMac.cmake:
3753 * Source/cmake/WebKitFeatures.cmake:
3754 * Source/cmakeconfig.h.cmake:
3756 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
3758 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
3759 https://bugs.webkit.org/show_bug.cgi?id=135980
3761 Reviewed by Martin Robinson.
3763 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
3764 overrides any other disabled optimization that was prepended to these
3765 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
3766 lists first in the final list of compilation flags.
3768 To avoid -On re-enabling optimizations that we'd like to keep disabled,
3769 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
3771 * Source/cmake/OptionsCommon.cmake:
3772 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
3773 * Source/cmake/OptionsGTK.cmake:
3775 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3777 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
3779 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3781 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
3783 [GTK] Disable memory sampler on non-Linux system
3784 https://bugs.webkit.org/show_bug.cgi?id=134483
3786 Reviewed by Philippe Normand.
3788 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
3789 Linux because it uses many Linux-specific features, so we should disable
3790 memory sampler on other systems by default.
3792 * Source/cmake/OptionsGTK.cmake:
3794 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
3796 [GTK] HTML API documentation should also be installed versioned
3797 https://bugs.webkit.org/show_bug.cgi?id=135970
3799 Reviewed by Philippe Normand.
3801 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
3804 2014-08-14 Tomas Popela <tpopela@redhat.com>
3806 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
3807 https://bugs.webkit.org/show_bug.cgi?id=135937
3809 Reviewed by Carlos Garcia Campos.
3813 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3815 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
3816 https://bugs.webkit.org/show_bug.cgi?id=135934
3818 Reviewed by Gustavo Noronha Silva.
3820 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
3821 The gir files should installed in $datadir/gir-1.0/ together with all other
3822 gir files. We don't need to install introspection files in a versioned
3823 directory because their filenames already contain the binary version. But before
3824 r171598, the files were only installed to the right directory if the
3825 gobject-instrospection pkg-config file was in the same prefix than the one we
3826 wanted to install, because the gir and typelibs directories were extracted from
3827 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
3828 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
3829 like we do in the autotools build.
3831 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
3832 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3833 * Source/cmake/OptionsGTK.cmake: Define
3834 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
3836 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
3838 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
3839 https://bugs.webkit.org/show_bug.cgi?id=135836
3841 Reviewed by Philippe Normand.
3843 * Source/PlatformGTK.cmake: Add install command to also install
3844 the GObject DOM bindings API docs.
3846 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
3848 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
3849 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
3850 re-set CMAKE_C_FLAGS with the new string. The two flags should really
3851 be appended to CMAKE_C_FLAGS and the same variable re-set with the
3854 * Source/cmake/OptionsCommon.cmake:
3856 2014-08-13 Alex Christensen <achristensen@webkit.org>
3858 Progress towards CMake on Mac.
3859 https://bugs.webkit.org/show_bug.cgi?id=135819