1 2015-04-29 Martin Robinson <mrobinson@igalia.com>
3 [GTK] Add support for automatic hyphenation
4 https://bugs.webkit.org/show_bug.cgi?id=44478
6 Reviewed by Carlos Garcia Campos.
8 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
9 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
10 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
12 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
14 Failure when building WebKit for appletvsimulator.
15 https://bugs.webkit.org/show_bug.cgi?id=144356
17 Reviewed by Alexey Proskuryakov.
19 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
20 make TVOS and WatchOS behave correctly.
24 2015-04-29 Martin Robinson <mrobinson@igalia.com>
26 [CMake] [GTK] Organize and clean up unused CMake variables
27 https://bugs.webkit.org/show_bug.cgi?id=144364
29 Reviewed by Gyuyoung Kim.
31 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
32 specific to certain projects into their PlatformGTK.cmake files.
34 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
36 [EFL] Build failure to find gio-unix
37 https://bugs.webkit.org/show_bug.cgi?id=144083
39 Reviewed by Gyuyoung Kim.
41 Original patch by Doug Newgard <scimma22@outlook.com>
43 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
45 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
47 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
48 https://bugs.webkit.org/show_bug.cgi?id=143001
50 Reviewed by Gyuyoung Kim.
52 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
53 * Source/cmake/OptionsGTK.cmake: Ditto.
55 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
57 Unreviewed, fix typo in previous commit
59 libsecretr -> libsecret in the error message.
61 * Source/cmake/OptionsGTK.cmake:
63 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
65 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
66 https://bugs.webkit.org/show_bug.cgi?id=143546
68 Reviewed by Martin Robinson.
70 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
71 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
72 default. Fail the build with an informative error message if an optional dependency required
73 for an enabled feature is not present. Perform find_package commands only when necessary.
74 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
77 * Source/cmake/OptionsGTK.cmake:
79 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
81 [GTK] Make all options actually options
82 https://bugs.webkit.org/show_bug.cgi?id=144106
84 Reviewed by Martin Robinson.
86 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
87 ENABLE_WAYLAND_TARGET.
89 * Source/cmake/OptionsGTK.cmake:
91 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
93 Unreviewed, fix GTK build after r183452
95 * Source/cmake/OptionsGTK.cmake:
97 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
99 [GTK] Add one single option to control all OpenGL-related options
100 https://bugs.webkit.org/show_bug.cgi?id=144105
102 Reviewed by Martin Robinson.
104 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
105 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
106 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
107 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
108 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
111 * Source/cmake/OptionsGTK.cmake:
113 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
115 [GTK] ENABLE_SMOOTH_SCROLLING should be private
116 https://bugs.webkit.org/show_bug.cgi?id=144306
118 Reviewed by Martin Robinson.
120 Make ENABLE_SMOOTH_SCROLLING private instead of public.
122 * Source/cmake/OptionsGTK.cmake:
124 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
126 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
127 https://bugs.webkit.org/show_bug.cgi?id=144193
129 Reviewed by Darin Adler.
131 * Source/cmake/OptionsEfl.cmake:
132 * Source/cmake/OptionsGTK.cmake:
133 * Source/cmake/OptionsWinCairo.cmake:
134 * Source/cmake/WebKitFeatures.cmake:
136 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
138 [CMake] Should be possible for an option to conflict with other options
139 https://bugs.webkit.org/show_bug.cgi?id=143956
141 Reviewed by Martin Robinson.
143 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
145 * Source/cmake/WebKitFeatures.cmake:
147 2015-04-22 Martin Robinson <mrobinson@igalia.com>
149 [CMake] Autogenerate cmakeconfig.h.cmake
150 https://bugs.webkit.org/show_bug.cgi?id=143997
152 Reviewed by Csaba Osztrogonác.
154 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
155 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
156 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
157 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
158 Do some other miscellaneous related cleanup.
159 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
160 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
161 build exposed variables. Add a macro to generate a configuration from them.
162 * Source/cmakeconfig.h.cmake: Removed.
164 2015-04-24 Philippe Normand <pnormand@igalia.com>
166 [JHBuild] Move to upstream OpenWebRTC
167 https://bugs.webkit.org/show_bug.cgi?id=144145
169 Reviewed by Carlos Garcia Campos.
171 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
174 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
176 [ES6] Implement ES6 template literals
177 https://bugs.webkit.org/show_bug.cgi?id=142691
179 Reviewed by Darin Adler.
181 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
183 * Source/cmake/WebKitFeatures.cmake:
184 * Source/cmakeconfig.h.cmake:
186 2015-04-25 Martin Robinson <mrobinson@igalia.com>
188 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
189 https://bugs.webkit.org/show_bug.cgi?id=144182
191 Reviewed by Simon Fraser.
193 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
194 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
195 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
196 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
197 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
199 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
201 [GTK] Add more public options
202 https://bugs.webkit.org/show_bug.cgi?id=144116
204 Reviewed by Martin Robinson.
206 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
208 * Source/cmake/OptionsGTK.cmake:
210 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
212 [CMake] Some internal variables are not marked as advanced
213 https://bugs.webkit.org/show_bug.cgi?id=143595
215 Reviewed by Martin Robinson.
217 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
218 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
220 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
222 [GTK] Mark as advanced the build options we don't want to expose
223 https://bugs.webkit.org/show_bug.cgi?id=143558
225 Reviewed by Martin Robinson.
227 Mark various options as private instead of public.
229 * Source/cmake/OptionsGTK.cmake:
231 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
233 [CMake] Should be possible for an option to depend on multiple options
234 https://bugs.webkit.org/show_bug.cgi?id=143839
236 Reviewed by Martin Robinson.
238 Use a list instead of a single variable to track the dependencies of each option. Iterate
239 over the list as many times as necessary to ensure all options are properly disabled.
241 * Source/cmake/WebKitFeatures.cmake:
243 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
245 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
246 https://bugs.webkit.org/show_bug.cgi?id=144103
248 Reviewed by Martin Robinson.
250 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
252 * Source/cmake/WebKitFeatures.cmake:
254 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
256 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
257 https://bugs.webkit.org/show_bug.cgi?id=144102
259 Reviewed by Martin Robinson.
261 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
262 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
263 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
265 * Source/cmake/OptionsGTK.cmake:
267 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
269 [CMake] Clean up JSC JIT options
270 https://bugs.webkit.org/show_bug.cgi?id=143998
272 Reviewed by Filip Pizlo.
274 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
275 define for ENABLE_FTL_NATIVE_CALL_INLINING.
276 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
277 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
278 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
279 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
281 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
283 [CMake] Use lowercase for local variables in macros
284 https://bugs.webkit.org/show_bug.cgi?id=144059
286 Reviewed by Martin Robinson.
288 Convert some variable names to lowercase.
290 * Source/cmake/WebKitFeatures.cmake:
292 2015-04-22 Commit Queue <commit-queue@webkit.org>
294 Unreviewed, rolling out r183116.
295 https://bugs.webkit.org/show_bug.cgi?id=144060
297 Inadvertently deleted a file... (Requested by mcatanzaro on
302 "[CMake] Use lowercase for local variables in macros"
303 https://bugs.webkit.org/show_bug.cgi?id=144059
304 http://trac.webkit.org/changeset/183116
306 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
308 [CMake] Use lowercase for local variables in macros
309 https://bugs.webkit.org/show_bug.cgi?id=144059
311 Reviewed by Martin Robinson.
313 Convert some variable names to lowercase.
315 * Source/cmake/WebKitFeatures.cmake:
317 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
319 [CMake] Features list should print dots every other row
320 https://bugs.webkit.org/show_bug.cgi?id=143832
322 Reviewed by Martin Robinson.
324 Discount private options when determining whether to print dots on a given row of the
325 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
326 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
327 wasn't noticed because it only affects the first line, and use of the variable name as a
328 string in a conditional.)
330 * Source/cmake/WebKitFeatures.cmake:
332 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
334 [CMake] Require specifying visibility of WebKit options
335 https://bugs.webkit.org/show_bug.cgi?id=143831
337 Reviewed by Alex Christensen.
339 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
340 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
341 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
342 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
343 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
344 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
345 cross-platform options as PRIVATE.
347 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
349 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
350 https://bugs.webkit.org/show_bug.cgi?id=143935
352 Reviewed by Darin Adler.
354 Some variables aren't defined in these files or unused variables aren't removed. This
355 patch cleans up it as well as fix wrong alphabet order.
357 * Source/cmake/WebKitFeatures.cmake:
358 * Source/cmakeconfig.h.cmake:
360 2015-04-19 Simon Fraser <simon.fraser@apple.com>
362 Restore the WebKit.xcworkspace to the way it was before r182899,
363 which inadvertently added the Source directory and a couple of source
366 * WebKit.xcworkspace/contents.xcworkspacedata:
368 2015-04-16 Basile Clement <basile_clement@apple.com>
370 Extract the allocation profile from JSFunction into a rare object
371 https://bugs.webkit.org/show_bug.cgi?id=143807
373 Reviewed by Filip Pizlo.
375 * WebKit.xcworkspace/contents.xcworkspacedata:
377 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
379 [EFL] Bump LLVM to version 3.6.0 on X86_64
380 https://bugs.webkit.org/show_bug.cgi?id=143604
382 Reviewed by Gyuyoung Kim.
384 * Source/cmake/FindLLVM.cmake: Added version handling.
385 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
387 2015-04-15 Timothy Horton <timothy_horton@apple.com>
389 Custom CSS cursors do not use -webkit-image-set on retina displays
390 https://bugs.webkit.org/show_bug.cgi?id=120783
392 Reviewed by Beth Dakin.
393 Patch by Evan Wallace <evan.exe@gmail.com>.
395 Add a manual test for custom CSS cursors on retina displays.
397 * ManualTests/retina-cursors.html: Added.
399 2015-04-15 Alex Christensen <achristensen@webkit.org>
401 Progress towards CMake on Mac.
402 https://bugs.webkit.org/show_bug.cgi?id=143785
404 Reviewed by Csaba Osztrogonác.
407 * Source/cmake/OptionsMac.cmake:
408 * Source/cmake/WebKitFS.cmake:
410 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
412 Cannot click "Next" button on Google two-factor auth setup page
414 <https://bugs.webkit.org/show_bug.cgi?id=143624>
415 <rdar://problem/19175714>
417 Reviewed by Darin Adler.
419 * ManualTests/button-that-focuses-itself-on-click.html: Added.
421 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
423 [cmake] REGRESSION(182663): It broke feature dependency handling
424 https://bugs.webkit.org/show_bug.cgi?id=143665
426 Reviewed by Csaba Osztrogonác.
428 Don't try to check the value of options before defining the options.
430 * Source/cmake/WebKitFeatures.cmake:
432 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
434 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
435 https://bugs.webkit.org/show_bug.cgi?id=143664
437 Reviewed by Gyuyoung Kim.
439 * Source/cmake/OptionsEfl.cmake:
440 * Source/cmake/OptionsGTK.cmake:
441 * Source/cmake/WebKitFeatures.cmake:
442 * Source/cmakeconfig.h.cmake:
444 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
446 [EFL] Enable Media Source
447 https://bugs.webkit.org/show_bug.cgi?id=143635
449 Reviewed by Csaba Osztrogonác.
451 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
453 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
455 [CMake] Miscellaneous issues in WebKitFeatures.cmake
456 https://bugs.webkit.org/show_bug.cgi?id=143636
458 Reviewed by Martin Robinson.
460 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
461 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
463 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
464 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
466 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
468 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
470 Fix ENABLE_TOUCH_SLIDER so that it can be used
474 * Source/cmake/WebKitFeatures.cmake:
476 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
478 [CMake] Print sorted feature list at the very end of the configure process
479 https://bugs.webkit.org/show_bug.cgi?id=143596
481 Reviewed by Martin Robinson.
483 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
484 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
485 and sort the options before printing. Reorder some code so that features still get
486 propagated to the bindings generators.
488 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
490 [CMake] Options should be marked as advanced by default
491 https://bugs.webkit.org/show_bug.cgi?id=143572
493 Reviewed by Gyuyoung Kim.
495 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
496 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
497 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
498 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
499 option without making it public.
501 * Source/cmake/WebKitFeatures.cmake:
503 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
505 [CMake] Remove unnecessary ENABLE_WEBCORE switch
506 https://bugs.webkit.org/show_bug.cgi?id=143584
508 Reviewed by Csaba Osztrogonác.
510 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
514 * Source/CMakeLists.txt:
515 * Source/cmake/OptionsGTK.cmake:
516 * Source/cmake/WebKitFS.cmake:
518 2015-04-08 Filip Pizlo <fpizlo@apple.com>
520 Unreviewed, revert accidental commit.
524 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
526 Add CMake build system for WinCairo port.
527 https://bugs.webkit.org/show_bug.cgi?id=115944
529 Reviewed by Chris Dumez.
531 * Source/cmake/OptionsWindows.cmake:
532 * Source/cmake/WebKitMacros.cmake:
533 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
535 2015-04-06 Alberto Garcia <berto@igalia.com>
538 https://bugs.webkit.org/show_bug.cgi?id=143453
540 Reviewed by Darin Adler.
542 Add HPPA to the list of supported CPUs.
546 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
548 Unreviewed, kick the GTK bots to fix an incremental build issue.
550 * Source/cmake/OptionsGTK.cmake:
552 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
554 Fix the EFL and GTK build after r182243
555 https://bugs.webkit.org/show_bug.cgi?id=143361
557 Reviewed by Csaba Osztrogonác.
559 * Source/PlatformEfl.cmake: Add a custom command that copies
560 the InspectorBackendCommands.js file into the proper directory
561 under DerivedSources/WebInspectorUI/.
563 2015-04-01 Alex Christensen <achristensen@webkit.org>
565 Progress towards CMake on Windows and Mac.
566 https://bugs.webkit.org/show_bug.cgi?id=143293
568 Reviewed by Filip Pizlo.
571 Set DERIVED_SOURCES_WTF_DIR for Windows.
572 * Source/CMakeLists.txt:
573 Don't compile bmalloc on Windows.
574 * Source/cmake/OptionsCommon.cmake:
575 Use the absolute path of the C preprocessor.
576 * Source/cmake/OptionsWinCairo.cmake:
577 Added needed definitions.
578 * Source/cmake/OptionsWindows.cmake:
579 Set some default values and removed support for old Visual Studio versions before /MP.
580 * Source/cmake/WebKitFS.cmake:
581 Make WTF DerivedSources directory.
582 * Source/cmake/WebKitMacros.cmake:
583 Added ADD_PRECOMPILED_HEADER macro based on
584 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
586 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
588 Use colored diagnostics when building with cmake + ninja + clang
589 https://bugs.webkit.org/show_bug.cgi?id=143297
591 Reviewed by Žan Doberšek.
593 Because that ninja sets subprocess stdout/stderr to a pipe, clang
594 disables colored output.
595 This patch forces clang to use colored diagnostics when we are using
598 * Source/cmake/OptionsCommon.cmake:
600 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
602 [CMake] Update old CMakeList.txt in gtest
603 https://bugs.webkit.org/show_bug.cgi?id=143192
605 Reviewed by Darin Adler.
607 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
608 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
609 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
611 * Source/CMakeLists.txt:
612 * Source/cmake/gtest/CMakeLists.txt: Removed.
614 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
616 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
617 https://bugs.webkit.org/show_bug.cgi?id=143138
619 Reviewed by Csaba Osztrogonác.
621 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
622 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
624 * Source/cmake/OptionsWindows.cmake:
625 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
626 * Source/cmake/WebKitMacros.cmake:
628 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
630 [GStreamer] share GL context in pipeline, part 2
631 https://bugs.webkit.org/show_bug.cgi?id=143049
633 Reviewed by Carlos Garcia Campos.
635 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
636 OpenGL/ES2 is found and GLX/EGL is found too.
638 2015-03-26 Alex Christensen <achristensen@webkit.org>
640 Progress towards CMake on Mac.
641 https://bugs.webkit.org/show_bug.cgi?id=143112
643 Reviewed by Chris Dumez.
645 * Source/cmake/OptionsMac.cmake:
647 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
649 [EFL] Add OpenWebRTC in jhbuild
650 https://bugs.webkit.org/show_bug.cgi?id=142778
652 Reviewed by Gyuyoung Kim.
654 Original patch by Philippe Normand <pnormand@igalia.com>
656 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
657 mediastream build is enabled.
659 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
661 [GTK] Add a configure option to build without Redirected XComposite Window
662 https://bugs.webkit.org/show_bug.cgi?id=142865
664 Reviewed by Žan Doberšek.
666 The Redirected XComposite Window was added to support some
667 features like GtkOverlay, but in cases where we don't need such
668 features, it's more efficient to use the XID of the WebKitWebView
669 window as the native surface handle for the accelerated
670 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
671 that is enabled by default for X11 target when OpenGL is enabled.
673 * Source/cmake/OptionsGTK.cmake:
675 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
677 [GTK] Search for the Wayland dependency when enabling Wayland target
678 https://bugs.webkit.org/show_bug.cgi?id=142876
680 Reviewed by Carlos Garcia Campos.
682 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
683 requirement of either the GTK+ or GDK pkg-config files, so we have to
684 search for it ourselves when WebKitGTK+ has been configured to support
685 the Wayland windowing target.
687 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
689 Unreviewed, kick the GTK bots to regenerate makefile.
690 https://bugs.webkit.org/show_bug.cgi?id=137394
692 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
693 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
695 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
697 Unreviewed, kick the GTK bots to regenerate makefile.
698 https://bugs.webkit.org/show_bug.cgi?id=137394
700 * Source/cmake/OptionsEfl.cmake:
702 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
704 [GTK] Fix inspector userinterface related incremental build issue
705 https://bugs.webkit.org/show_bug.cgi?id=142849
707 Reviewed by Carlos Garcia Campos.
709 * Source/cmake/OptionsGTK.cmake: Revert r181733.
711 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
713 Unreviewed, kick the GTK bots to regenerate makefile.
715 * Source/cmake/OptionsGTK.cmake:
717 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
719 [EFL] Expose JavaScript binding interface through ewk_extension
720 https://bugs.webkit.org/show_bug.cgi?id=142033
722 Reviewed by Gyuyoung Kim.
724 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
726 2015-03-17 Philippe Normand <pnormand@igalia.com>
728 [GTK] basic OpenWebRTC build support
729 https://bugs.webkit.org/show_bug.cgi?id=142393
731 Reviewed by Carlos Garcia Campos.
733 * Source/cmake/FindOpenWebRTC.cmake: Added.
734 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
735 mediastream build is enabled.
737 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
739 [CMake][EFL] Build test tools only for developer mode
740 https://bugs.webkit.org/show_bug.cgi?id=142761
742 Reviewed by Csaba Osztrogonác.
744 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
746 * Source/cmake/OptionsEfl.cmake:
747 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
748 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
749 * Source/cmakeconfig.h.cmake:
751 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
753 Enable ES6 classes by default
754 https://bugs.webkit.org/show_bug.cgi?id=142774
756 Reviewed by Gavin Barraclough.
758 * Source/cmake/WebKitFeatures.cmake:
760 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
762 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
763 https://bugs.webkit.org/show_bug.cgi?id=142722
765 Reviewed by Csaba Osztrogonác.
767 Categorize to define cmake variables, to find necessary packages,
768 use upper case for "glib_conponents" cmake variable name, re-arrange
769 wrong alphabet sorting, and so on.
771 * CMakeLists.txt: Remove WinCE port.
772 * Source/cmake/OptionsEfl.cmake:
774 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
776 [GStreamer] share GL context in pipeline
777 https://bugs.webkit.org/show_bug.cgi?id=142693
779 Reviewed by Philippe Normand.
781 Add search of gstreamer-gl library in the GStreamer installation. If
782 it is found, WTF_USE_GSTREAMER_GL macro is defined.
784 * Source/cmake/FindGStreamer.cmake:
785 * Source/cmake/OptionsGTK.cmake:
787 2015-03-13 Alex Christensen <achristensen@webkit.org>
789 Progress towards CMake on Mac.
790 https://bugs.webkit.org/show_bug.cgi?id=142680
792 Reviewed by Gyuyoung Kim.
795 * Source/PlatformMac.cmake: Added stub.
796 * Source/cmake/OptionsMac.cmake:
797 Change defines to get CMake working.
799 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
801 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
802 https://bugs.webkit.org/show_bug.cgi?id=126688
804 Reviewed by Gustavo Noronha Silva.
806 Add ENABLE_MINIBROWSER option, enabled by default for development
807 builds and disabled for production builds unless explicilty enabled.
809 * Source/cmake/OptionsGTK.cmake:
811 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
813 [GTK] Do not look for child processes in the UI process binary path
814 https://bugs.webkit.org/show_bug.cgi?id=135752
816 Reviewed by Gustavo Noronha Silva.
818 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
819 build for development builds.
821 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
823 [GTK] Add a configure option to build with OpenGL ES 2
824 https://bugs.webkit.org/show_bug.cgi?id=142498
826 Reviewed by Martin Robinson.
828 Add ENABLE_GLES2 option. It's disabled by default, but if passed
829 GLES2 is required and OpenGL is not even searched. Otherwise we
830 search for OpenGL as usual, using it only if present.
832 * Source/cmake/OptionsGTK.cmake:
834 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
836 [cmake] Handle unused parameter warnings as build errors except in WebKit2
837 https://bugs.webkit.org/show_bug.cgi?id=142338
839 Reviewed by Gyuyoung Kim.
841 * Source/cmake/WebKitHelpers.cmake:
843 2015-03-03 Daniel Bates <dabates@apple.com>
845 Convert ManualTests/svg-tooltip.svg to a DRT test
846 https://bugs.webkit.org/show_bug.cgi?id=140480
848 Reviewed by Alex Christensen.
850 * ManualTests/svg-tooltip.svg: Removed.
852 2015-03-02 Debarshi Ray <debarshir@gnome.org>
854 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
855 https://bugs.webkit.org/show_bug.cgi?id=142165
857 Reviewed by Carlos Garcia Campos.
859 * Source/cmake/gtksymbols.filter:
861 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
863 [EFL] Remove unnecessary comment after r179110
864 https://bugs.webkit.org/show_bug.cgi?id=142042
866 Reviewed by Gyuyoung Kim.
868 * Source/cmake/OptionsEfl.cmake:
870 2015-02-23 Tomas Popela <tpopela@redhat.com>
872 [GTK] Fails to compile with cmake 3.2.x
873 https://bugs.webkit.org/show_bug.cgi?id=141796
875 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
876 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
877 added and the build will fail.
879 Reviewed by Martin Robinson.
881 * Source/cmake/OptionsGTK.cmake:
883 2015-02-20 Alexey Proskuryakov <ap@apple.com>
885 Remove svn:keywords property.
887 As far as I can tell, the property had no effect on any of these files, but also,
888 when it has effect it's likely harmful.
890 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
891 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
892 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
893 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
894 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
895 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
896 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
897 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
898 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
899 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
900 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
901 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
902 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
903 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
905 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
907 [CMAKE] Remove CMakeLists.txt in WK1 port
908 https://bugs.webkit.org/show_bug.cgi?id=141617
910 Reviewed by Anders Carlsson.
912 Nobody uses CMake in WK1 port. Remove it.
916 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
918 Unreviewed, remove empty directories.
920 * ManualTests/qt: Removed.
922 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
924 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
925 https://bugs.webkit.org/show_bug.cgi?id=141481
927 Reviewed by Csaba Osztrogonác.
929 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
931 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
933 [EFL][GTK] Use bmalloc instead of tcmalloc
934 https://bugs.webkit.org/show_bug.cgi?id=140162
936 Reviewed by Carlos Garcia Campos.
938 Add bmalloc directory to build list.
940 * CMakeLists.txt: Define BMALLOC_DIR directory.
941 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
943 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
945 [GTK] Add default color chooser implementation using GtkColorChooserDialog
946 https://bugs.webkit.org/show_bug.cgi?id=141392
948 Reviewed by Gustavo Noronha Silva.
950 Enable INPUT_TYPE_COLOR by default for GTK+ port.
952 * Source/cmake/OptionsGTK.cmake:
954 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
956 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
957 https://bugs.webkit.org/show_bug.cgi?id=141328
959 Reviewed by Darin Adler.
961 Added as manual test because it involves a huge grid allocation
962 which is very slow on Debug bots, the only ones capable to trigger
965 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
967 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
969 [Streams API] Implement a barebone ReadableStream interface
970 https://bugs.webkit.org/show_bug.cgi?id=141045
972 Reviewed by Benjamin Poulain.
974 * Source/cmake/WebKitFeatures.cmake:
975 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
977 2015-02-02 Filip Pizlo <fpizlo@apple.com>
979 Revert accidental change in r179490.
983 2015-02-02 Filip Pizlo <fpizlo@apple.com>
985 Unreviewed, revert accidental change to Makefile.shared in r179478
989 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
991 [CMake] Minimum python version should be 2.7.
992 https://bugs.webkit.org/show_bug.cgi?id=140997
994 Reviewed by Csaba Osztrogonác.
998 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1000 Apply feTurbulence spec change to fix zero length vector generation
1001 https://bugs.webkit.org/show_bug.cgi?id=140812
1003 Reviewed by Darin Adler.
1005 Recently a bug with the turbulence algorithm was corrected in the
1006 Filter Effects specification.
1007 For some seed values this bug allowed zero length vectors to be generated.
1008 This resulted in large solid color squares being present in the generated image.
1009 The feTurbulence algorithm was updated to reject zero length vectors. This patch
1010 applies that change in WebCore.
1012 Test: svg/filters/feTurbulence_bad_seeds.html
1014 * platform/graphics/filters/FETurbulence.cpp:
1015 (WebCore::FETurbulence::initPaint):
1016 Added rejection sampling during vector generation to avoid zero length vectors.
1018 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1020 [cmake] Remove compiler version calculate cruft
1021 https://bugs.webkit.org/show_bug.cgi?id=140885
1023 Reviewed by Darin Adler.
1025 * Source/cmake/WebKitHelpers.cmake:
1027 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1029 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
1030 https://bugs.webkit.org/show_bug.cgi?id=140886
1032 Reviewed by Žan Doberšek.
1034 * Source/cmake/WebKitHelpers.cmake:
1036 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
1038 [GTK] gtkdoc does not appear in DevHelp
1039 https://bugs.webkit.org/show_bug.cgi?id=139369
1041 Reviewed by Philippe Normand.
1043 Expect the gtkdoc to be generated in folders named with the API version.
1045 * Source/PlatformGTK.cmake:
1047 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
1049 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
1050 https://bugs.webkit.org/show_bug.cgi?id=140609
1052 Reviewed by Csaba Osztrogonác.
1054 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
1055 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
1056 compilation flags. Those were added after the jsCStack branch merge, but
1057 can now be removed since the -ftree-dce issues were fixed in GCC, and
1058 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
1060 * Source/cmake/OptionsEfl.cmake:
1061 * Source/cmake/OptionsGTK.cmake:
1063 2015-01-26 Commit Queue <commit-queue@webkit.org>
1065 Unreviewed, rolling out r179107.
1066 https://bugs.webkit.org/show_bug.cgi?id=140880
1068 The GCC in the bots doesn't support the AsyncTask
1069 implementation (Requested by KaL on #webkit).
1073 "[GTK] Enable IndexedDB"
1074 https://bugs.webkit.org/show_bug.cgi?id=98932
1075 http://trac.webkit.org/changeset/179107
1077 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
1079 [GTK] Enable IndexedDB
1080 https://bugs.webkit.org/show_bug.cgi?id=98932
1082 Reviewed by Žan Doberšek.
1084 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1085 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1087 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
1089 [GTK] Add initial database process support
1090 https://bugs.webkit.org/show_bug.cgi?id=139491
1092 Reviewed by Sergio Villar Senin.
1094 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
1096 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
1098 Add a build flag for ES6 class syntax
1099 https://bugs.webkit.org/show_bug.cgi?id=140760
1101 Reviewed by Michael Saboff.
1103 * Source/cmake/WebKitFeatures.cmake:
1104 * Source/cmakeconfig.h.cmake:
1106 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1108 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
1109 https://bugs.webkit.org/show_bug.cgi?id=140049
1111 Reviewed by Gyuyoung Kim.
1113 * Source/cmake/OptionsCommon.cmake:
1115 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1117 Remove ENABLE(INSPECTOR) ifdef guards
1118 https://bugs.webkit.org/show_bug.cgi?id=140668
1120 Reviewed by Darin Adler.
1122 * Source/PlatformEfl.cmake:
1123 * Source/cmake/OptionsEfl.cmake:
1124 * Source/cmake/OptionsGTK.cmake:
1125 * Source/cmake/OptionsMac.cmake:
1126 * Source/cmake/WebKitFeatures.cmake:
1127 * Source/cmakeconfig.h.cmake:
1129 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
1131 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
1133 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1135 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1137 [CMAKE] Fix cmake warning
1138 https://bugs.webkit.org/show_bug.cgi?id=140497
1140 Reviewed by Gustavo Noronha Silva.
1142 r173155 already tried to fix cmake warning though, the warning is still exist.
1143 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
1144 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
1145 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
1146 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
1147 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
1151 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
1153 [GTK] Generate the make dist manifest from a CMake template file
1154 https://bugs.webkit.org/show_bug.cgi?id=139387
1156 Reviewed by Martin Robinson.
1158 Generate manifest.txt from manifest.txt.in. Only expose the dist and
1159 distcheck targets for developer builds, as they won't work when
1160 building from a tarball because the manifest is not distributed.
1162 * Source/PlatformGTK.cmake:
1164 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
1166 Remove ENABLE(SQL_DATABASE) guards
1167 https://bugs.webkit.org/show_bug.cgi?id=140434
1169 Reviewed by Darin Adler.
1171 * Source/cmake/OptionsMac.cmake:
1172 * Source/cmake/WebKitFeatures.cmake:
1173 * Source/cmakeconfig.h.cmake:
1175 2015-01-11 Sam Weinig <sam@webkit.org>
1177 Remove support for SharedWorkers
1178 https://bugs.webkit.org/show_bug.cgi?id=140344
1180 Reviewed by Anders Carlsson.
1182 * Source/cmake/OptionsEfl.cmake:
1183 * Source/cmake/OptionsGTK.cmake:
1184 * Source/cmake/OptionsMac.cmake:
1185 * Source/cmake/WebKitFeatures.cmake:
1186 * Source/cmakeconfig.h.cmake:
1188 2015-01-10 Dan Bernstein <mitz@apple.com>
1190 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
1191 https://bugs.webkit.org/show_bug.cgi?id=140339
1193 Reviewed by Mark Rowe.
1195 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
1196 prevents unnecessary rebuilding due to PATH differences.
1198 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
1200 [GTK][ThreadedCompositor] Add support for threaded compositor.
1201 https://bugs.webkit.org/show_bug.cgi?id=118265
1203 Reviewed by Martin Robinson.
1205 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
1206 autotools build systems. The feature is disabled by default.
1207 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
1208 from the feature flags.
1210 * Source/cmake/OptionsEfl.cmake:
1211 * Source/cmake/OptionsGTK.cmake:
1212 * Source/cmake/WebKitFeatures.cmake:
1213 * Source/cmakeconfig.h.cmake:
1215 2014-12-23 Alexey Proskuryakov <ap@apple.com>
1217 Simplify building with ASan
1218 https://bugs.webkit.org/show_bug.cgi?id=139916
1220 Reviewed by Mark Rowe.
1222 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
1224 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
1226 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
1228 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1230 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
1232 Null dereference performing a "TapAndAHalf" gesture in Google search field
1234 <https://bugs.webkit.org/show_bug.cgi?id=139506>
1235 <rdar://problem/19028828>
1237 Reviewed by Darin Adler.
1239 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
1241 2014-12-10 Dean Jackson <dino@apple.com>
1243 Blur filter performance test doesn't provide results
1244 https://bugs.webkit.org/show_bug.cgi?id=139462
1246 Reviewed by Sam Weinig.
1248 This can't currently work under our performance test
1249 infrastructure. Move it to a manual test to avoid
1250 putting FAILures into the results.
1252 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
1254 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1256 [GTK][WK2] Add HTML5 Notifications support
1257 https://bugs.webkit.org/show_bug.cgi?id=61140
1259 Reviewed by Carlos Garcia Campos.
1261 * Source/cmake/FindLibNotify.cmake: Added.
1262 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
1263 libnotify and use it for a default implementation when found.
1265 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
1267 REGRESSION(r155906): Page content disappears on Tuaw article after loading
1268 https://bugs.webkit.org/show_bug.cgi?id=138100
1270 Reviewed by Simon Fraser.
1272 DRT causes an extra paint which makes it impossible to test this with
1275 * ManualTests/float-layer-not-painting.html: Added.
1277 2014-12-07 Alberto Garcia <berto@igalia.com>
1279 [GTK] WebKit has a new required dependency on GnuTLS
1280 https://bugs.webkit.org/show_bug.cgi?id=136158
1282 Reviewed by Martin Robinson.
1284 Detect if GnuTLS is installed and enable or disable subtle crypto
1285 support accordingly.
1287 * Source/cmake/OptionsGTK.cmake:
1289 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
1291 [GTK] Missing API detected in GObject DOM bindings after r176630
1292 https://bugs.webkit.org/show_bug.cgi?id=139201
1294 Reviewed by Gustavo Noronha Silva.
1296 Change GENERATE_BINDINGS macro to receive a list of optional
1297 additional dependencies, so that we can add more dependecies
1298 without having to change the macro.
1300 * Source/cmake/WebKitMacros.cmake:
1302 2014-12-05 Simon Fraser <simon.fraser@apple.com>
1304 Programmatic scrolling and content changes are not always synchronized
1305 https://bugs.webkit.org/show_bug.cgi?id=139245
1306 rdar://problem/18833612
1308 Reviewed by Anders Carlsson.
1310 Manual test that tries to sync layout with programmatic scrolling.
1312 * ManualTests/programmatic-scroll-flicker.html: Added.
1314 2014-12-04 Alberto Garcia <berto@igalia.com>
1316 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
1317 https://bugs.webkit.org/show_bug.cgi?id=136576
1319 Reviewed by Carlos Garcia Campos.
1321 CMake should complain if Accelerated 2D Canvas is explicitly
1322 enabled but cairo-gl is not found.
1324 * Source/cmake/OptionsGTK.cmake:
1326 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1328 [EFL] Add subtle crypto to the build system
1329 https://bugs.webkit.org/show_bug.cgi?id=138612
1331 Reviewed by Csaba Osztrogonác.
1333 * Source/cmake/OptionsEfl.cmake:
1335 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1337 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
1338 https://bugs.webkit.org/show_bug.cgi?id=139085
1340 Reviewed by Andreas Kling.
1342 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
1343 * Source/cmake/WebKitFeatures.cmake: ditto.
1344 * Source/cmakeconfig.h.cmake: ditto.
1346 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1348 [EFL] Drop support for the EFL 1.7
1349 https://bugs.webkit.org/show_bug.cgi?id=139114
1351 Reviewed by Gyuyoung Kim.
1353 * Source/cmake/EFLHelpers.cmake: Removed.
1354 * Source/cmake/FindEcore.cmake: Removed.
1355 * Source/cmake/FindEdje.cmake: Removed.
1356 * Source/cmake/FindEet.cmake: Removed.
1357 * Source/cmake/FindEeze.cmake: Removed.
1358 * Source/cmake/FindEfreet.cmake: Removed.
1359 * Source/cmake/FindEina.cmake: Removed.
1360 * Source/cmake/FindElementary.cmake: Removed.
1361 * Source/cmake/FindEvas.cmake: Removed.
1362 * Source/cmake/OptionsEfl.cmake:
1364 2014-11-28 Philippe Normand <pnormand@igalia.com>
1366 [CMake] Build failure against GStreamer git master
1367 https://bugs.webkit.org/show_bug.cgi?id=138872
1369 Reviewed by Csaba Osztrogon.
1371 * Source/cmake/FindGStreamer.cmake: Simplified the
1372 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1373 headers lookup, there's no need to do this manually. Also
1374 explicitely check the version specified in GStreamer_FIND_VERSION.
1376 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1378 [EFL] Remove E_Dbus dependency
1379 https://bugs.webkit.org/show_bug.cgi?id=136355
1381 Reviewed by Gyuyoung Kim.
1383 * Source/cmake/FindE_DBus.cmake: Removed.
1384 * Source/cmake/OptionsEfl.cmake:
1386 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1388 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1390 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1392 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1394 [CMake] Use ld.gold if it is available to speedup builds
1395 https://bugs.webkit.org/show_bug.cgi?id=137953
1397 Reviewed by Carlos Garcia Campos.
1399 * Source/cmake/OptionsCommon.cmake:
1401 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
1403 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
1404 https://bugs.webkit.org/show_bug.cgi?id=138840
1406 Reviewed by Csaba Osztrogonác.
1408 * Source/cmake/OptionsCommon.cmake:
1410 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
1412 Remove Source/Platform cruft
1413 https://bugs.webkit.org/show_bug.cgi?id=138658
1415 Reviewed by Anders Carlsson.
1418 * Source/Platform: Removed.
1420 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
1422 Enable Cortex-A53-specific code paths by default if core is detected.
1423 https://bugs.webkit.org/show_bug.cgi?id=138499
1425 Reviewed by Csaba Osztrogonác.
1427 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
1428 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
1431 Since on ARM64/Linux the part number that cpuinfo reports depends on
1432 the core the query is run on, the check is bound to and executed on the
1433 available cores one by one.
1435 * Source/cmake/OptionsCommon.cmake:
1437 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1439 [EFL] Remove unnecessary version check from OptionsEfl.cmake
1440 https://bugs.webkit.org/show_bug.cgi?id=138498
1442 Reviewed by Csaba Osztrogonác.
1444 * Source/cmake/OptionsEfl.cmake:
1446 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1448 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
1449 https://bugs.webkit.org/show_bug.cgi?id=138465
1451 Reviewed by Gyuyoung Kim.
1453 * Source/cmake/OptionsEfl.cmake:
1455 2014-11-03 Dean Jackson <dino@apple.com>
1457 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1458 https://bugs.webkit.org/show_bug.cgi?id=138362
1460 Reviewed by Tim Horton.
1462 Add a new feature define for Level 2 of CSS Filters.
1463 http://dev.w3.org/fxtf/filters-2/
1465 * Source/cmake/OptionsEfl.cmake:
1466 * Source/cmake/OptionsGTK.cmake:
1467 * Source/cmake/OptionsMac.cmake:
1468 * Source/cmake/WebKitFeatures.cmake:
1469 * Source/cmakeconfig.h.cmake:
1471 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1473 Workaround for Cortex-A53 erratum 835769
1474 https://bugs.webkit.org/show_bug.cgi?id=138315
1476 Reviewed by Filip Pizlo.
1478 This patch introduces CMake variable and preprocessor macro
1479 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1480 code paths, if set true.
1482 * Source/cmake/OptionsCommon.cmake:
1483 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1485 * Source/cmakeconfig.h.cmake:
1486 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1488 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1490 [GTK] Fix the build of FTL JIT
1491 https://bugs.webkit.org/show_bug.cgi?id=138298
1493 Reviewed by Carlos Garcia Campos.
1495 * Source/cmake/OptionsGTK.cmake:
1496 Remove the need for the LIBCXXABI package.
1498 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1500 REGRESSION(CMake): Make it possible to build without introspection
1501 https://bugs.webkit.org/show_bug.cgi?id=138006
1503 Reviewed by Philippe Normand.
1505 Add ENABLE_INTROSPECTION option.
1507 * Source/PlatformGTK.cmake: Dot not add gir global target if
1508 introspection is disabled.
1509 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1510 introspection is disabled.
1512 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1514 [GTK] Support script message handlers WebKitUserContentManager
1515 https://bugs.webkit.org/show_bug.cgi?id=133730
1517 Reviewed by Carlos Garcia Campos.
1519 Support user script message handlers in WebKitUserContentManager.
1520 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1521 an option is added to the CMake build files. The option is disabled
1522 globally by default, and the WebKitGTK port enables it. On the API
1523 level, two new methods to register and unregister names are provided
1524 in the "window.webkit" namespace, and on message reception the
1525 "WebKitUserContentManager::script-message-received" signal is
1526 emitted, using the registered names as signal detail.
1528 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1529 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1530 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1531 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1533 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1535 [GTK] Bump libsoup's minimum version to 2.42.0.
1536 https://bugs.webkit.org/show_bug.cgi?id=138086
1538 Reviewed by Martin Robinson.
1540 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1541 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1542 the minimum version required to build the port these days.
1544 In addition, since the autotools build system required 2.42.0 before
1545 being retired, require the same version here. Version 2.42.0 was also
1547 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1549 * Source/cmake/OptionsGTK.cmake:
1551 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1553 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1554 https://bugs.webkit.org/show_bug.cgi?id=138132
1556 Reviewed by Csaba Osztrogonác.
1558 * Source/cmake/OptionsEfl.cmake:
1560 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1562 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1564 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1566 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1568 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1569 https://bugs.webkit.org/show_bug.cgi?id=137946
1571 Reviewed by Gyuyoung Kim.
1573 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1575 * Source/cmake/OptionsEfl.cmake:
1577 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1579 Fix FTL Native Inlining for EFL
1580 https://bugs.webkit.org/show_bug.cgi?id=137774
1582 Reviewed by Michael Saboff.
1584 Updated CMake for FTL Native Inlining.
1587 * Source/cmake/FindClang.cmake: Added.
1588 * Source/cmake/OptionsEfl.cmake:
1589 * Source/cmakeconfig.h.cmake:
1591 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1593 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1594 https://bugs.webkit.org/show_bug.cgi?id=137748
1596 Reviewed by Brian Burg.
1598 * Source/PlatformEfl.cmake:
1600 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1602 [GTK] Add initial gestures support
1603 https://bugs.webkit.org/show_bug.cgi?id=137812
1605 Reviewed by Sergio Villar Senin.
1607 Check if the GTK+ version supports gestures or not.
1609 * Source/cmake/FindGTK3.cmake:
1610 * Source/cmake/OptionsGTK.cmake:
1612 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1614 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1615 https://bugs.webkit.org/show_bug.cgi?id=137781
1617 Reviewed by Martin Robinson.
1619 We used to enable smooth scrolling unconditionally in autotools
1620 (via WebKitFeatures.m4), but since the switch to CMake it's
1621 unconditionally disabled, so changing the setting doesn't have any
1624 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1626 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1628 Removing CUSTOM_PROTOCOLS guard
1629 https://bugs.webkit.org/show_bug.cgi?id=137741
1631 Reviewed by Benjamin Poulain.
1633 * Source/cmake/OptionsEfl.cmake:
1635 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1637 [EFL] Enable WebP support.
1638 https://bugs.webkit.org/show_bug.cgi?id=136156
1640 Reviewed by Gyuyoung Kim.
1642 Add WebP package finding rule.
1644 * Source/cmake/OptionsEfl.cmake:
1646 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1648 [EFL] Enable custom URI schemes with CustomProtocols
1649 https://bugs.webkit.org/show_bug.cgi?id=128177
1651 Reviewed by Gyuyoung Kim.
1653 Fixing ewk_context_url_scheme_register() ewebkit2 API
1654 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1656 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1658 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1660 Bump version to 2.7.0
1661 https://bugs.webkit.org/show_bug.cgi?id=137301
1663 Rubber-stamped by Carlos Garcia Campos.
1665 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1667 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1669 [EFL] Rename TEST_THEME_DIR macro
1670 https://bugs.webkit.org/show_bug.cgi?id=137244
1672 Reviewed by Csaba Osztrogonác.
1674 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1676 2014-09-27 Dan Bernstein <mitz@apple.com>
1678 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1679 https://bugs.webkit.org/show_bug.cgi?id=137053
1681 Reviewed by Mark Rowe.
1683 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1684 In the build pre-action, pass the --wksi and --llvm options to
1685 copy-webkitlibraries-to-product-directory.
1686 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1688 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1690 [GTK] Enable CSS_IMAGE_SET in production builds
1691 https://bugs.webkit.org/show_bug.cgi?id=137142
1693 Reviewed by Alejandro G. Castro.
1695 This is required by the inspector to show some of the icons that
1696 has a HiDPI variant.
1698 * Source/cmake/OptionsGTK.cmake:
1700 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1702 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1703 https://bugs.webkit.org/show_bug.cgi?id=136377
1705 Reviewed by Philippe Normand.
1707 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1708 for CMake versions less than 3.
1710 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1712 Remove WinCE port from trunk
1713 https://bugs.webkit.org/show_bug.cgi?id=136951
1715 Reviewed by Alex Christensen.
1717 * Source/cmake/OptionsWinCE.cmake: Removed.
1718 * Source/cmake/WebKitPackaging.cmake:
1720 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1722 [EFL][GTK] Remove WebKit1 related codes
1723 https://bugs.webkit.org/show_bug.cgi?id=136853
1725 Reviewed by Csaba Osztrogonác.
1727 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1730 * Source/PlatformGTK.cmake:
1732 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1735 https://bugs.webkit.org/show_bug.cgi?id=136820
1737 Reviewed by Csaba Osztrogonác.
1739 * Source/cmake/FindICU.cmake:
1741 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1743 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1744 https://bugs.webkit.org/show_bug.cgi?id=136814
1746 Reviewed by Philippe Normand.
1748 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1749 We bundle the wayland-egl dependency with wayland-client and wayland-server
1750 and store the resulting variables with the WAYLAND_ prefix. Because of this
1751 this line wasn't exporting anything useful.
1753 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1755 URTBF after r173574.
1757 * Source/cmake/WebKitMacros.cmake:
1759 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1761 [JavaScriptCore] Fix FTL on platform EFL.
1762 https://bugs.webkit.org/show_bug.cgi?id=133571
1764 Reviewed by Filip Pizlo.
1768 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1769 * Source/cmake/OptionsEfl.cmake:
1771 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1774 https://bugs.webkit.org/show_bug.cgi?id=136571
1776 Reviewed by Darin Adler.
1778 * Source/cmake/OptionsEfl.cmake:
1779 * Source/cmake/OptionsGTK.cmake:
1780 * Source/cmake/OptionsMac.cmake:
1781 * Source/cmake/WebKitFeatures.cmake:
1782 * Source/cmakeconfig.h.cmake:
1784 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1786 Remove CSS_FILTERS flag
1787 https://bugs.webkit.org/show_bug.cgi?id=136529
1789 Reviewed by Dirk Schulze.
1791 * Source/cmake/OptionsEfl.cmake:
1792 * Source/cmake/OptionsGTK.cmake:
1793 * Source/cmake/OptionsMac.cmake:
1794 * Source/cmake/WebKitFeatures.cmake:
1795 * Source/cmakeconfig.h.cmake:
1797 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1799 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1800 https://bugs.webkit.org/show_bug.cgi?id=136194
1802 Reviewed by Csaba Osztrogonác.
1804 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1808 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1810 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1811 https://bugs.webkit.org/show_bug.cgi?id=135560
1813 Reviewed by Gyuyoung Kim.
1815 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1817 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1819 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1820 https://bugs.webkit.org/show_bug.cgi?id=136343
1822 Reviewed by David Kilzer.
1824 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1826 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1827 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1829 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1831 [EFL] Share fast/speechsynthesis/ with other ports
1832 https://bugs.webkit.org/show_bug.cgi?id=136224
1834 Reviewed by Chris Fleizach.
1836 Enable WebSpeech for EFL.
1838 * Source/cmake/OptionsEfl.cmake:
1840 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1842 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1843 https://bugs.webkit.org/show_bug.cgi?id=136127
1845 Reviewed by Gyuyoung Kim.
1847 Add build support for espeak.
1849 * Source/cmake/FindEspeak.cmake: Added.
1850 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1852 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1854 [EFL] Build break using clang
1855 https://bugs.webkit.org/show_bug.cgi?id=136245
1857 Reviewed by Gyuyoung Kim.
1859 * Source/cmake/OptionsEfl.cmake:
1860 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1861 Some warnings are from system libraries.
1863 2014-08-25 Alberto Garcia <berto@igalia.com>
1865 [GTK] Unify webkitgtk and webkit2gtk directories
1866 https://bugs.webkit.org/show_bug.cgi?id=136209
1868 Reviewed by Carlos Garcia Campos.
1870 Use webkit2gtk-X.X both for the process binaries and the injected
1873 * Source/cmake/OptionsGTK.cmake:
1875 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1877 [EFL] Move Efl specific code from Source/CMakeLists.txt
1878 https://bugs.webkit.org/show_bug.cgi?id=136206
1880 Reviewed by Gyuyoung Kim.
1882 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1883 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1885 * Source/CMakeLists.txt:
1886 * Source/cmake/OptionsEfl.cmake:
1888 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1890 [EFL] Introduce DEVELOPER_MODE
1891 https://bugs.webkit.org/show_bug.cgi?id=135884
1893 Reviewed by Gyuyoung Kim.
1895 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1896 instead of SHARED_CORE.
1897 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1898 from release binary.
1900 * Source/cmake/OptionsEfl.cmake:
1901 * Source/cmake/WebKitHelpers.cmake:
1902 Moved fvisibility=hidden to OptionsEfl.cmake
1904 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1906 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1907 https://bugs.webkit.org/show_bug.cgi?id=136110
1909 Reviewed by Gyuyoung Kim.
1911 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1913 * Source/cmake/OptionsEfl.cmake:
1915 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1917 [EFL] Apply eflsymbols.filter to WebKit2
1918 https://bugs.webkit.org/show_bug.cgi?id=136148
1920 Reviewed by Csaba Osztrogonác.
1922 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1923 in the eflsymbols.filter.
1925 * Source/cmake/OptionsEfl.cmake:
1926 * Source/cmake/eflsymbols.filter:
1928 2014-08-21 Zalan Bujtas <zalan@apple.com>
1930 Enable SATURATED_LAYOUT_ARITHMETIC.
1931 https://bugs.webkit.org/show_bug.cgi?id=136106
1933 Reviewed by Simon Fraser.
1935 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1936 (No measurable performance regression on Mac.)
1938 * Source/cmake/OptionsMac.cmake:
1939 * Source/cmake/WebKitFeatures.cmake:
1940 * Source/cmakeconfig.h.cmake:
1942 2014-08-19 Zalan Bujtas <zalan@apple.com>
1944 Remove ENABLE(SUBPIXEL_LAYOUT).
1945 https://bugs.webkit.org/show_bug.cgi?id=136077
1947 Reviewed by Simon Fraser.
1949 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
1951 * Source/cmake/OptionsEfl.cmake:
1952 * Source/cmake/OptionsGTK.cmake:
1953 * Source/cmake/OptionsMac.cmake:
1954 * Source/cmake/WebKitFeatures.cmake:
1955 * Source/cmakeconfig.h.cmake:
1957 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
1959 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1960 https://bugs.webkit.org/show_bug.cgi?id=135980
1962 Reviewed by Martin Robinson.
1964 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1965 overrides any other disabled optimization that was prepended to these
1966 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1967 lists first in the final list of compilation flags.
1969 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1970 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1972 * Source/cmake/OptionsCommon.cmake:
1973 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1974 * Source/cmake/OptionsGTK.cmake:
1976 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1978 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1980 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1982 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1984 [GTK] Disable memory sampler on non-Linux system
1985 https://bugs.webkit.org/show_bug.cgi?id=134483
1987 Reviewed by Philippe Normand.
1989 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1990 Linux because it uses many Linux-specific features, so we should disable
1991 memory sampler on other systems by default.
1993 * Source/cmake/OptionsGTK.cmake:
1995 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1997 [GTK] HTML API documentation should also be installed versioned
1998 https://bugs.webkit.org/show_bug.cgi?id=135970
2000 Reviewed by Philippe Normand.
2002 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
2005 2014-08-14 Tomas Popela <tpopela@redhat.com>
2007 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
2008 https://bugs.webkit.org/show_bug.cgi?id=135937
2010 Reviewed by Carlos Garcia Campos.
2014 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2016 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
2017 https://bugs.webkit.org/show_bug.cgi?id=135934
2019 Reviewed by Gustavo Noronha Silva.
2021 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
2022 The gir files should installed in $datadir/gir-1.0/ together with all other
2023 gir files. We don't need to install introspection files in a versioned
2024 directory because their filenames already contain the binary version. But before
2025 r171598, the files were only installed to the right directory if the
2026 gobject-instrospection pkg-config file was in the same prefix than the one we
2027 wanted to install, because the gir and typelibs directories were extracted from
2028 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
2029 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
2030 like we do in the autotools build.
2032 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
2033 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2034 * Source/cmake/OptionsGTK.cmake: Define
2035 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2037 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2039 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
2040 https://bugs.webkit.org/show_bug.cgi?id=135836
2042 Reviewed by Philippe Normand.
2044 * Source/PlatformGTK.cmake: Add install command to also install
2045 the GObject DOM bindings API docs.
2047 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
2049 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
2050 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
2051 re-set CMAKE_C_FLAGS with the new string. The two flags should really
2052 be appended to CMAKE_C_FLAGS and the same variable re-set with the
2055 * Source/cmake/OptionsCommon.cmake:
2057 2014-08-13 Alex Christensen <achristensen@webkit.org>
2059 Progress towards CMake on Mac.
2060 https://bugs.webkit.org/show_bug.cgi?id=135819
2062 Reviewed by Laszlo Gombos.
2064 * Source/cmake/OptionsMac.cmake:
2065 Disable some more features temporarily to get CMake working.
2066 * Source/cmake/WebKitMacros.cmake:
2067 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
2069 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2071 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
2072 https://bugs.webkit.org/show_bug.cgi?id=135798
2074 Reviewed by Philippe Normand.
2076 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
2078 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2079 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2080 https://bugs.webkit.org/show_bug.cgi?id=133317
2082 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2084 Reviewed by Philippe Normand.
2086 No new tests since no new functionality has been added.
2088 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2090 2014-08-11 Commit Queue <commit-queue@webkit.org>
2092 Unreviewed, rolling out r172393.
2093 https://bugs.webkit.org/show_bug.cgi?id=135796
2095 discussion needed about GnuTLS version bump on the bots
2096 (Requested by philn on #webkit).
2100 https://bugs.webkit.org/show_bug.cgi?id=133317
2101 http://trac.webkit.org/changeset/172393
2103 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2104 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2105 https://bugs.webkit.org/show_bug.cgi?id=133317
2107 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2109 Reviewed by Philippe Normand.
2111 No new tests since no new functionality has been added.
2113 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2115 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2117 [GTK] Adds stubs for all subtle crypto algorithm implemntations
2118 https://bugs.webkit.org/show_bug.cgi?id=133316
2120 Reviewed by Philippe Normand.
2122 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
2123 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
2124 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
2126 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
2128 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
2130 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2132 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2134 [GTK] REGRESSION(r166239): The ld version script is not being used
2135 https://bugs.webkit.org/show_bug.cgi?id=135694
2137 Reviewed by Martin Robinson.
2139 Move the symbols filter file from Tools/gtk to Source/cmake and rename
2140 it as gtksymbols.filter. Also updated it, since some of the symbols
2141 exported were renamed.
2143 * Source/cmake/OptionsGTK.cmake:
2144 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
2146 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2148 [GTK] Child processes should be installed in a versioned directory
2149 https://bugs.webkit.org/show_bug.cgi?id=135754
2151 Reviewed by Gustavo Noronha Silva.
2153 Define LIBEXEC_INSTALL_DIR as
2154 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
2155 so that the child processes are installed in $libexec/webkitgtk-4.0.
2156 This makes it possible to install 2.6 in parallel to older versions.
2158 * Source/cmake/OptionsGTK.cmake:
2160 2014-08-08 Alex Christensen <achristensen@webkit.org>
2162 Progress towards using CMake on Mac.
2163 https://bugs.webkit.org/show_bug.cgi?id=135662
2165 Reviewed by Laszlo Gombos.
2168 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
2169 * Source/cmake/WebKitFeatures.cmake:
2170 * Source/cmakeconfig.h.cmake:
2171 Added features that are needed by the Mac port.
2172 * Source/cmake/OptionsMac.cmake:
2173 Enable CSS_IMAGE_SET based on FeatureDefines.h.
2174 Disable the FTL with CMake for now.
2175 * Source/cmake/OptionsEFL.cmake:
2176 * Source/cmake/OptionsGTK.cmake:
2177 Enable subpixel layout to not conflict with FeatureDefines.h
2179 2014-08-08 Simon Fraser <simon.fraser@apple.com>
2181 Undo some erroneous changes to the Xcode scheme files from r172259.
2183 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2184 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2186 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
2188 [CMake] Drop the required version of CMake down to 2.8.8
2189 https://bugs.webkit.org/show_bug.cgi?id=135713
2191 Reviewed by Alex Christensen.
2193 * CMakeLists.txt: Require CMake 2.8.8.
2195 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
2197 Get rid of INPUT_SPEECH
2198 https://bugs.webkit.org/show_bug.cgi?id=135672
2200 Reviewed by Andreas Kling.
2202 * Source/cmake/OptionsMac.cmake:
2203 * Source/cmake/WebKitFeatures.cmake:
2204 * Source/cmakeconfig.h.cmake:
2206 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
2208 [GTK] Disable IndexedDB
2209 https://bugs.webkit.org/show_bug.cgi?id=135692
2211 Reviewed by Carlos Garcia Campos.
2213 * Source/cmake/OptionsGTK.cmake:
2215 2014-08-06 Dean Jackson <dino@apple.com>
2217 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
2218 https://bugs.webkit.org/show_bug.cgi?id=135675
2220 Reviewed by Sam Weinig.
2222 * Source/cmake/OptionsGTK.cmake:
2223 * Source/cmake/OptionsMac.cmake:
2224 * Source/cmake/WebKitFeatures.cmake:
2225 * Source/cmakeconfig.h.cmake:
2227 2014-08-06 David Farler <dfarler@apple.com>
2229 Unreviewed build fix: Make includes semicolon in assignment.
2231 * Makefile.shared: Remove a ;
2233 2014-08-06 David Farler <dfarler@apple.com>
2235 Set DSYMUTIL_NUM_THREADS to the number of logical cores
2236 https://bugs.webkit.org/show_bug.cgi?id=135655
2238 Reviewed by Mark Rowe.
2240 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
2242 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
2244 [GTK] Be able to disable gtk2 dependency
2245 https://bugs.webkit.org/show_bug.cgi?id=135505
2247 Reviewed by Gustavo Noronha Silva.
2249 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
2250 required when it's enabled. It's enabled by default.
2252 * Source/cmake/OptionsGTK.cmake:
2254 2014-08-05 Alex Christensen <achristensen@webkit.org>
2257 https://bugs.webkit.org/show_bug.cgi?id=135620
2259 Reviewed by Laszlo Gombos.
2261 * Source/cmake/OptionsMac.cmake:
2262 Use UDIS86 by default on Mac.
2264 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
2266 Add a flag for the CSS Selectors level 4 implementation
2267 https://bugs.webkit.org/show_bug.cgi?id=135535
2269 Reviewed by Andreas Kling.
2271 * Source/cmake/OptionsEfl.cmake:
2272 * Source/cmake/OptionsGTK.cmake:
2273 * Source/cmake/WebKitFeatures.cmake:
2274 * Source/cmakeconfig.h.cmake:
2276 2014-08-04 Alex Christensen <achristensen@webkit.org>
2278 Progress towards CMake on Mac.
2279 https://bugs.webkit.org/show_bug.cgi?id=135528
2281 Reviewed by Gyuyoung Kim.
2283 * Source/cmake/OptionsMac.cmake:
2284 Made options list based on FeatureDefines.xcconfig files.
2286 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2288 [GTK] Windowing target support should reflect the support in the GTK+ dependency
2289 https://bugs.webkit.org/show_bug.cgi?id=134736
2291 Reviewed by Martin Robinson.
2293 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
2294 support the X11 or Wayland windowing targets -- instead, if there's no support
2295 the specific target is disabled, and an error is thrown only if neither of the
2296 backends is enabled at the end..
2297 For now the X11 target remains enabled by default, and the Wayland target is
2298 kept disabled. Once it's possible to have both targets enabled at runtime in
2299 WebKit, the Wayland target will be enabled as well and we'll leave it to the
2300 GTK+ dependency to determine which targets can be enabled.
2302 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2304 [CMake] Add FindWayland.cmake
2305 https://bugs.webkit.org/show_bug.cgi?id=135540
2307 Reviewed by Martin Robinson.
2309 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
2310 dependency. For now bundles the wayland-client, wayland-server and
2311 wayland-egl pkg-config targets into one dependency, but these could
2312 be split in the future if necessary.
2314 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
2316 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
2317 https://bugs.webkit.org/show_bug.cgi?id=135553
2319 Reviewed by Gyuyoung Kim.
2321 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
2322 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
2324 * Source/cmake/OptionsEfl.cmake:
2326 2014-08-01 Bear Travis <betravis@adobe.com>
2328 [Feature Queries] Enable Feature Queries on EFL/GTK
2329 https://bugs.webkit.org/show_bug.cgi?id=134902
2331 Reviewed by Benjamin Poulain.
2333 Enable CSS Feature Queries by default on the EFL and GTK
2336 * Source/cmake/OptionsEfl.cmake:
2337 * Source/cmake/OptionsGTK.cmake:
2339 2014-08-01 Alex Christensen <achristensen@webkit.org>
2341 Progress towards cmake on Windows.
2342 https://bugs.webkit.org/show_bug.cgi?id=135484
2344 Reviewed by Martin Robinson.
2347 Added Mac to list of ports, even though it is not done yet.
2348 Changed minimum bison version to version installed on Macs.
2349 * Source/cmake/OptionsAppleWin.cmake:
2350 Added some definitions.
2351 * Source/cmake/OptionsEfl.cmake:
2352 * Source/cmake/OptionsGTK.cmake:
2353 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2354 * Source/cmake/OptionsMac.cmake: Added blank for now.
2355 * Source/cmake/OptionsWinCairo.cmake:
2356 * Source/cmake/OptionsWindows.cmake:
2357 Added some definitions.
2358 Removed /WX (warnings treated as error while compiling).
2359 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2361 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2363 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2364 https://bugs.webkit.org/show_bug.cgi?id=135501
2366 Reviewed by Gyuyoung Kim.
2368 Use PROJECT_VERSION_MICRO instead.
2370 * Source/cmake/OptionsEfl.cmake:
2371 * Source/cmake/OptionsGTK.cmake:
2372 * Source/cmake/WebKitHelpers.cmake:
2374 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2376 [EFL] Bump ewebkit version to 1.11
2377 https://bugs.webkit.org/show_bug.cgi?id=135487
2379 Reviewed by Gyuyoung Kim.
2381 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2383 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2385 [EFL] Add support for building with Geoclue2.
2386 https://bugs.webkit.org/show_bug.cgi?id=135455
2388 Reviewed by Gyuyoung Kim.
2390 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2393 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2395 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2397 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2399 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2401 [GTK] Bump binary version for 2.6
2402 https://bugs.webkit.org/show_bug.cgi?id=133724
2404 Reviewed by Philippe Normand.
2406 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
2407 update library version numbers.
2409 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
2411 [CMake] Bump the minimum required version
2412 https://bugs.webkit.org/show_bug.cgi?id=135382
2414 Reviewed by Gyuyoung Kim.
2416 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
2417 we introduced usage of target_include_directories().
2419 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
2421 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
2422 https://bugs.webkit.org/show_bug.cgi?id=135376
2424 Reviewed by Gyuyoung Kim.
2426 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
2428 * Source/cmake/OptionsEfl.cmake:
2429 * Source/cmake/OptionsGTK.cmake:
2431 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
2433 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
2434 https://bugs.webkit.org/show_bug.cgi?id=135288
2436 Reviewed by Martin Robinson.
2438 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
2439 datadir to pkgconfig
2440 * Source/cmake/OptionsGTK.cmake: define install directories early
2441 enough to be used in FindGObjectIntrospection.cmake
2443 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
2445 Remove CSS_EXCLUSIONS compile flag and leftover code
2446 https://bugs.webkit.org/show_bug.cgi?id=135175
2448 Reviewed by Zoltan Horvath.
2450 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
2451 stubs. This removes the flag and the useless code.
2453 * Source/cmake/WebKitFeatures.cmake:
2454 * Source/cmakeconfig.h.cmake:
2456 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2458 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2459 https://bugs.webkit.org/show_bug.cgi?id=135114
2461 Fix build with GStreamer 1.4
2463 Reviewed by Philippe Normand.
2465 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2466 gst-mpegts component instead of the unstable 1.3.x verstions.
2468 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2470 [GTK] Simplify make-dist command line arguments
2471 https://bugs.webkit.org/show_bug.cgi?id=134832
2473 Reviewed by Martin Robinson.
2475 * Source/PlatformGTK.cmake: Use --version instead of
2476 --tarball-root when running make-dist.py.
2478 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2480 Add a manual test for r135044
2482 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2484 Rubber-stamped by Andy Estes.
2486 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2488 2014-07-18 Dana Burkart <dburkart@apple.com>
2490 Add a new 'analyze' target to the makefile. This will make use of a new
2491 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2493 https://bugs.webkit.org/show_bug.cgi?id=135057
2494 <rdar://problem/10193187>
2496 Reviewed by David Kilzer.
2502 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2504 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2505 https://bugs.webkit.org/show_bug.cgi?id=134963
2507 Reviewed by Gyuyoung Kim.
2509 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2511 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2513 2014-07-14 Daniel Bates <dabates@apple.com>
2515 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2516 https://bugs.webkit.org/show_bug.cgi?id=134905
2517 <rdar://problem/16602779>
2519 Reviewed by Simon Fraser.
2521 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2522 on the tapped element when processing a touchend as a result of finger pressing and releasing
2523 on the same element that is initially positioned outside the visible content area.
2525 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2527 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2529 [GTK] Enable VIDEO_TRACK by default
2530 https://bugs.webkit.org/show_bug.cgi?id=134801
2532 Reviewed by Philippe Normand.
2534 * Source/cmake/OptionsGTK.cmake:
2536 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2538 [GTK][CMake] Add a 'distcheck' target
2539 https://bugs.webkit.org/show_bug.cgi?id=130675
2541 Reviewed by Gustavo Noronha Silva.
2543 * Source/PlatformGTK.cmake: Add distcheck target.
2545 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2547 [GTK] Use the same default options for production builds that previous stable releases
2548 https://bugs.webkit.org/show_bug.cgi?id=134589
2550 Reviewed by Martin Robinson.
2552 Change the default value of some features to match our stable releases.
2553 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2554 canvas depend on whether cairo-gl is found.
2556 * Source/cmake/FindCairoGL.cmake: Added.
2557 * Source/cmake/OptionsGTK.cmake:
2559 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2561 [EFL] Support Encrypted Media Extensions.
2562 https://bugs.webkit.org/show_bug.cgi?id=134750
2564 Reviewed by Gyuyoung Kim.
2566 Webkit needs to play encrypted media contents when media player
2567 is played by Media source extensions and normal video procedure.
2569 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2571 2014-07-08 Alex Christensen <achristensen@webkit.org>
2573 Steps towards CMake on Windows.
2574 https://bugs.webkit.org/show_bug.cgi?id=134716
2576 Reviewed by Martin Robinson.
2579 Added AppleWin and WinCairo to list of CMake ports.
2580 * Source/cmake/OptionsAppleWin.cmake: Added.
2581 * Source/cmake/OptionsWinCairo.cmake: Added.
2582 * Source/cmake/OptionsWindows.cmake:
2583 Windows needs to use the system malloc. Other options to come.
2585 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2587 [EFL] Support Geolocation
2588 https://bugs.webkit.org/show_bug.cgi?id=134439
2590 Reviewed by Antonio Gomes.
2592 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2594 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2596 Broken build with build-webkit --no-video
2597 https://bugs.webkit.org/show_bug.cgi?id=134587
2599 Reviewed by Darin Adler.
2601 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2603 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2605 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2607 [GTK] The list of features shown by cmake is not accurate
2608 https://bugs.webkit.org/show_bug.cgi?id=134588
2610 Reviewed by Gustavo Noronha Silva.
2612 The problem is that some options might change after the feature
2613 list has been printed.
2615 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2616 setting the default values of features and set WEBGL value
2617 depending on the dependencies, and API_TEST depending on whether
2618 developer mode is enabled or not.
2620 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2622 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2623 https://bugs.webkit.org/show_bug.cgi?id=134578
2625 Reviewed by Gyuyoung Kim.
2627 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2628 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2629 disable related option if it is not ON.
2631 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2632 * Source/cmake/OptionsGTK.cmake: Ditto.
2633 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2635 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2637 [GTK] make dist is broken
2638 https://bugs.webkit.org/show_bug.cgi?id=134542
2640 Reviewed by Martin Robinson.
2642 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2644 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2646 [CMake] Add necessary support for building for the Wayland target
2647 https://bugs.webkit.org/show_bug.cgi?id=134160
2649 Reviewed by Darin Adler.
2651 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2652 is enabled, and that its version matches the version of the generic package. Same
2653 for the gtk+-wayland-3.0 package and the Wayland target.
2654 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2655 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2656 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2657 so they keep building the TestNetscapePlugin target.
2658 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2659 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2660 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2661 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2662 the minimum required version as soon as that target is enabled. Only search for GLX
2663 if the X11 target is enabled.
2665 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2667 Add support for HTMLImageElement's sizes attribute
2668 https://bugs.webkit.org/show_bug.cgi?id=133620
2670 Reviewed by Dean Jackson.
2672 Added an ENABLE_PICTURE_SIZES compile flag.
2674 * Source/cmake/WebKitFeatures.cmake:
2675 * Source/cmakeconfig.h.cmake:
2677 2014-06-26 Daniel Bates <dabates@apple.com>
2679 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2680 https://bugs.webkit.org/show_bug.cgi?id=134309
2681 <rdar://problem/17427385>
2683 Reviewed by Darin Adler.
2685 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2688 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2690 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2692 Remove build guard for progress element
2693 https://bugs.webkit.org/show_bug.cgi?id=134292
2695 Reviewed by Benjamin Poulain.
2697 The build flag is no longer needed as it is always on.
2699 * Source/cmake/WebKitFeatures.cmake:
2700 * Source/cmakeconfig.h.cmake:
2702 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2704 [EFL] Platform support for WebSpeech feature.
2705 https://bugs.webkit.org/show_bug.cgi?id=116438
2707 Reviewed by Csaba Osztrogonác.
2709 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2711 * Source/cmake/OptionsEfl.cmake:
2712 * Source/cmake/WebKitFeatures.cmake:
2714 2014-06-23 Philippe Normand <pnormand@igalia.com>
2716 Unreviewed, GTK build fix after r170266.
2718 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2720 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2722 Disable gamepad feature on EFL and GTK ports by default
2723 https://bugs.webkit.org/show_bug.cgi?id=134169
2725 Reviewed by Brady Eidson.
2727 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
2729 2014-06-21 Brady Eidson <beidson@apple.com>
2731 Gamepad API - Deprecate the existing implementation
2732 https://bugs.webkit.org/show_bug.cgi?id=134108
2734 Reviewed by Timothy Hatcher.
2736 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2737 -Add the "Deprecated" suffix to some implementation files
2739 * Source/cmake/OptionsEfl.cmake:
2740 * Source/cmake/OptionsGTK.cmake:
2741 * Source/cmake/WebKitFeatures.cmake:
2742 * Source/cmakeconfig.h.cmake:
2744 2014-06-21 Commit Queue <commit-queue@webkit.org>
2746 Unreviewed, rolling out r170244.
2747 https://bugs.webkit.org/show_bug.cgi?id=134157
2749 GTK/EFL bindings generator works differently, making this
2750 patch not work there. Will fix entire patch after a rollout.
2751 (Requested by bradee-oh on #webkit).
2755 "Gamepad API - Deprecate the existing implementation"
2756 https://bugs.webkit.org/show_bug.cgi?id=134108
2757 http://trac.webkit.org/changeset/170244
2759 2014-06-21 Brady Eidson <beidson@apple.com>
2761 Gamepad API - Deprecate the existing implementation
2762 https://bugs.webkit.org/show_bug.cgi?id=134108
2764 Reviewed by Timothy Hatcher.
2766 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2767 -Add the "Deprecated" suffix to some implementation files
2769 * Source/cmake/OptionsEfl.cmake:
2770 * Source/cmake/OptionsGTK.cmake:
2771 * Source/cmake/WebKitFeatures.cmake:
2772 * Source/cmakeconfig.h.cmake:
2774 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2776 Removing PAGE_VISIBILITY_API compile guard.
2777 https://bugs.webkit.org/show_bug.cgi?id=133844
2779 Reviewed by Gavin Barraclough.
2781 * Source/cmake/OptionsEfl.cmake:
2782 * Source/cmake/OptionsGTK.cmake:
2783 * Source/cmake/WebKitFeatures.cmake:
2784 * Source/cmakeconfig.h.cmake:
2786 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2788 [EFL][CMAKE] Disable WebKit1 build as a default
2789 https://bugs.webkit.org/show_bug.cgi?id=134093
2791 Reviewed by Gyuyoung Kim.
2793 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2795 * Source/cmake/OptionsEfl.cmake:
2797 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2799 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2800 https://bugs.webkit.org/show_bug.cgi?id=130389
2802 Reviewed by Mark Lam.
2804 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2805 into !ENABLE(JIT) since they are mutually exclusive.
2807 * Source/cmake/OptionsEfl.cmake:
2808 * Source/cmake/OptionsGTK.cmake:
2809 * Source/cmake/WebKitFeatures.cmake:
2810 * Source/cmakeconfig.h.cmake:
2812 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2814 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2815 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2816 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2817 by the plugin process, but it is searched and utilized separately.
2819 Rubber-stamped by Carlos Garcia Campos.
2821 * Source/cmake/OptionsGTK.cmake:
2823 2014-06-16 Commit Queue <commit-queue@webkit.org>
2825 Unreviewed, rolling out r170003.
2826 https://bugs.webkit.org/show_bug.cgi?id=133938
2828 This patch broke GTK build (Requested by kczech on #webkit).
2832 "[EFL] Platform support for WebSpeech feature."
2833 https://bugs.webkit.org/show_bug.cgi?id=116438
2834 http://trac.webkit.org/changeset/170003
2836 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2838 [EFL] Platform support for WebSpeech feature.
2839 https://bugs.webkit.org/show_bug.cgi?id=116438
2841 Reviewed by Gyuyoung Kim.
2843 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2845 * Source/cmake/OptionsEfl.cmake:
2846 * Source/cmake/WebKitFeatures.cmake:
2848 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2850 [EFL] Remove duplicated compiler flag
2851 https://bugs.webkit.org/show_bug.cgi?id=133838
2853 Reviewed by Anders Carlsson.
2855 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2856 it added to common compiler options. So, it is duplicated.
2858 * Source/cmake/WebKitHelpers.cmake:
2860 2014-06-11 Commit Queue <commit-queue@webkit.org>
2862 Unreviewed, rolling out r169877.
2863 https://bugs.webkit.org/show_bug.cgi?id=133784
2865 rollout wrong build fix approach for EFL port (Requested by
2866 gyuyoung on #webkit).
2870 "Unreviewed, EFL build fix since r169869."
2871 http://trac.webkit.org/changeset/169877
2873 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2875 Unreviewed, EFL build fix since r169869.
2877 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2879 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2881 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2883 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2885 * Source/cmake/WebKitHelpers.cmake:
2887 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2889 [GTK] Make it possible to build with FTL enabled
2890 https://bugs.webkit.org/show_bug.cgi?id=133219
2892 Reviewed by Philippe Normand.
2894 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2896 * Source/cmake/OptionsGTK.cmake:
2898 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2900 [CMake] Clean up FAST_MOBILE_SCROLLING
2901 https://bugs.webkit.org/show_bug.cgi?id=133342
2903 Reviewed by Gyuyoung Kim.
2905 FAST_MOBILE_SCROLLING was removed in r168726.
2907 * Source/cmake/OptionsEfl.cmake:
2908 * Source/cmake/OptionsGTK.cmake:
2909 * Source/cmake/WebKitFeatures.cmake:
2910 * Source/cmakeconfig.h.cmake:
2912 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2915 https://bugs.webkit.org/show_bug.cgi?id=132863
2917 Reviewed by Csaba Osztrogonác.
2919 * Source/cmake/OptionsEfl.cmake:
2920 * Source/cmake/OptionsGTK.cmake:
2921 * Source/cmake/WebKitFeatures.cmake:
2922 * Source/cmakeconfig.h.cmake:
2924 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2926 Allow building CMake based ports with WEB_REPLAY
2927 https://bugs.webkit.org/show_bug.cgi?id=133154
2929 Reviewed by Csaba Osztrogonác.
2931 * Source/cmake/WebKitFeatures.cmake:
2932 * Source/cmakeconfig.h.cmake:
2934 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2936 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2937 https://bugs.webkit.org/show_bug.cgi?id=132907
2939 Reviewed by Gyuyoung Kim.
2941 * Source/cmake/FindLIBCXXABI.cmake: Added.
2942 * Source/cmake/OptionsEfl.cmake:
2944 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2946 [EFL] Turn on ENABLE_CSS_FILTERS
2947 https://bugs.webkit.org/show_bug.cgi?id=133153
2949 Reviewed by Gyuyoung Kim.
2951 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2953 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2955 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2956 https://bugs.webkit.org/show_bug.cgi?id=132819
2958 Reviewed by Carlos Garcia Campos.
2960 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2962 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2963 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2965 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2967 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2969 [CMake] Support building with Debug Fission
2970 https://bugs.webkit.org/show_bug.cgi?id=131177
2972 Reviewed by Philippe Normand.
2974 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2975 of http://gcc.gnu.org/wiki/DebugFission.
2977 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2979 [GTK] Rename translation domain as WebKit2GTK-3.0
2980 https://bugs.webkit.org/show_bug.cgi?id=132953
2982 Reviewed by Gustavo Noronha Silva.
2984 * Source/cmake/OptionsGTK.cmake:
2986 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2988 support for navigator.hardwareConcurrency
2989 https://bugs.webkit.org/show_bug.cgi?id=132588
2991 Reviewed by Filip Pizlo.
2993 * Source/cmake/OptionsEfl.cmake:
2994 * Source/cmake/OptionsGTK.cmake:
2995 * Source/cmake/WebKitFeatures.cmake:
2996 * Source/cmakeconfig.h.cmake:
2998 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3000 Remove CSS_STICKY_POSITION guards
3001 https://bugs.webkit.org/show_bug.cgi?id=132676
3003 Reviewed by Simon Fraser.
3005 * Source/cmake/OptionsEfl.cmake:
3006 * Source/cmake/OptionsGTK.cmake:
3007 * Source/cmake/WebKitFeatures.cmake:
3008 * Source/cmakeconfig.h.cmake:
3010 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
3012 Unreviewed. Bump version numbers.
3014 * Source/cmake/OptionsGTK.cmake:
3016 2014-05-10 Martin Robinson <mrobinson@igalia.com>
3018 [GTK][CMake] Unable to do make install
3019 https://bugs.webkit.org/show_bug.cgi?id=130188
3021 Reviewed by Carlos Garcia Campos.
3023 Only try to install the HTML documentation if the build is configured to generate it via
3024 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3025 to keep the HTML documentation directory as an installation source.
3027 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3028 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3029 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
3030 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
3031 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3033 2014-05-09 Anders Carlsson <andersca@apple.com>
3035 Rename WebKit2.framework to WebKit.framework
3036 https://bugs.webkit.org/show_bug.cgi?id=132743
3037 <rdar://problem/15920046>
3039 Reviewed by Dan Bernstein.
3042 Build WebKit.xcodeproj before WebKit2.xcodeproj.
3044 * WebKit.xcworkspace/xcshareddata/xcschemes/:
3047 2014-05-06 David Kilzer <ddkilzer@apple.com>
3049 Add Makefile targets for copying static libraries (LLVM and WKSI)
3050 <http://webkit.org/b/132619>
3052 Reviewed by Mark Rowe.
3055 (MODULES): Add WebKitLibraries.
3057 2014-05-06 Commit Queue <commit-queue@webkit.org>
3059 Unreviewed, rolling out r168304.
3060 https://bugs.webkit.org/show_bug.cgi?id=132607
3062 Broke the build (Requested by KaL on #webkit).
3066 "[GTK][CMake] Unable to do make install"
3067 https://bugs.webkit.org/show_bug.cgi?id=130188
3068 http://trac.webkit.org/changeset/168304
3070 2014-05-05 Martin Robinson <mrobinson@igalia.com>
3072 [GTK][CMake] Unable to do make install
3073 https://bugs.webkit.org/show_bug.cgi?id=130188
3075 Reviewed by Carlos Garcia Campos.
3077 Only try to install the HTML documentation if the build is configured to generate it via
3078 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3079 to keep the HTML documentation directory as an installation source.
3081 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3082 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3083 never added to the default target, but will be triggered by build-webkit, so that
3084 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
3085 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3087 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3089 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
3090 https://bugs.webkit.org/show_bug.cgi?id=132525
3092 Reviewed by Martin Robinson.
3094 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
3095 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
3096 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
3098 2014-05-01 David Kilzer <ddkilzer@apple.com>
3100 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
3101 <http://webkit.org/b/132432>
3103 Reviewed by Tim Horton.
3105 * Source/cmake/WebKitFeatures.cmake:
3106 * Source/cmakeconfig.h.cmake:
3107 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
3109 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3111 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
3113 Reviewed by Dan Bernstein/Anders Carlsson.
3115 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3116 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3118 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3120 Let Xcode have its way with the WebKit workspace.
3122 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3123 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3125 2014-04-29 Martin Robinson <mrobinson@igalia.com>
3127 [GTK] Make it easier to run CMake for downstreams
3128 https://bugs.webkit.org/show_bug.cgi?id=132370
3130 Reviewed by Carlos Garcia Campos.
3132 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
3134 2014-04-27 Joonghun Park <jh718.park@samsung.com>
3136 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
3137 https://bugs.webkit.org/show_bug.cgi?id=132176
3139 Reviewed by Gyuyoung Kim.
3141 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
3143 * Source/cmake/OptionsEfl.cmake:
3145 2014-04-22 Alex Christensen <achristensen@webkit.org>
3147 Removed old stdbool and inttypes headers.
3148 https://bugs.webkit.org/show_bug.cgi?id=131966
3150 Reviewed by Brent Fulgham.
3152 * Source/cmake/OptionsWindows.cmake:
3153 * Source/cmake/WebKitPackaging.cmake:
3154 Removed references to os-win32 directory.
3156 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
3158 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
3160 Rubber-stamped by Carlos Garcia Campos.
3162 * Source/cmake/WebKitFeatures.cmake:
3164 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
3166 Empty RenderInline objects should not be line break objects.
3168 https://bugs.webkit.org/show_bug.cgi?id=131861
3169 <rdar://problem/15663617>
3171 Reviewed by David Hyatt.
3173 * ManualTests/empty-inline-as-line-break-position.html: Added.
3174 This issue wouldn't reproduce in WebKitTestRunner.
3176 2014-04-19 Brent Fulgham <bfulgham@apple.com>
3178 Revert unintended workspace change in my last commit.
3180 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
3181 Scheme type back to Debug.
3183 2014-04-18 Philippe Normand <pnormand@igalia.com>
3185 Remove NETWORK_INFO support
3186 https://bugs.webkit.org/show_bug.cgi?id=131841
3188 Reviewed by Gyuyoung Kim.
3190 * Source/cmake/OptionsEfl.cmake:
3191 * Source/cmake/OptionsGTK.cmake:
3192 * Source/cmake/WebKitFeatures.cmake:
3193 * Source/cmakeconfig.h.cmake:
3195 2014-04-17 Darin Adler <darin@apple.com>
3197 Try to fix EFL and GTK builds.
3199 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
3200 * Source/cmake/OptionsGTK.cmake: Ditto.
3201 * Source/cmakeconfig.h.cmake: Ditto.
3203 2014-04-16 Brendan Long <b.long@cablelabs.com>
3205 [GTK][CMAKE] build-webkit doesn't detect when the build fails
3206 https://bugs.webkit.org/show_bug.cgi?id=130148
3208 Reviewed by Martin Robinson.
3210 * Source/cmake/OptionsGTK.cmake: Replace CMake's automatic make -i with make -k, which still continues after errors, but correctly reports tha the build failed.
3212 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
3214 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
3215 https://bugs.webkit.org/show_bug.cgi?id=131725
3217 Reviewed by Philippe Normand.
3219 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
3220 instead of GTK_UNIX_PRINTING_FOUND and set the macro
3221 HAVE_GTK_UNIX_PRINTING to 1 when found.
3223 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
3225 Web Replay: memoize nondeterministic attributes of the Navigator interface
3226 https://bugs.webkit.org/show_bug.cgi?id=131340
3228 Reviewed by Timothy Hatcher.
3230 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
3232 2014-04-09 Brendan Long <b.long@cablelabs.com>
3234 [GStreamer] Expose MPEG-TS metadata
3235 https://bugs.webkit.org/show_bug.cgi?id=122001
3237 Reviewed by Eric Carlson.
3239 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
3240 * Source/cmake/OptionsEfl.cmake: Same.
3241 * Source/cmake/OptionsGTK.cmake: Same.
3243 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
3245 Web Replay: memoize nondeterministic attributes of the Screen interface
3246 https://bugs.webkit.org/show_bug.cgi?id=131339
3248 Reviewed by Timothy Hatcher.
3250 * ManualTests/inspector/replay-window-screen.html: Added.
3252 2014-04-08 Martin Robinson <mrobinson@igalia.com>
3254 [GTK] Remove the WebKitGTK+ WebKit 1 code
3255 https://bugs.webkit.org/show_bug.cgi?id=131399
3257 Reviewed by Anders Carlsson.
3259 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
3260 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
3262 2014-04-08 Dan Bernstein <mitz@apple.com>
3264 Added bmalloc to the WebKit workspace.
3265 https://bugs.webkit.org/show_bug.cgi?id=131362
3267 Reviewed by Geoff Garen.
3269 * WebKit.xcworkspace/contents.xcworkspacedata:
3270 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3271 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3273 2014-04-08 Geoffrey Garen <ggaren@apple.com>
3275 Build bmalloc on iOS too
3276 https://bugs.webkit.org/show_bug.cgi?id=131381
3278 Reviewed by Andreas Kling.
3280 * Source/Makefile: Build it.
3282 2014-04-07 Geoffrey Garen <ggaren@apple.com>
3284 Build bmalloc on Mac
3285 https://bugs.webkit.org/show_bug.cgi?id=131333
3287 Reviewed by Mark Rowe.
3290 * WebKitBuild: Added.
3291 * WebKitBuild/Debug: Added.
3293 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
3295 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
3296 https://bugs.webkit.org/show_bug.cgi?id=131257
3298 Reviewed by Gyuyoung Kim.
3300 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
3302 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3304 [GTK] Stop trying to install WebKit1 documentation
3305 https://bugs.webkit.org/show_bug.cgi?id=131278
3307 Reviewed by Martin Robinson.
3309 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
3310 built anymore since r166584. This fixes `make install'.
3312 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
3314 Web Replay: capture and replay wheel events and scroll commands
3315 https://bugs.webkit.org/show_bug.cgi?id=129402
3317 Reviewed by Timothy Hatcher.
3319 * ManualTests/inspector/replay-wheel-events.html: Added.
3321 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3323 [GTK][CMake] Remove FindXt.cmake.
3324 https://bugs.webkit.org/show_bug.cgi?id=131227
3326 Reviewed by Anders Carlsson.
3328 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
3330 * Source/cmake/FindXt.cmake: Removed.
3331 * Source/cmake/OptionsGTK.cmake:
3333 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3335 [EFL] Build error due to changed path of generated js files.
3336 https://bugs.webkit.org/show_bug.cgi?id=131215
3338 Reviewed by Gyuyoung Kim.
3340 r166648 fixed the generation of some .js files on GTK. Due to some
3341 changes in the paths it causes a build error on EFL.
3343 * Source/PlatformEfl.cmake:
3344 Replaced path for two derived source files.
3346 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3348 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
3349 https://bugs.webkit.org/show_bug.cgi?id=131095
3351 Reviewed by Martin Robinson.
3353 One needs to take into account OpenGL's include directory found via
3354 find_package() when looking for glx.h, since if the former is a
3355 non-standard location the latter will also be. If this is not it is
3356 possible that OpenGL is found but GLX support is not properly detected.
3358 * Source/cmake/OptionsGTK.cmake:
3360 2014-04-02 Martin Robinson <mrobinson@igalia.com>
3362 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
3363 https://bugs.webkit.org/show_bug.cgi?id=130343
3365 Reviewed by Gustavo Noronha Silva.
3367 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
3369 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
3371 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3373 [CMake] Drop port check from FindEGL.cmake.
3374 https://bugs.webkit.org/show_bug.cgi?id=131091
3376 Reviewed by Gyuyoung Kim.
3378 There is no reason to mark some variables as advanced only for the
3381 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
3382 as advanced regardless of the port.
3384 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3386 Fix the !ENABLE(BATTERY_STATUS) build
3387 https://bugs.webkit.org/show_bug.cgi?id=130183
3389 Reviewed by Anders Carlsson.
3391 * Source/cmake/OptionsEfl.cmake:
3393 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3395 [CMake][GTK] Do not expand variables twice in if() checks.
3396 https://bugs.webkit.org/show_bug.cgi?id=130964
3398 Reviewed by Martin Robinson.
3400 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
3401 to be checked by the if clause. This is not what we want, and
3402 configuration fails when, say, GLX support wasn't found as the if
3403 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
3405 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
3408 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3410 [GTK] Remove scripts code only applicable to autotools
3411 https://bugs.webkit.org/show_bug.cgi?id=130841
3413 Reviewed by Anders Carlsson.
3415 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
3417 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3419 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
3420 https://bugs.webkit.org/show_bug.cgi?id=130936
3422 Reviewed by Carlos Garcia Campos.
3424 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
3426 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
3428 [GTK] Add support for GTK3 plugins
3429 https://bugs.webkit.org/show_bug.cgi?id=130599
3431 Reviewed by Martin Robinson.
3433 * Source/cmake/OptionsGTK.cmake:
3435 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3437 [EFL] Bump glib version from 2.36 to 2.38
3438 https://bugs.webkit.org/show_bug.cgi?id=130886
3440 Reviewed by Csaba Osztrogonác.
3442 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
3444 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
3446 [CSS Shapes] Remove shape-inside support
3447 https://bugs.webkit.org/show_bug.cgi?id=130698
3449 Reviewed by David Hyatt.
3451 * Source/cmake/WebKitFeatures.cmake:
3452 * Source/cmakeconfig.h.cmake:
3454 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3456 [GTK] Remove the autotools build
3457 https://bugs.webkit.org/show_bug.cgi?id=130717
3459 Reviewed by Anders Carlsson.
3461 * .gitignore: Remove references to autotools files.
3462 * GNUmakefile.am: Removed.
3463 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3464 * Source/autotools/CustomMacros.m4: Removed.
3465 * Source/autotools/FindDependencies.m4: Removed.
3466 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3467 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3468 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3469 * Source/autotools/SetupAutomake.m4: Removed.
3470 * Source/autotools/SetupCompilerFlags.m4: Removed.
3471 * Source/autotools/SetupLibtool.m4: Removed.
3472 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3473 * Source/autotools/Versions.m4: Removed.
3474 * Source/autotools/acinclude.m4: Removed.
3475 * Source/autotools/dolt.m4: Removed.
3476 * Source/autotools/gsettings.m4: Removed.
3477 * Source/cmake/OptionsGTK.cmake:
3478 * autogen.sh: Removed.
3479 * configure.ac: Removed.
3481 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3483 [EFL] Add ARM64 build support
3484 https://bugs.webkit.org/show_bug.cgi?id=130506
3486 Rubber stamped by Gyuyoung Kim.
3488 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3490 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3492 [EFL][WK2] Add NETWORK_PROCESS build option
3493 https://bugs.webkit.org/show_bug.cgi?id=130131
3495 Reviewed by Gyuyoung Kim.
3497 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3500 * Source/cmake/OptionsEfl.cmake:
3502 2014-03-24 Brian Burg <bburg@apple.com>
3504 Web Replay: capture and replay keyboard events
3505 https://bugs.webkit.org/show_bug.cgi?id=130314
3507 Reviewed by Joseph Pecoraro.
3509 * ManualTests/inspector/replay-keyboard-events.html: Added.
3511 2014-03-24 Sangyong Park <sy302.park@gmail.com>
3513 [EFL] Inspector page is not loaded.
3514 https://bugs.webkit.org/show_bug.cgi?id=130661
3516 Reviewed by Gyuyoung Kim.
3518 Inspector page is not loaded, because some javascript files are not installed.
3519 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
3521 * Source/PlatformEfl.cmake:
3523 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3525 [EFL][GTK] Get CMake to find Freetype2 properly
3526 https://bugs.webkit.org/show_bug.cgi?id=130150
3528 Reviewed by Martin Robinson.
3530 Newer versions of CMake are not able to find Freetype2 correctly.
3531 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3532 freetype2 repo, because a completely different version number is found in freetype2.pc.
3534 * Source/cmake/FindFreetype2.cmake: Added.
3535 * Source/cmake/OptionsEfl.cmake:
3536 * Source/cmake/OptionsGTK.cmake:
3538 2014-03-20 Brian Burg <bburg@apple.com>
3540 Web Replay: capture and replay mouse events
3541 https://bugs.webkit.org/show_bug.cgi?id=129395
3543 Reviewed by Joseph Pecoraro.
3545 Create a manual test for capture/replay of mouse events.
3546 Copy over the crypto-md5.js library from SunSpider.
3548 * ManualTests/inspector/replay-mouse-events.html: Added.
3549 * ManualTests/inspector/resources/crypto-md5.js: Added.
3551 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
3553 [GTK][CMake] Add support for building with Clang
3554 https://bugs.webkit.org/show_bug.cgi?id=130260
3556 Reviewed by Martin Robinson.
3558 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
3559 to the list C compiler flags as constructed by CMake.
3560 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
3561 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3562 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3563 -fno-tree-dce should be used only for GCC.
3564 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3565 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3567 2014-03-20 Commit Queue <commit-queue@webkit.org>
3569 Unreviewed, rolling out r165962.
3570 https://bugs.webkit.org/show_bug.cgi?id=130512
3572 It broke the build (Requested by Ossy on #webkit).
3576 "[EFL][GTK] Get CMake to find Freetype2 properly"
3577 https://bugs.webkit.org/show_bug.cgi?id=130150
3578 http://trac.webkit.org/changeset/165962
3580 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3582 [EFL][GTK] Get CMake to find Freetype2 properly
3583 https://bugs.webkit.org/show_bug.cgi?id=130150
3585 Reviewed by Csaba Osztrogonác.
3587 Newer versions of CMake are not able to find Freetype2 correctly.
3588 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3589 freetype2 repo, because a completely different version number is found in freetype2.pc.
3591 * Source/cmake/FindFreetype2.cmake: Added.
3592 * Source/cmake/OptionsEfl.cmake:
3593 * Source/cmake/OptionsGTK.cmake:
3595 2014-03-17 Brendan Long <b.long@cablelabs.com>
3597 [GStreamer] human readable language code for tracks
3598 https://bugs.webkit.org/show_bug.cgi?id=124514
3600 Reviewed by Martin Robinson.
3602 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3603 * Source/cmake/FindGStreamer.cmake: Same.
3604 * Source/cmake/OptionsEfl.cmake: Same.
3605 * Source/cmake/OptionsGTK.cmake: Same.
3607 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3609 [GTK][CMake] Credential storage is not enabled
3610 https://bugs.webkit.org/show_bug.cgi?id=130149
3612 Reviewed by Philippe Normand.
3614 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3615 and look libsecret when it's enabled.
3616 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3618 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3620 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3621 https://bugs.webkit.org/show_bug.cgi?id=130155
3623 Reviewed by Philippe Normand.
3625 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3626 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3627 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3629 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3631 [EFL] Enable TOUCH_SLIDER macro.
3632 https://bugs.webkit.org/show_bug.cgi?id=130186
3634 Reviewed by Gyuyoung Kim.
3636 * Source/cmake/OptionsEfl.cmake:
3638 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3640 [GTK][CMake] Build with -fno-rtti
3641 https://bugs.webkit.org/show_bug.cgi?id=130261
3643 Reviewed by Martin Robinson.
3645 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3646 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3647 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3648 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3649 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3650 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3651 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3653 2014-03-16 Brendan Long <b.long@cablelabs.com>
3655 [GStreamer] CMake doesn't find the include path for gstreamer-base
3656 https://bugs.webkit.org/show_bug.cgi?id=130098
3658 Reviewed by Philippe Normand.
3660 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3662 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3664 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3665 https://bugs.webkit.org/show_bug.cgi?id=130276
3666 <rdar://problem/16266927>
3668 Reviewed by Simon Fraser.
3670 * ManualTests/NPN_Invoke/Info.plist:
3671 * ManualTests/NPN_Invoke/main.c:
3672 * ManualTests/accessibility/resources/AppletTest.java:
3674 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3676 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3677 https://bugs.webkit.org/show_bug.cgi?id=130258
3679 Reviewed by Martin Robinson.
3681 GCC compilers 4.7 and later are supported, so there's no need for disabling
3682 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3684 * Source/cmake/WebKitHelpers.cmake:
3686 2014-03-14 Landry Breuil <landry@openbsd.org>
3688 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3689 https://bugs.webkit.org/show_bug.cgi?id=129966
3691 Reviewed by Andreas Kling.
3693 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3694 * Source/autotools/SetupAutomake.m4:
3696 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3698 [CMake] Failure to link with older installations of WebP
3699 https://bugs.webkit.org/show_bug.cgi?id=130195
3701 Reviewed by Gustavo Noronha Silva.
3703 Fix the issue by using a temporary variable as the output parameter
3704 to check_include_files(), setting WEBP_FOUND accordingly later.
3706 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3707 variable in check_include_files(), as it will lead to misleading
3708 results (will always be FALSE). Use a temporary variable instead
3709 and explicitly set WEBP_FOUND to TRUE later if needed.
3711 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3713 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3714 https://bugs.webkit.org/show_bug.cgi?id=130170
3716 Reviewed by Daniel Bates.
3718 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3719 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3720 fake "TestRunner" generator.
3722 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3724 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3725 https://bugs.webkit.org/show_bug.cgi?id=130014
3727 Reviewed by Martin Robinson.
3729 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3731 * Source/cmake/OptionsGTK.cmake:
3732 * Source/cmakeconfig.h.cmake:
3734 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3736 [GTK][CMAKE] Too verbose build output
3737 https://bugs.webkit.org/show_bug.cgi?id=130076
3739 Reviewed by Carlos Garcia Campos.
3741 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3742 works around an issue where cmake --build doesn't support ninja's pretty printing.
3744 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3746 [GTK] Add support for Geoclue2
3747 https://bugs.webkit.org/show_bug.cgi?id=120185
3749 Reviewed by Carlos Garcia Campos.
3751 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3753 Add support for Geoclue2 using autotools.
3755 * Source/autotools/FindDependencies.m4: Add support for handling
3756 both Geoclue 1.0 and 2.0.
3757 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3758 of geoclue that is being used.
3759 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3760 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3761 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3763 Add support for Geoclue2 using CMake.
3765 * Source/cmake/FindGeoClue2.cmake: Added.
3766 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3767 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3769 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3771 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3772 https://bugs.webkit.org/show_bug.cgi?id=130016
3774 Reviewed by Carlos Garcia Campos.
3776 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3777 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3778 HTML version will still run when building the distribution tarball.
3780 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3782 [GTK] [CMake] Clean up library linking
3783 https://bugs.webkit.org/show_bug.cgi?id=129782
3785 Reviewed by Philippe Normand.
3787 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3788 so that unused symbols are not dropped. This is useful when building up shared libraries
3789 from convenience libraries.
3791 2014-03-08 Landry Breuil <landry@openbsd.org>
3793 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3794 https://bugs.webkit.org/show_bug.cgi?id=129973
3796 Reviewed by Martin Robinson.
3798 * Source/autotools/FindDependencies.m4:
3800 2014-03-06 Anders Carlsson <andersca@apple.com>
3802 Build WebKit2 before building WebKit
3803 https://bugs.webkit.org/show_bug.cgi?id=129831
3804 <rdar://problem/15920020>
3806 Reviewed by Dan Bernstein.
3809 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3810 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3812 2014-03-06 Commit Queue <commit-queue@webkit.org>
3814 Unreviewed, rolling out r165193.
3815 http://trac.webkit.org/changeset/165193
3816 https://bugs.webkit.org/show_bug.cgi?id=129823
3818 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3819 env confuses libtool (Requested by zdobersek on #webkit).
3821 * Source/autotools/SetupCompilerFlags.m4:
3823 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3825 [GTK][Autotools] Default to libc++ when compiling with Clang
3826 https://bugs.webkit.org/show_bug.cgi?id=129798
3828 Reviewed by Anders Carlsson.
3830 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3831 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3832 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3834 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3836 [CMake] Ninja generator builds fail with "Argument list too long"
3837 https://bugs.webkit.org/show_bug.cgi?id=129771
3839 Reviewed by Daniel Bates.
3841 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3842 by forcing the use of response files.
3844 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3846 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3847 https://bugs.webkit.org/show_bug.cgi?id=108330
3849 Reviewed by Martin Robinson.
3851 In order to get non-shared debug builds, this patch applied T option for
3852 thin archives to the flags passed to ar when cmake based ports build on l