1 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
3 [ES6] Implement ES6 template literals
4 https://bugs.webkit.org/show_bug.cgi?id=142691
6 Reviewed by Darin Adler.
8 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
10 * Source/cmake/WebKitFeatures.cmake:
11 * Source/cmakeconfig.h.cmake:
13 2015-04-25 Martin Robinson <mrobinson@igalia.com>
15 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
16 https://bugs.webkit.org/show_bug.cgi?id=144182
18 Reviewed by Simon Fraser.
20 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
21 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
22 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
23 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
24 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
26 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
28 [GTK] Add more public options
29 https://bugs.webkit.org/show_bug.cgi?id=144116
31 Reviewed by Martin Robinson.
33 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
35 * Source/cmake/OptionsGTK.cmake:
37 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
39 [CMake] Some internal variables are not marked as advanced
40 https://bugs.webkit.org/show_bug.cgi?id=143595
42 Reviewed by Martin Robinson.
44 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
45 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
47 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
49 [GTK] Mark as advanced the build options we don't want to expose
50 https://bugs.webkit.org/show_bug.cgi?id=143558
52 Reviewed by Martin Robinson.
54 Mark various options as private instead of public.
56 * Source/cmake/OptionsGTK.cmake:
58 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
60 [CMake] Should be possible for an option to depend on multiple options
61 https://bugs.webkit.org/show_bug.cgi?id=143839
63 Reviewed by Martin Robinson.
65 Use a list instead of a single variable to track the dependencies of each option. Iterate
66 over the list as many times as necessary to ensure all options are properly disabled.
68 * Source/cmake/WebKitFeatures.cmake:
70 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
72 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
73 https://bugs.webkit.org/show_bug.cgi?id=144103
75 Reviewed by Martin Robinson.
77 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
79 * Source/cmake/WebKitFeatures.cmake:
81 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
83 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
84 https://bugs.webkit.org/show_bug.cgi?id=144102
86 Reviewed by Martin Robinson.
88 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
89 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
90 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
92 * Source/cmake/OptionsGTK.cmake:
94 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
96 [CMake] Clean up JSC JIT options
97 https://bugs.webkit.org/show_bug.cgi?id=143998
99 Reviewed by Filip Pizlo.
101 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
102 define for ENABLE_FTL_NATIVE_CALL_INLINING.
103 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
104 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
105 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
106 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
108 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
110 [CMake] Use lowercase for local variables in macros
111 https://bugs.webkit.org/show_bug.cgi?id=144059
113 Reviewed by Martin Robinson.
115 Convert some variable names to lowercase.
117 * Source/cmake/WebKitFeatures.cmake:
119 2015-04-22 Commit Queue <commit-queue@webkit.org>
121 Unreviewed, rolling out r183116.
122 https://bugs.webkit.org/show_bug.cgi?id=144060
124 Inadvertently deleted a file... (Requested by mcatanzaro on
129 "[CMake] Use lowercase for local variables in macros"
130 https://bugs.webkit.org/show_bug.cgi?id=144059
131 http://trac.webkit.org/changeset/183116
133 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
135 [CMake] Use lowercase for local variables in macros
136 https://bugs.webkit.org/show_bug.cgi?id=144059
138 Reviewed by Martin Robinson.
140 Convert some variable names to lowercase.
142 * Source/cmake/WebKitFeatures.cmake:
144 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
146 [CMake] Features list should print dots every other row
147 https://bugs.webkit.org/show_bug.cgi?id=143832
149 Reviewed by Martin Robinson.
151 Discount private options when determining whether to print dots on a given row of the
152 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
153 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
154 wasn't noticed because it only affects the first line, and use of the variable name as a
155 string in a conditional.)
157 * Source/cmake/WebKitFeatures.cmake:
159 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
161 [CMake] Require specifying visibility of WebKit options
162 https://bugs.webkit.org/show_bug.cgi?id=143831
164 Reviewed by Alex Christensen.
166 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
167 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
168 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
169 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
170 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
171 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
172 cross-platform options as PRIVATE.
174 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
176 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
177 https://bugs.webkit.org/show_bug.cgi?id=143935
179 Reviewed by Darin Adler.
181 Some variables aren't defined in these files or unused variables aren't removed. This
182 patch cleans up it as well as fix wrong alphabet order.
184 * Source/cmake/WebKitFeatures.cmake:
185 * Source/cmakeconfig.h.cmake:
187 2015-04-19 Simon Fraser <simon.fraser@apple.com>
189 Restore the WebKit.xcworkspace to the way it was before r182899,
190 which inadvertently added the Source directory and a couple of source
193 * WebKit.xcworkspace/contents.xcworkspacedata:
195 2015-04-16 Basile Clement <basile_clement@apple.com>
197 Extract the allocation profile from JSFunction into a rare object
198 https://bugs.webkit.org/show_bug.cgi?id=143807
200 Reviewed by Filip Pizlo.
202 * WebKit.xcworkspace/contents.xcworkspacedata:
204 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
206 [EFL] Bump LLVM to version 3.6.0 on X86_64
207 https://bugs.webkit.org/show_bug.cgi?id=143604
209 Reviewed by Gyuyoung Kim.
211 * Source/cmake/FindLLVM.cmake: Added version handling.
212 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
214 2015-04-15 Timothy Horton <timothy_horton@apple.com>
216 Custom CSS cursors do not use -webkit-image-set on retina displays
217 https://bugs.webkit.org/show_bug.cgi?id=120783
219 Reviewed by Beth Dakin.
220 Patch by Evan Wallace <evan.exe@gmail.com>.
222 Add a manual test for custom CSS cursors on retina displays.
224 * ManualTests/retina-cursors.html: Added.
226 2015-04-15 Alex Christensen <achristensen@webkit.org>
228 Progress towards CMake on Mac.
229 https://bugs.webkit.org/show_bug.cgi?id=143785
231 Reviewed by Csaba Osztrogonác.
234 * Source/cmake/OptionsMac.cmake:
235 * Source/cmake/WebKitFS.cmake:
237 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
239 Cannot click "Next" button on Google two-factor auth setup page
241 <https://bugs.webkit.org/show_bug.cgi?id=143624>
242 <rdar://problem/19175714>
244 Reviewed by Darin Adler.
246 * ManualTests/button-that-focuses-itself-on-click.html: Added.
248 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
250 [cmake] REGRESSION(182663): It broke feature dependency handling
251 https://bugs.webkit.org/show_bug.cgi?id=143665
253 Reviewed by Csaba Osztrogonác.
255 Don't try to check the value of options before defining the options.
257 * Source/cmake/WebKitFeatures.cmake:
259 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
261 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
262 https://bugs.webkit.org/show_bug.cgi?id=143664
264 Reviewed by Gyuyoung Kim.
266 * Source/cmake/OptionsEfl.cmake:
267 * Source/cmake/OptionsGTK.cmake:
268 * Source/cmake/WebKitFeatures.cmake:
269 * Source/cmakeconfig.h.cmake:
271 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
273 [EFL] Enable Media Source
274 https://bugs.webkit.org/show_bug.cgi?id=143635
276 Reviewed by Csaba Osztrogonác.
278 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
280 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
282 [CMake] Miscellaneous issues in WebKitFeatures.cmake
283 https://bugs.webkit.org/show_bug.cgi?id=143636
285 Reviewed by Martin Robinson.
287 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
288 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
290 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
291 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
293 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
295 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
297 Fix ENABLE_TOUCH_SLIDER so that it can be used
301 * Source/cmake/WebKitFeatures.cmake:
303 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
305 [CMake] Print sorted feature list at the very end of the configure process
306 https://bugs.webkit.org/show_bug.cgi?id=143596
308 Reviewed by Martin Robinson.
310 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
311 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
312 and sort the options before printing. Reorder some code so that features still get
313 propagated to the bindings generators.
315 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
317 [CMake] Options should be marked as advanced by default
318 https://bugs.webkit.org/show_bug.cgi?id=143572
320 Reviewed by Gyuyoung Kim.
322 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
323 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
324 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
325 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
326 option without making it public.
328 * Source/cmake/WebKitFeatures.cmake:
330 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
332 [CMake] Remove unnecessary ENABLE_WEBCORE switch
333 https://bugs.webkit.org/show_bug.cgi?id=143584
335 Reviewed by Csaba Osztrogonác.
337 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
341 * Source/CMakeLists.txt:
342 * Source/cmake/OptionsGTK.cmake:
343 * Source/cmake/WebKitFS.cmake:
345 2015-04-08 Filip Pizlo <fpizlo@apple.com>
347 Unreviewed, revert accidental commit.
351 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
353 Add CMake build system for WinCairo port.
354 https://bugs.webkit.org/show_bug.cgi?id=115944
356 Reviewed by Chris Dumez.
358 * Source/cmake/OptionsWindows.cmake:
359 * Source/cmake/WebKitMacros.cmake:
360 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
362 2015-04-06 Alberto Garcia <berto@igalia.com>
365 https://bugs.webkit.org/show_bug.cgi?id=143453
367 Reviewed by Darin Adler.
369 Add HPPA to the list of supported CPUs.
373 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
375 Unreviewed, kick the GTK bots to fix an incremental build issue.
377 * Source/cmake/OptionsGTK.cmake:
379 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
381 Fix the EFL and GTK build after r182243
382 https://bugs.webkit.org/show_bug.cgi?id=143361
384 Reviewed by Csaba Osztrogonác.
386 * Source/PlatformEfl.cmake: Add a custom command that copies
387 the InspectorBackendCommands.js file into the proper directory
388 under DerivedSources/WebInspectorUI/.
390 2015-04-01 Alex Christensen <achristensen@webkit.org>
392 Progress towards CMake on Windows and Mac.
393 https://bugs.webkit.org/show_bug.cgi?id=143293
395 Reviewed by Filip Pizlo.
398 Set DERIVED_SOURCES_WTF_DIR for Windows.
399 * Source/CMakeLists.txt:
400 Don't compile bmalloc on Windows.
401 * Source/cmake/OptionsCommon.cmake:
402 Use the absolute path of the C preprocessor.
403 * Source/cmake/OptionsWinCairo.cmake:
404 Added needed definitions.
405 * Source/cmake/OptionsWindows.cmake:
406 Set some default values and removed support for old Visual Studio versions before /MP.
407 * Source/cmake/WebKitFS.cmake:
408 Make WTF DerivedSources directory.
409 * Source/cmake/WebKitMacros.cmake:
410 Added ADD_PRECOMPILED_HEADER macro based on
411 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
413 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
415 Use colored diagnostics when building with cmake + ninja + clang
416 https://bugs.webkit.org/show_bug.cgi?id=143297
418 Reviewed by Žan Doberšek.
420 Because that ninja sets subprocess stdout/stderr to a pipe, clang
421 disables colored output.
422 This patch forces clang to use colored diagnostics when we are using
425 * Source/cmake/OptionsCommon.cmake:
427 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
429 [CMake] Update old CMakeList.txt in gtest
430 https://bugs.webkit.org/show_bug.cgi?id=143192
432 Reviewed by Darin Adler.
434 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
435 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
436 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
438 * Source/CMakeLists.txt:
439 * Source/cmake/gtest/CMakeLists.txt: Removed.
441 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
443 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
444 https://bugs.webkit.org/show_bug.cgi?id=143138
446 Reviewed by Csaba Osztrogonác.
448 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
449 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
451 * Source/cmake/OptionsWindows.cmake:
452 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
453 * Source/cmake/WebKitMacros.cmake:
455 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
457 [GStreamer] share GL context in pipeline, part 2
458 https://bugs.webkit.org/show_bug.cgi?id=143049
460 Reviewed by Carlos Garcia Campos.
462 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
463 OpenGL/ES2 is found and GLX/EGL is found too.
465 2015-03-26 Alex Christensen <achristensen@webkit.org>
467 Progress towards CMake on Mac.
468 https://bugs.webkit.org/show_bug.cgi?id=143112
470 Reviewed by Chris Dumez.
472 * Source/cmake/OptionsMac.cmake:
474 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
476 [EFL] Add OpenWebRTC in jhbuild
477 https://bugs.webkit.org/show_bug.cgi?id=142778
479 Reviewed by Gyuyoung Kim.
481 Original patch by Philippe Normand <pnormand@igalia.com>
483 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
484 mediastream build is enabled.
486 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
488 [GTK] Add a configure option to build without Redirected XComposite Window
489 https://bugs.webkit.org/show_bug.cgi?id=142865
491 Reviewed by Žan Doberšek.
493 The Redirected XComposite Window was added to support some
494 features like GtkOverlay, but in cases where we don't need such
495 features, it's more efficient to use the XID of the WebKitWebView
496 window as the native surface handle for the accelerated
497 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
498 that is enabled by default for X11 target when OpenGL is enabled.
500 * Source/cmake/OptionsGTK.cmake:
502 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
504 [GTK] Search for the Wayland dependency when enabling Wayland target
505 https://bugs.webkit.org/show_bug.cgi?id=142876
507 Reviewed by Carlos Garcia Campos.
509 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
510 requirement of either the GTK+ or GDK pkg-config files, so we have to
511 search for it ourselves when WebKitGTK+ has been configured to support
512 the Wayland windowing target.
514 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
516 Unreviewed, kick the GTK bots to regenerate makefile.
517 https://bugs.webkit.org/show_bug.cgi?id=137394
519 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
520 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
522 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
524 Unreviewed, kick the GTK bots to regenerate makefile.
525 https://bugs.webkit.org/show_bug.cgi?id=137394
527 * Source/cmake/OptionsEfl.cmake:
529 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
531 [GTK] Fix inspector userinterface related incremental build issue
532 https://bugs.webkit.org/show_bug.cgi?id=142849
534 Reviewed by Carlos Garcia Campos.
536 * Source/cmake/OptionsGTK.cmake: Revert r181733.
538 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
540 Unreviewed, kick the GTK bots to regenerate makefile.
542 * Source/cmake/OptionsGTK.cmake:
544 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
546 [EFL] Expose JavaScript binding interface through ewk_extension
547 https://bugs.webkit.org/show_bug.cgi?id=142033
549 Reviewed by Gyuyoung Kim.
551 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
553 2015-03-17 Philippe Normand <pnormand@igalia.com>
555 [GTK] basic OpenWebRTC build support
556 https://bugs.webkit.org/show_bug.cgi?id=142393
558 Reviewed by Carlos Garcia Campos.
560 * Source/cmake/FindOpenWebRTC.cmake: Added.
561 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
562 mediastream build is enabled.
564 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
566 [CMake][EFL] Build test tools only for developer mode
567 https://bugs.webkit.org/show_bug.cgi?id=142761
569 Reviewed by Csaba Osztrogonác.
571 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
573 * Source/cmake/OptionsEfl.cmake:
574 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
575 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
576 * Source/cmakeconfig.h.cmake:
578 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
580 Enable ES6 classes by default
581 https://bugs.webkit.org/show_bug.cgi?id=142774
583 Reviewed by Gavin Barraclough.
585 * Source/cmake/WebKitFeatures.cmake:
587 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
589 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
590 https://bugs.webkit.org/show_bug.cgi?id=142722
592 Reviewed by Csaba Osztrogonác.
594 Categorize to define cmake variables, to find necessary packages,
595 use upper case for "glib_conponents" cmake variable name, re-arrange
596 wrong alphabet sorting, and so on.
598 * CMakeLists.txt: Remove WinCE port.
599 * Source/cmake/OptionsEfl.cmake:
601 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
603 [GStreamer] share GL context in pipeline
604 https://bugs.webkit.org/show_bug.cgi?id=142693
606 Reviewed by Philippe Normand.
608 Add search of gstreamer-gl library in the GStreamer installation. If
609 it is found, WTF_USE_GSTREAMER_GL macro is defined.
611 * Source/cmake/FindGStreamer.cmake:
612 * Source/cmake/OptionsGTK.cmake:
614 2015-03-13 Alex Christensen <achristensen@webkit.org>
616 Progress towards CMake on Mac.
617 https://bugs.webkit.org/show_bug.cgi?id=142680
619 Reviewed by Gyuyoung Kim.
622 * Source/PlatformMac.cmake: Added stub.
623 * Source/cmake/OptionsMac.cmake:
624 Change defines to get CMake working.
626 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
628 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
629 https://bugs.webkit.org/show_bug.cgi?id=126688
631 Reviewed by Gustavo Noronha Silva.
633 Add ENABLE_MINIBROWSER option, enabled by default for development
634 builds and disabled for production builds unless explicilty enabled.
636 * Source/cmake/OptionsGTK.cmake:
638 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
640 [GTK] Do not look for child processes in the UI process binary path
641 https://bugs.webkit.org/show_bug.cgi?id=135752
643 Reviewed by Gustavo Noronha Silva.
645 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
646 build for development builds.
648 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
650 [GTK] Add a configure option to build with OpenGL ES 2
651 https://bugs.webkit.org/show_bug.cgi?id=142498
653 Reviewed by Martin Robinson.
655 Add ENABLE_GLES2 option. It's disabled by default, but if passed
656 GLES2 is required and OpenGL is not even searched. Otherwise we
657 search for OpenGL as usual, using it only if present.
659 * Source/cmake/OptionsGTK.cmake:
661 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
663 [cmake] Handle unused parameter warnings as build errors except in WebKit2
664 https://bugs.webkit.org/show_bug.cgi?id=142338
666 Reviewed by Gyuyoung Kim.
668 * Source/cmake/WebKitHelpers.cmake:
670 2015-03-03 Daniel Bates <dabates@apple.com>
672 Convert ManualTests/svg-tooltip.svg to a DRT test
673 https://bugs.webkit.org/show_bug.cgi?id=140480
675 Reviewed by Alex Christensen.
677 * ManualTests/svg-tooltip.svg: Removed.
679 2015-03-02 Debarshi Ray <debarshir@gnome.org>
681 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
682 https://bugs.webkit.org/show_bug.cgi?id=142165
684 Reviewed by Carlos Garcia Campos.
686 * Source/cmake/gtksymbols.filter:
688 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
690 [EFL] Remove unnecessary comment after r179110
691 https://bugs.webkit.org/show_bug.cgi?id=142042
693 Reviewed by Gyuyoung Kim.
695 * Source/cmake/OptionsEfl.cmake:
697 2015-02-23 Tomas Popela <tpopela@redhat.com>
699 [GTK] Fails to compile with cmake 3.2.x
700 https://bugs.webkit.org/show_bug.cgi?id=141796
702 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
703 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
704 added and the build will fail.
706 Reviewed by Martin Robinson.
708 * Source/cmake/OptionsGTK.cmake:
710 2015-02-20 Alexey Proskuryakov <ap@apple.com>
712 Remove svn:keywords property.
714 As far as I can tell, the property had no effect on any of these files, but also,
715 when it has effect it's likely harmful.
717 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
718 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
719 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
720 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
721 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
722 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
723 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
724 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
725 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
726 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
727 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
728 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
729 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
730 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
732 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
734 [CMAKE] Remove CMakeLists.txt in WK1 port
735 https://bugs.webkit.org/show_bug.cgi?id=141617
737 Reviewed by Anders Carlsson.
739 Nobody uses CMake in WK1 port. Remove it.
743 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
745 Unreviewed, remove empty directories.
747 * ManualTests/qt: Removed.
749 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
751 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
752 https://bugs.webkit.org/show_bug.cgi?id=141481
754 Reviewed by Csaba Osztrogonác.
756 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
758 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
760 [EFL][GTK] Use bmalloc instead of tcmalloc
761 https://bugs.webkit.org/show_bug.cgi?id=140162
763 Reviewed by Carlos Garcia Campos.
765 Add bmalloc directory to build list.
767 * CMakeLists.txt: Define BMALLOC_DIR directory.
768 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
770 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
772 [GTK] Add default color chooser implementation using GtkColorChooserDialog
773 https://bugs.webkit.org/show_bug.cgi?id=141392
775 Reviewed by Gustavo Noronha Silva.
777 Enable INPUT_TYPE_COLOR by default for GTK+ port.
779 * Source/cmake/OptionsGTK.cmake:
781 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
783 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
784 https://bugs.webkit.org/show_bug.cgi?id=141328
786 Reviewed by Darin Adler.
788 Added as manual test because it involves a huge grid allocation
789 which is very slow on Debug bots, the only ones capable to trigger
792 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
794 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
796 [Streams API] Implement a barebone ReadableStream interface
797 https://bugs.webkit.org/show_bug.cgi?id=141045
799 Reviewed by Benjamin Poulain.
801 * Source/cmake/WebKitFeatures.cmake:
802 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
804 2015-02-02 Filip Pizlo <fpizlo@apple.com>
806 Revert accidental change in r179490.
810 2015-02-02 Filip Pizlo <fpizlo@apple.com>
812 Unreviewed, revert accidental change to Makefile.shared in r179478
816 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
818 [CMake] Minimum python version should be 2.7.
819 https://bugs.webkit.org/show_bug.cgi?id=140997
821 Reviewed by Csaba Osztrogonác.
825 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
827 Apply feTurbulence spec change to fix zero length vector generation
828 https://bugs.webkit.org/show_bug.cgi?id=140812
830 Reviewed by Darin Adler.
832 Recently a bug with the turbulence algorithm was corrected in the
833 Filter Effects specification.
834 For some seed values this bug allowed zero length vectors to be generated.
835 This resulted in large solid color squares being present in the generated image.
836 The feTurbulence algorithm was updated to reject zero length vectors. This patch
837 applies that change in WebCore.
839 Test: svg/filters/feTurbulence_bad_seeds.html
841 * platform/graphics/filters/FETurbulence.cpp:
842 (WebCore::FETurbulence::initPaint):
843 Added rejection sampling during vector generation to avoid zero length vectors.
845 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
847 [cmake] Remove compiler version calculate cruft
848 https://bugs.webkit.org/show_bug.cgi?id=140885
850 Reviewed by Darin Adler.
852 * Source/cmake/WebKitHelpers.cmake:
854 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
856 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
857 https://bugs.webkit.org/show_bug.cgi?id=140886
859 Reviewed by Žan Doberšek.
861 * Source/cmake/WebKitHelpers.cmake:
863 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
865 [GTK] gtkdoc does not appear in DevHelp
866 https://bugs.webkit.org/show_bug.cgi?id=139369
868 Reviewed by Philippe Normand.
870 Expect the gtkdoc to be generated in folders named with the API version.
872 * Source/PlatformGTK.cmake:
874 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
876 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
877 https://bugs.webkit.org/show_bug.cgi?id=140609
879 Reviewed by Csaba Osztrogonác.
881 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
882 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
883 compilation flags. Those were added after the jsCStack branch merge, but
884 can now be removed since the -ftree-dce issues were fixed in GCC, and
885 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
887 * Source/cmake/OptionsEfl.cmake:
888 * Source/cmake/OptionsGTK.cmake:
890 2015-01-26 Commit Queue <commit-queue@webkit.org>
892 Unreviewed, rolling out r179107.
893 https://bugs.webkit.org/show_bug.cgi?id=140880
895 The GCC in the bots doesn't support the AsyncTask
896 implementation (Requested by KaL on #webkit).
900 "[GTK] Enable IndexedDB"
901 https://bugs.webkit.org/show_bug.cgi?id=98932
902 http://trac.webkit.org/changeset/179107
904 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
906 [GTK] Enable IndexedDB
907 https://bugs.webkit.org/show_bug.cgi?id=98932
909 Reviewed by Žan Doberšek.
911 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
912 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
914 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
916 [GTK] Add initial database process support
917 https://bugs.webkit.org/show_bug.cgi?id=139491
919 Reviewed by Sergio Villar Senin.
921 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
923 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
925 Add a build flag for ES6 class syntax
926 https://bugs.webkit.org/show_bug.cgi?id=140760
928 Reviewed by Michael Saboff.
930 * Source/cmake/WebKitFeatures.cmake:
931 * Source/cmakeconfig.h.cmake:
933 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
935 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
936 https://bugs.webkit.org/show_bug.cgi?id=140049
938 Reviewed by Gyuyoung Kim.
940 * Source/cmake/OptionsCommon.cmake:
942 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
944 Remove ENABLE(INSPECTOR) ifdef guards
945 https://bugs.webkit.org/show_bug.cgi?id=140668
947 Reviewed by Darin Adler.
949 * Source/PlatformEfl.cmake:
950 * Source/cmake/OptionsEfl.cmake:
951 * Source/cmake/OptionsGTK.cmake:
952 * Source/cmake/OptionsMac.cmake:
953 * Source/cmake/WebKitFeatures.cmake:
954 * Source/cmakeconfig.h.cmake:
956 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
958 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
960 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
962 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
964 [CMAKE] Fix cmake warning
965 https://bugs.webkit.org/show_bug.cgi?id=140497
967 Reviewed by Gustavo Noronha Silva.
969 r173155 already tried to fix cmake warning though, the warning is still exist.
970 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
971 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
972 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
973 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
974 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
978 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
980 [GTK] Generate the make dist manifest from a CMake template file
981 https://bugs.webkit.org/show_bug.cgi?id=139387
983 Reviewed by Martin Robinson.
985 Generate manifest.txt from manifest.txt.in. Only expose the dist and
986 distcheck targets for developer builds, as they won't work when
987 building from a tarball because the manifest is not distributed.
989 * Source/PlatformGTK.cmake:
991 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
993 Remove ENABLE(SQL_DATABASE) guards
994 https://bugs.webkit.org/show_bug.cgi?id=140434
996 Reviewed by Darin Adler.
998 * Source/cmake/OptionsMac.cmake:
999 * Source/cmake/WebKitFeatures.cmake:
1000 * Source/cmakeconfig.h.cmake:
1002 2015-01-11 Sam Weinig <sam@webkit.org>
1004 Remove support for SharedWorkers
1005 https://bugs.webkit.org/show_bug.cgi?id=140344
1007 Reviewed by Anders Carlsson.
1009 * Source/cmake/OptionsEfl.cmake:
1010 * Source/cmake/OptionsGTK.cmake:
1011 * Source/cmake/OptionsMac.cmake:
1012 * Source/cmake/WebKitFeatures.cmake:
1013 * Source/cmakeconfig.h.cmake:
1015 2015-01-10 Dan Bernstein <mitz@apple.com>
1017 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
1018 https://bugs.webkit.org/show_bug.cgi?id=140339
1020 Reviewed by Mark Rowe.
1022 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
1023 prevents unnecessary rebuilding due to PATH differences.
1025 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
1027 [GTK][ThreadedCompositor] Add support for threaded compositor.
1028 https://bugs.webkit.org/show_bug.cgi?id=118265
1030 Reviewed by Martin Robinson.
1032 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
1033 autotools build systems. The feature is disabled by default.
1034 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
1035 from the feature flags.
1037 * Source/cmake/OptionsEfl.cmake:
1038 * Source/cmake/OptionsGTK.cmake:
1039 * Source/cmake/WebKitFeatures.cmake:
1040 * Source/cmakeconfig.h.cmake:
1042 2014-12-23 Alexey Proskuryakov <ap@apple.com>
1044 Simplify building with ASan
1045 https://bugs.webkit.org/show_bug.cgi?id=139916
1047 Reviewed by Mark Rowe.
1049 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
1051 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
1053 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
1055 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1057 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
1059 Null dereference performing a "TapAndAHalf" gesture in Google search field
1061 <https://bugs.webkit.org/show_bug.cgi?id=139506>
1062 <rdar://problem/19028828>
1064 Reviewed by Darin Adler.
1066 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
1068 2014-12-10 Dean Jackson <dino@apple.com>
1070 Blur filter performance test doesn't provide results
1071 https://bugs.webkit.org/show_bug.cgi?id=139462
1073 Reviewed by Sam Weinig.
1075 This can't currently work under our performance test
1076 infrastructure. Move it to a manual test to avoid
1077 putting FAILures into the results.
1079 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
1081 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1083 [GTK][WK2] Add HTML5 Notifications support
1084 https://bugs.webkit.org/show_bug.cgi?id=61140
1086 Reviewed by Carlos Garcia Campos.
1088 * Source/cmake/FindLibNotify.cmake: Added.
1089 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
1090 libnotify and use it for a default implementation when found.
1092 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
1094 REGRESSION(r155906): Page content disappears on Tuaw article after loading
1095 https://bugs.webkit.org/show_bug.cgi?id=138100
1097 Reviewed by Simon Fraser.
1099 DRT causes an extra paint which makes it impossible to test this with
1102 * ManualTests/float-layer-not-painting.html: Added.
1104 2014-12-07 Alberto Garcia <berto@igalia.com>
1106 [GTK] WebKit has a new required dependency on GnuTLS
1107 https://bugs.webkit.org/show_bug.cgi?id=136158
1109 Reviewed by Martin Robinson.
1111 Detect if GnuTLS is installed and enable or disable subtle crypto
1112 support accordingly.
1114 * Source/cmake/OptionsGTK.cmake:
1116 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
1118 [GTK] Missing API detected in GObject DOM bindings after r176630
1119 https://bugs.webkit.org/show_bug.cgi?id=139201
1121 Reviewed by Gustavo Noronha Silva.
1123 Change GENERATE_BINDINGS macro to receive a list of optional
1124 additional dependencies, so that we can add more dependecies
1125 without having to change the macro.
1127 * Source/cmake/WebKitMacros.cmake:
1129 2014-12-05 Simon Fraser <simon.fraser@apple.com>
1131 Programmatic scrolling and content changes are not always synchronized
1132 https://bugs.webkit.org/show_bug.cgi?id=139245
1133 rdar://problem/18833612
1135 Reviewed by Anders Carlsson.
1137 Manual test that tries to sync layout with programmatic scrolling.
1139 * ManualTests/programmatic-scroll-flicker.html: Added.
1141 2014-12-04 Alberto Garcia <berto@igalia.com>
1143 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
1144 https://bugs.webkit.org/show_bug.cgi?id=136576
1146 Reviewed by Carlos Garcia Campos.
1148 CMake should complain if Accelerated 2D Canvas is explicitly
1149 enabled but cairo-gl is not found.
1151 * Source/cmake/OptionsGTK.cmake:
1153 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1155 [EFL] Add subtle crypto to the build system
1156 https://bugs.webkit.org/show_bug.cgi?id=138612
1158 Reviewed by Csaba Osztrogonác.
1160 * Source/cmake/OptionsEfl.cmake:
1162 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1164 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
1165 https://bugs.webkit.org/show_bug.cgi?id=139085
1167 Reviewed by Andreas Kling.
1169 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
1170 * Source/cmake/WebKitFeatures.cmake: ditto.
1171 * Source/cmakeconfig.h.cmake: ditto.
1173 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1175 [EFL] Drop support for the EFL 1.7
1176 https://bugs.webkit.org/show_bug.cgi?id=139114
1178 Reviewed by Gyuyoung Kim.
1180 * Source/cmake/EFLHelpers.cmake: Removed.
1181 * Source/cmake/FindEcore.cmake: Removed.
1182 * Source/cmake/FindEdje.cmake: Removed.
1183 * Source/cmake/FindEet.cmake: Removed.
1184 * Source/cmake/FindEeze.cmake: Removed.
1185 * Source/cmake/FindEfreet.cmake: Removed.
1186 * Source/cmake/FindEina.cmake: Removed.
1187 * Source/cmake/FindElementary.cmake: Removed.
1188 * Source/cmake/FindEvas.cmake: Removed.
1189 * Source/cmake/OptionsEfl.cmake:
1191 2014-11-28 Philippe Normand <pnormand@igalia.com>
1193 [CMake] Build failure against GStreamer git master
1194 https://bugs.webkit.org/show_bug.cgi?id=138872
1196 Reviewed by Csaba Osztrogon.
1198 * Source/cmake/FindGStreamer.cmake: Simplified the
1199 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1200 headers lookup, there's no need to do this manually. Also
1201 explicitely check the version specified in GStreamer_FIND_VERSION.
1203 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1205 [EFL] Remove E_Dbus dependency
1206 https://bugs.webkit.org/show_bug.cgi?id=136355
1208 Reviewed by Gyuyoung Kim.
1210 * Source/cmake/FindE_DBus.cmake: Removed.
1211 * Source/cmake/OptionsEfl.cmake:
1213 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1215 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1217 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1219 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1221 [CMake] Use ld.gold if it is available to speedup builds
1222 https://bugs.webkit.org/show_bug.cgi?id=137953
1224 Reviewed by Carlos Garcia Campos.
1226 * Source/cmake/OptionsCommon.cmake:
1228 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
1230 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
1231 https://bugs.webkit.org/show_bug.cgi?id=138840
1233 Reviewed by Csaba Osztrogonác.
1235 * Source/cmake/OptionsCommon.cmake:
1237 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
1239 Remove Source/Platform cruft
1240 https://bugs.webkit.org/show_bug.cgi?id=138658
1242 Reviewed by Anders Carlsson.
1245 * Source/Platform: Removed.
1247 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
1249 Enable Cortex-A53-specific code paths by default if core is detected.
1250 https://bugs.webkit.org/show_bug.cgi?id=138499
1252 Reviewed by Csaba Osztrogonác.
1254 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
1255 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
1258 Since on ARM64/Linux the part number that cpuinfo reports depends on
1259 the core the query is run on, the check is bound to and executed on the
1260 available cores one by one.
1262 * Source/cmake/OptionsCommon.cmake:
1264 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1266 [EFL] Remove unnecessary version check from OptionsEfl.cmake
1267 https://bugs.webkit.org/show_bug.cgi?id=138498
1269 Reviewed by Csaba Osztrogonác.
1271 * Source/cmake/OptionsEfl.cmake:
1273 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1275 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
1276 https://bugs.webkit.org/show_bug.cgi?id=138465
1278 Reviewed by Gyuyoung Kim.
1280 * Source/cmake/OptionsEfl.cmake:
1282 2014-11-03 Dean Jackson <dino@apple.com>
1284 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1285 https://bugs.webkit.org/show_bug.cgi?id=138362
1287 Reviewed by Tim Horton.
1289 Add a new feature define for Level 2 of CSS Filters.
1290 http://dev.w3.org/fxtf/filters-2/
1292 * Source/cmake/OptionsEfl.cmake:
1293 * Source/cmake/OptionsGTK.cmake:
1294 * Source/cmake/OptionsMac.cmake:
1295 * Source/cmake/WebKitFeatures.cmake:
1296 * Source/cmakeconfig.h.cmake:
1298 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1300 Workaround for Cortex-A53 erratum 835769
1301 https://bugs.webkit.org/show_bug.cgi?id=138315
1303 Reviewed by Filip Pizlo.
1305 This patch introduces CMake variable and preprocessor macro
1306 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1307 code paths, if set true.
1309 * Source/cmake/OptionsCommon.cmake:
1310 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1312 * Source/cmakeconfig.h.cmake:
1313 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1315 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1317 [GTK] Fix the build of FTL JIT
1318 https://bugs.webkit.org/show_bug.cgi?id=138298
1320 Reviewed by Carlos Garcia Campos.
1322 * Source/cmake/OptionsGTK.cmake:
1323 Remove the need for the LIBCXXABI package.
1325 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1327 REGRESSION(CMake): Make it possible to build without introspection
1328 https://bugs.webkit.org/show_bug.cgi?id=138006
1330 Reviewed by Philippe Normand.
1332 Add ENABLE_INTROSPECTION option.
1334 * Source/PlatformGTK.cmake: Dot not add gir global target if
1335 introspection is disabled.
1336 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1337 introspection is disabled.
1339 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1341 [GTK] Support script message handlers WebKitUserContentManager
1342 https://bugs.webkit.org/show_bug.cgi?id=133730
1344 Reviewed by Carlos Garcia Campos.
1346 Support user script message handlers in WebKitUserContentManager.
1347 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1348 an option is added to the CMake build files. The option is disabled
1349 globally by default, and the WebKitGTK port enables it. On the API
1350 level, two new methods to register and unregister names are provided
1351 in the "window.webkit" namespace, and on message reception the
1352 "WebKitUserContentManager::script-message-received" signal is
1353 emitted, using the registered names as signal detail.
1355 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1356 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1357 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1358 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1360 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1362 [GTK] Bump libsoup's minimum version to 2.42.0.
1363 https://bugs.webkit.org/show_bug.cgi?id=138086
1365 Reviewed by Martin Robinson.
1367 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1368 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1369 the minimum version required to build the port these days.
1371 In addition, since the autotools build system required 2.42.0 before
1372 being retired, require the same version here. Version 2.42.0 was also
1374 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1376 * Source/cmake/OptionsGTK.cmake:
1378 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1380 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1381 https://bugs.webkit.org/show_bug.cgi?id=138132
1383 Reviewed by Csaba Osztrogonác.
1385 * Source/cmake/OptionsEfl.cmake:
1387 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1389 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1391 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1393 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1395 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1396 https://bugs.webkit.org/show_bug.cgi?id=137946
1398 Reviewed by Gyuyoung Kim.
1400 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1402 * Source/cmake/OptionsEfl.cmake:
1404 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1406 Fix FTL Native Inlining for EFL
1407 https://bugs.webkit.org/show_bug.cgi?id=137774
1409 Reviewed by Michael Saboff.
1411 Updated CMake for FTL Native Inlining.
1414 * Source/cmake/FindClang.cmake: Added.
1415 * Source/cmake/OptionsEfl.cmake:
1416 * Source/cmakeconfig.h.cmake:
1418 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1420 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1421 https://bugs.webkit.org/show_bug.cgi?id=137748
1423 Reviewed by Brian Burg.
1425 * Source/PlatformEfl.cmake:
1427 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1429 [GTK] Add initial gestures support
1430 https://bugs.webkit.org/show_bug.cgi?id=137812
1432 Reviewed by Sergio Villar Senin.
1434 Check if the GTK+ version supports gestures or not.
1436 * Source/cmake/FindGTK3.cmake:
1437 * Source/cmake/OptionsGTK.cmake:
1439 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1441 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1442 https://bugs.webkit.org/show_bug.cgi?id=137781
1444 Reviewed by Martin Robinson.
1446 We used to enable smooth scrolling unconditionally in autotools
1447 (via WebKitFeatures.m4), but since the switch to CMake it's
1448 unconditionally disabled, so changing the setting doesn't have any
1451 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1453 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1455 Removing CUSTOM_PROTOCOLS guard
1456 https://bugs.webkit.org/show_bug.cgi?id=137741
1458 Reviewed by Benjamin Poulain.
1460 * Source/cmake/OptionsEfl.cmake:
1462 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1464 [EFL] Enable WebP support.
1465 https://bugs.webkit.org/show_bug.cgi?id=136156
1467 Reviewed by Gyuyoung Kim.
1469 Add WebP package finding rule.
1471 * Source/cmake/OptionsEfl.cmake:
1473 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1475 [EFL] Enable custom URI schemes with CustomProtocols
1476 https://bugs.webkit.org/show_bug.cgi?id=128177
1478 Reviewed by Gyuyoung Kim.
1480 Fixing ewk_context_url_scheme_register() ewebkit2 API
1481 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
1483 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
1485 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
1487 Bump version to 2.7.0
1488 https://bugs.webkit.org/show_bug.cgi?id=137301
1490 Rubber-stamped by Carlos Garcia Campos.
1492 * Source/cmake/OptionsGTK.cmake: Bump version numbers
1494 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1496 [EFL] Rename TEST_THEME_DIR macro
1497 https://bugs.webkit.org/show_bug.cgi?id=137244
1499 Reviewed by Csaba Osztrogonác.
1501 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
1503 2014-09-27 Dan Bernstein <mitz@apple.com>
1505 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
1506 https://bugs.webkit.org/show_bug.cgi?id=137053
1508 Reviewed by Mark Rowe.
1510 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1511 In the build pre-action, pass the --wksi and --llvm options to
1512 copy-webkitlibraries-to-product-directory.
1513 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
1515 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
1517 [GTK] Enable CSS_IMAGE_SET in production builds
1518 https://bugs.webkit.org/show_bug.cgi?id=137142
1520 Reviewed by Alejandro G. Castro.
1522 This is required by the inspector to show some of the icons that
1523 has a HiDPI variant.
1525 * Source/cmake/OptionsGTK.cmake:
1527 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
1529 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
1530 https://bugs.webkit.org/show_bug.cgi?id=136377
1532 Reviewed by Philippe Normand.
1534 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
1535 for CMake versions less than 3.
1537 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
1539 Remove WinCE port from trunk
1540 https://bugs.webkit.org/show_bug.cgi?id=136951
1542 Reviewed by Alex Christensen.
1544 * Source/cmake/OptionsWinCE.cmake: Removed.
1545 * Source/cmake/WebKitPackaging.cmake:
1547 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
1549 [EFL][GTK] Remove WebKit1 related codes
1550 https://bugs.webkit.org/show_bug.cgi?id=136853
1552 Reviewed by Csaba Osztrogonác.
1554 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
1557 * Source/PlatformGTK.cmake:
1559 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1562 https://bugs.webkit.org/show_bug.cgi?id=136820
1564 Reviewed by Csaba Osztrogonác.
1566 * Source/cmake/FindICU.cmake:
1568 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
1570 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
1571 https://bugs.webkit.org/show_bug.cgi?id=136814
1573 Reviewed by Philippe Normand.
1575 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
1576 We bundle the wayland-egl dependency with wayland-client and wayland-server
1577 and store the resulting variables with the WAYLAND_ prefix. Because of this
1578 this line wasn't exporting anything useful.
1580 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
1582 URTBF after r173574.
1584 * Source/cmake/WebKitMacros.cmake:
1586 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
1588 [JavaScriptCore] Fix FTL on platform EFL.
1589 https://bugs.webkit.org/show_bug.cgi?id=133571
1591 Reviewed by Filip Pizlo.
1595 * Source/cmake/FindLIBCXXABI.cmake: Removed.
1596 * Source/cmake/OptionsEfl.cmake:
1598 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1601 https://bugs.webkit.org/show_bug.cgi?id=136571
1603 Reviewed by Darin Adler.
1605 * Source/cmake/OptionsEfl.cmake:
1606 * Source/cmake/OptionsGTK.cmake:
1607 * Source/cmake/OptionsMac.cmake:
1608 * Source/cmake/WebKitFeatures.cmake:
1609 * Source/cmakeconfig.h.cmake:
1611 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1613 Remove CSS_FILTERS flag
1614 https://bugs.webkit.org/show_bug.cgi?id=136529
1616 Reviewed by Dirk Schulze.
1618 * Source/cmake/OptionsEfl.cmake:
1619 * Source/cmake/OptionsGTK.cmake:
1620 * Source/cmake/OptionsMac.cmake:
1621 * Source/cmake/WebKitFeatures.cmake:
1622 * Source/cmakeconfig.h.cmake:
1624 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1626 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
1627 https://bugs.webkit.org/show_bug.cgi?id=136194
1629 Reviewed by Csaba Osztrogonác.
1631 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
1635 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1637 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
1638 https://bugs.webkit.org/show_bug.cgi?id=135560
1640 Reviewed by Gyuyoung Kim.
1642 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
1644 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
1646 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
1647 https://bugs.webkit.org/show_bug.cgi?id=136343
1649 Reviewed by David Kilzer.
1651 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
1653 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1654 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1656 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
1658 [EFL] Share fast/speechsynthesis/ with other ports
1659 https://bugs.webkit.org/show_bug.cgi?id=136224
1661 Reviewed by Chris Fleizach.
1663 Enable WebSpeech for EFL.
1665 * Source/cmake/OptionsEfl.cmake:
1667 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
1669 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
1670 https://bugs.webkit.org/show_bug.cgi?id=136127
1672 Reviewed by Gyuyoung Kim.
1674 Add build support for espeak.
1676 * Source/cmake/FindEspeak.cmake: Added.
1677 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
1679 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
1681 [EFL] Build break using clang
1682 https://bugs.webkit.org/show_bug.cgi?id=136245
1684 Reviewed by Gyuyoung Kim.
1686 * Source/cmake/OptionsEfl.cmake:
1687 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
1688 Some warnings are from system libraries.
1690 2014-08-25 Alberto Garcia <berto@igalia.com>
1692 [GTK] Unify webkitgtk and webkit2gtk directories
1693 https://bugs.webkit.org/show_bug.cgi?id=136209
1695 Reviewed by Carlos Garcia Campos.
1697 Use webkit2gtk-X.X both for the process binaries and the injected
1700 * Source/cmake/OptionsGTK.cmake:
1702 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1704 [EFL] Move Efl specific code from Source/CMakeLists.txt
1705 https://bugs.webkit.org/show_bug.cgi?id=136206
1707 Reviewed by Gyuyoung Kim.
1709 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
1710 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
1712 * Source/CMakeLists.txt:
1713 * Source/cmake/OptionsEfl.cmake:
1715 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
1717 [EFL] Introduce DEVELOPER_MODE
1718 https://bugs.webkit.org/show_bug.cgi?id=135884
1720 Reviewed by Gyuyoung Kim.
1722 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
1723 instead of SHARED_CORE.
1724 SHARED_CORE can reduce link time and memory consumption but it is slightly different
1725 from release binary.
1727 * Source/cmake/OptionsEfl.cmake:
1728 * Source/cmake/WebKitHelpers.cmake:
1729 Moved fvisibility=hidden to OptionsEfl.cmake
1731 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
1733 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
1734 https://bugs.webkit.org/show_bug.cgi?id=136110
1736 Reviewed by Gyuyoung Kim.
1738 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
1740 * Source/cmake/OptionsEfl.cmake:
1742 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1744 [EFL] Apply eflsymbols.filter to WebKit2
1745 https://bugs.webkit.org/show_bug.cgi?id=136148
1747 Reviewed by Csaba Osztrogonác.
1749 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
1750 in the eflsymbols.filter.
1752 * Source/cmake/OptionsEfl.cmake:
1753 * Source/cmake/eflsymbols.filter:
1755 2014-08-21 Zalan Bujtas <zalan@apple.com>
1757 Enable SATURATED_LAYOUT_ARITHMETIC.
1758 https://bugs.webkit.org/show_bug.cgi?id=136106
1760 Reviewed by Simon Fraser.
1762 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
1763 (No measurable performance regression on Mac.)
1765 * Source/cmake/OptionsMac.cmake:
1766 * Source/cmake/WebKitFeatures.cmake:
1767 * Source/cmakeconfig.h.cmake:
1769 2014-08-19 Zalan Bujtas <zalan@apple.com>
1771 Remove ENABLE(SUBPIXEL_LAYOUT).
1772 https://bugs.webkit.org/show_bug.cgi?id=136077
1774 Reviewed by Simon Fraser.
1776 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
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-08-17 Zan Dobersek <zdobersek@igalia.com>
1786 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
1787 https://bugs.webkit.org/show_bug.cgi?id=135980
1789 Reviewed by Martin Robinson.
1791 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
1792 overrides any other disabled optimization that was prepended to these
1793 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
1794 lists first in the final list of compilation flags.
1796 To avoid -On re-enabling optimizations that we'd like to keep disabled,
1797 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
1799 * Source/cmake/OptionsCommon.cmake:
1800 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
1801 * Source/cmake/OptionsGTK.cmake:
1803 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1805 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
1807 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1809 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
1811 [GTK] Disable memory sampler on non-Linux system
1812 https://bugs.webkit.org/show_bug.cgi?id=134483
1814 Reviewed by Philippe Normand.
1816 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
1817 Linux because it uses many Linux-specific features, so we should disable
1818 memory sampler on other systems by default.
1820 * Source/cmake/OptionsGTK.cmake:
1822 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
1824 [GTK] HTML API documentation should also be installed versioned
1825 https://bugs.webkit.org/show_bug.cgi?id=135970
1827 Reviewed by Philippe Normand.
1829 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
1832 2014-08-14 Tomas Popela <tpopela@redhat.com>
1834 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
1835 https://bugs.webkit.org/show_bug.cgi?id=135937
1837 Reviewed by Carlos Garcia Campos.
1841 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1843 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
1844 https://bugs.webkit.org/show_bug.cgi?id=135934
1846 Reviewed by Gustavo Noronha Silva.
1848 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
1849 The gir files should installed in $datadir/gir-1.0/ together with all other
1850 gir files. We don't need to install introspection files in a versioned
1851 directory because their filenames already contain the binary version. But before
1852 r171598, the files were only installed to the right directory if the
1853 gobject-instrospection pkg-config file was in the same prefix than the one we
1854 wanted to install, because the gir and typelibs directories were extracted from
1855 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
1856 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
1857 like we do in the autotools build.
1859 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
1860 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1861 * Source/cmake/OptionsGTK.cmake: Define
1862 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
1864 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
1866 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
1867 https://bugs.webkit.org/show_bug.cgi?id=135836
1869 Reviewed by Philippe Normand.
1871 * Source/PlatformGTK.cmake: Add install command to also install
1872 the GObject DOM bindings API docs.
1874 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
1876 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
1877 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
1878 re-set CMAKE_C_FLAGS with the new string. The two flags should really
1879 be appended to CMAKE_C_FLAGS and the same variable re-set with the
1882 * Source/cmake/OptionsCommon.cmake:
1884 2014-08-13 Alex Christensen <achristensen@webkit.org>
1886 Progress towards CMake on Mac.
1887 https://bugs.webkit.org/show_bug.cgi?id=135819
1889 Reviewed by Laszlo Gombos.
1891 * Source/cmake/OptionsMac.cmake:
1892 Disable some more features temporarily to get CMake working.
1893 * Source/cmake/WebKitMacros.cmake:
1894 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
1896 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1898 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
1899 https://bugs.webkit.org/show_bug.cgi?id=135798
1901 Reviewed by Philippe Normand.
1903 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
1905 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
1906 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1907 https://bugs.webkit.org/show_bug.cgi?id=133317
1909 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1911 Reviewed by Philippe Normand.
1913 No new tests since no new functionality has been added.
1915 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1917 2014-08-11 Commit Queue <commit-queue@webkit.org>
1919 Unreviewed, rolling out r172393.
1920 https://bugs.webkit.org/show_bug.cgi?id=135796
1922 discussion needed about GnuTLS version bump on the bots
1923 (Requested by philn on #webkit).
1927 https://bugs.webkit.org/show_bug.cgi?id=133317
1928 http://trac.webkit.org/changeset/172393
1930 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1931 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
1932 https://bugs.webkit.org/show_bug.cgi?id=133317
1934 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
1936 Reviewed by Philippe Normand.
1938 No new tests since no new functionality has been added.
1940 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
1942 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
1944 [GTK] Adds stubs for all subtle crypto algorithm implemntations
1945 https://bugs.webkit.org/show_bug.cgi?id=133316
1947 Reviewed by Philippe Normand.
1949 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
1950 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
1951 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
1953 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
1955 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
1957 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1959 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1961 [GTK] REGRESSION(r166239): The ld version script is not being used
1962 https://bugs.webkit.org/show_bug.cgi?id=135694
1964 Reviewed by Martin Robinson.
1966 Move the symbols filter file from Tools/gtk to Source/cmake and rename
1967 it as gtksymbols.filter. Also updated it, since some of the symbols
1968 exported were renamed.
1970 * Source/cmake/OptionsGTK.cmake:
1971 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
1973 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
1975 [GTK] Child processes should be installed in a versioned directory
1976 https://bugs.webkit.org/show_bug.cgi?id=135754
1978 Reviewed by Gustavo Noronha Silva.
1980 Define LIBEXEC_INSTALL_DIR as
1981 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
1982 so that the child processes are installed in $libexec/webkitgtk-4.0.
1983 This makes it possible to install 2.6 in parallel to older versions.
1985 * Source/cmake/OptionsGTK.cmake:
1987 2014-08-08 Alex Christensen <achristensen@webkit.org>
1989 Progress towards using CMake on Mac.
1990 https://bugs.webkit.org/show_bug.cgi?id=135662
1992 Reviewed by Laszlo Gombos.
1995 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
1996 * Source/cmake/WebKitFeatures.cmake:
1997 * Source/cmakeconfig.h.cmake:
1998 Added features that are needed by the Mac port.
1999 * Source/cmake/OptionsMac.cmake:
2000 Enable CSS_IMAGE_SET based on FeatureDefines.h.
2001 Disable the FTL with CMake for now.
2002 * Source/cmake/OptionsEFL.cmake:
2003 * Source/cmake/OptionsGTK.cmake:
2004 Enable subpixel layout to not conflict with FeatureDefines.h
2006 2014-08-08 Simon Fraser <simon.fraser@apple.com>
2008 Undo some erroneous changes to the Xcode scheme files from r172259.
2010 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2011 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2013 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
2015 [CMake] Drop the required version of CMake down to 2.8.8
2016 https://bugs.webkit.org/show_bug.cgi?id=135713
2018 Reviewed by Alex Christensen.
2020 * CMakeLists.txt: Require CMake 2.8.8.
2022 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
2024 Get rid of INPUT_SPEECH
2025 https://bugs.webkit.org/show_bug.cgi?id=135672
2027 Reviewed by Andreas Kling.
2029 * Source/cmake/OptionsMac.cmake:
2030 * Source/cmake/WebKitFeatures.cmake:
2031 * Source/cmakeconfig.h.cmake:
2033 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
2035 [GTK] Disable IndexedDB
2036 https://bugs.webkit.org/show_bug.cgi?id=135692
2038 Reviewed by Carlos Garcia Campos.
2040 * Source/cmake/OptionsGTK.cmake:
2042 2014-08-06 Dean Jackson <dino@apple.com>
2044 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
2045 https://bugs.webkit.org/show_bug.cgi?id=135675
2047 Reviewed by Sam Weinig.
2049 * Source/cmake/OptionsGTK.cmake:
2050 * Source/cmake/OptionsMac.cmake:
2051 * Source/cmake/WebKitFeatures.cmake:
2052 * Source/cmakeconfig.h.cmake:
2054 2014-08-06 David Farler <dfarler@apple.com>
2056 Unreviewed build fix: Make includes semicolon in assignment.
2058 * Makefile.shared: Remove a ;
2060 2014-08-06 David Farler <dfarler@apple.com>
2062 Set DSYMUTIL_NUM_THREADS to the number of logical cores
2063 https://bugs.webkit.org/show_bug.cgi?id=135655
2065 Reviewed by Mark Rowe.
2067 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
2069 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
2071 [GTK] Be able to disable gtk2 dependency
2072 https://bugs.webkit.org/show_bug.cgi?id=135505
2074 Reviewed by Gustavo Noronha Silva.
2076 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
2077 required when it's enabled. It's enabled by default.
2079 * Source/cmake/OptionsGTK.cmake:
2081 2014-08-05 Alex Christensen <achristensen@webkit.org>
2084 https://bugs.webkit.org/show_bug.cgi?id=135620
2086 Reviewed by Laszlo Gombos.
2088 * Source/cmake/OptionsMac.cmake:
2089 Use UDIS86 by default on Mac.
2091 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
2093 Add a flag for the CSS Selectors level 4 implementation
2094 https://bugs.webkit.org/show_bug.cgi?id=135535
2096 Reviewed by Andreas Kling.
2098 * Source/cmake/OptionsEfl.cmake:
2099 * Source/cmake/OptionsGTK.cmake:
2100 * Source/cmake/WebKitFeatures.cmake:
2101 * Source/cmakeconfig.h.cmake:
2103 2014-08-04 Alex Christensen <achristensen@webkit.org>
2105 Progress towards CMake on Mac.
2106 https://bugs.webkit.org/show_bug.cgi?id=135528
2108 Reviewed by Gyuyoung Kim.
2110 * Source/cmake/OptionsMac.cmake:
2111 Made options list based on FeatureDefines.xcconfig files.
2113 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2115 [GTK] Windowing target support should reflect the support in the GTK+ dependency
2116 https://bugs.webkit.org/show_bug.cgi?id=134736
2118 Reviewed by Martin Robinson.
2120 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
2121 support the X11 or Wayland windowing targets -- instead, if there's no support
2122 the specific target is disabled, and an error is thrown only if neither of the
2123 backends is enabled at the end..
2124 For now the X11 target remains enabled by default, and the Wayland target is
2125 kept disabled. Once it's possible to have both targets enabled at runtime in
2126 WebKit, the Wayland target will be enabled as well and we'll leave it to the
2127 GTK+ dependency to determine which targets can be enabled.
2129 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2131 [CMake] Add FindWayland.cmake
2132 https://bugs.webkit.org/show_bug.cgi?id=135540
2134 Reviewed by Martin Robinson.
2136 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
2137 dependency. For now bundles the wayland-client, wayland-server and
2138 wayland-egl pkg-config targets into one dependency, but these could
2139 be split in the future if necessary.
2141 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
2143 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
2144 https://bugs.webkit.org/show_bug.cgi?id=135553
2146 Reviewed by Gyuyoung Kim.
2148 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
2149 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
2151 * Source/cmake/OptionsEfl.cmake:
2153 2014-08-01 Bear Travis <betravis@adobe.com>
2155 [Feature Queries] Enable Feature Queries on EFL/GTK
2156 https://bugs.webkit.org/show_bug.cgi?id=134902
2158 Reviewed by Benjamin Poulain.
2160 Enable CSS Feature Queries by default on the EFL and GTK
2163 * Source/cmake/OptionsEfl.cmake:
2164 * Source/cmake/OptionsGTK.cmake:
2166 2014-08-01 Alex Christensen <achristensen@webkit.org>
2168 Progress towards cmake on Windows.
2169 https://bugs.webkit.org/show_bug.cgi?id=135484
2171 Reviewed by Martin Robinson.
2174 Added Mac to list of ports, even though it is not done yet.
2175 Changed minimum bison version to version installed on Macs.
2176 * Source/cmake/OptionsAppleWin.cmake:
2177 Added some definitions.
2178 * Source/cmake/OptionsEfl.cmake:
2179 * Source/cmake/OptionsGTK.cmake:
2180 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2181 * Source/cmake/OptionsMac.cmake: Added blank for now.
2182 * Source/cmake/OptionsWinCairo.cmake:
2183 * Source/cmake/OptionsWindows.cmake:
2184 Added some definitions.
2185 Removed /WX (warnings treated as error while compiling).
2186 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2188 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2190 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2191 https://bugs.webkit.org/show_bug.cgi?id=135501
2193 Reviewed by Gyuyoung Kim.
2195 Use PROJECT_VERSION_MICRO instead.
2197 * Source/cmake/OptionsEfl.cmake:
2198 * Source/cmake/OptionsGTK.cmake:
2199 * Source/cmake/WebKitHelpers.cmake:
2201 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2203 [EFL] Bump ewebkit version to 1.11
2204 https://bugs.webkit.org/show_bug.cgi?id=135487
2206 Reviewed by Gyuyoung Kim.
2208 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2210 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2212 [EFL] Add support for building with Geoclue2.
2213 https://bugs.webkit.org/show_bug.cgi?id=135455
2215 Reviewed by Gyuyoung Kim.
2217 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2220 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2222 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2224 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2226 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2228 [GTK] Bump binary version for 2.6
2229 https://bugs.webkit.org/show_bug.cgi?id=133724
2231 Reviewed by Philippe Normand.
2233 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
2234 update library version numbers.
2236 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
2238 [CMake] Bump the minimum required version
2239 https://bugs.webkit.org/show_bug.cgi?id=135382
2241 Reviewed by Gyuyoung Kim.
2243 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
2244 we introduced usage of target_include_directories().
2246 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
2248 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
2249 https://bugs.webkit.org/show_bug.cgi?id=135376
2251 Reviewed by Gyuyoung Kim.
2253 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
2255 * Source/cmake/OptionsEfl.cmake:
2256 * Source/cmake/OptionsGTK.cmake:
2258 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
2260 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
2261 https://bugs.webkit.org/show_bug.cgi?id=135288
2263 Reviewed by Martin Robinson.
2265 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
2266 datadir to pkgconfig
2267 * Source/cmake/OptionsGTK.cmake: define install directories early
2268 enough to be used in FindGObjectIntrospection.cmake
2270 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
2272 Remove CSS_EXCLUSIONS compile flag and leftover code
2273 https://bugs.webkit.org/show_bug.cgi?id=135175
2275 Reviewed by Zoltan Horvath.
2277 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
2278 stubs. This removes the flag and the useless code.
2280 * Source/cmake/WebKitFeatures.cmake:
2281 * Source/cmakeconfig.h.cmake:
2283 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2285 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2286 https://bugs.webkit.org/show_bug.cgi?id=135114
2288 Fix build with GStreamer 1.4
2290 Reviewed by Philippe Normand.
2292 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2293 gst-mpegts component instead of the unstable 1.3.x verstions.
2295 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2297 [GTK] Simplify make-dist command line arguments
2298 https://bugs.webkit.org/show_bug.cgi?id=134832
2300 Reviewed by Martin Robinson.
2302 * Source/PlatformGTK.cmake: Use --version instead of
2303 --tarball-root when running make-dist.py.
2305 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2307 Add a manual test for r135044
2309 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2311 Rubber-stamped by Andy Estes.
2313 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2315 2014-07-18 Dana Burkart <dburkart@apple.com>
2317 Add a new 'analyze' target to the makefile. This will make use of a new
2318 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2320 https://bugs.webkit.org/show_bug.cgi?id=135057
2321 <rdar://problem/10193187>
2323 Reviewed by David Kilzer.
2329 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2331 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2332 https://bugs.webkit.org/show_bug.cgi?id=134963
2334 Reviewed by Gyuyoung Kim.
2336 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2338 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2340 2014-07-14 Daniel Bates <dabates@apple.com>
2342 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2343 https://bugs.webkit.org/show_bug.cgi?id=134905
2344 <rdar://problem/16602779>
2346 Reviewed by Simon Fraser.
2348 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2349 on the tapped element when processing a touchend as a result of finger pressing and releasing
2350 on the same element that is initially positioned outside the visible content area.
2352 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2354 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2356 [GTK] Enable VIDEO_TRACK by default
2357 https://bugs.webkit.org/show_bug.cgi?id=134801
2359 Reviewed by Philippe Normand.
2361 * Source/cmake/OptionsGTK.cmake:
2363 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2365 [GTK][CMake] Add a 'distcheck' target
2366 https://bugs.webkit.org/show_bug.cgi?id=130675
2368 Reviewed by Gustavo Noronha Silva.
2370 * Source/PlatformGTK.cmake: Add distcheck target.
2372 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2374 [GTK] Use the same default options for production builds that previous stable releases
2375 https://bugs.webkit.org/show_bug.cgi?id=134589
2377 Reviewed by Martin Robinson.
2379 Change the default value of some features to match our stable releases.
2380 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2381 canvas depend on whether cairo-gl is found.
2383 * Source/cmake/FindCairoGL.cmake: Added.
2384 * Source/cmake/OptionsGTK.cmake:
2386 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2388 [EFL] Support Encrypted Media Extensions.
2389 https://bugs.webkit.org/show_bug.cgi?id=134750
2391 Reviewed by Gyuyoung Kim.
2393 Webkit needs to play encrypted media contents when media player
2394 is played by Media source extensions and normal video procedure.
2396 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2398 2014-07-08 Alex Christensen <achristensen@webkit.org>
2400 Steps towards CMake on Windows.
2401 https://bugs.webkit.org/show_bug.cgi?id=134716
2403 Reviewed by Martin Robinson.
2406 Added AppleWin and WinCairo to list of CMake ports.
2407 * Source/cmake/OptionsAppleWin.cmake: Added.
2408 * Source/cmake/OptionsWinCairo.cmake: Added.
2409 * Source/cmake/OptionsWindows.cmake:
2410 Windows needs to use the system malloc. Other options to come.
2412 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2414 [EFL] Support Geolocation
2415 https://bugs.webkit.org/show_bug.cgi?id=134439
2417 Reviewed by Antonio Gomes.
2419 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2421 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2423 Broken build with build-webkit --no-video
2424 https://bugs.webkit.org/show_bug.cgi?id=134587
2426 Reviewed by Darin Adler.
2428 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2430 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2432 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2434 [GTK] The list of features shown by cmake is not accurate
2435 https://bugs.webkit.org/show_bug.cgi?id=134588
2437 Reviewed by Gustavo Noronha Silva.
2439 The problem is that some options might change after the feature
2440 list has been printed.
2442 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2443 setting the default values of features and set WEBGL value
2444 depending on the dependencies, and API_TEST depending on whether
2445 developer mode is enabled or not.
2447 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2449 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2450 https://bugs.webkit.org/show_bug.cgi?id=134578
2452 Reviewed by Gyuyoung Kim.
2454 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2455 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2456 disable related option if it is not ON.
2458 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2459 * Source/cmake/OptionsGTK.cmake: Ditto.
2460 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2462 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2464 [GTK] make dist is broken
2465 https://bugs.webkit.org/show_bug.cgi?id=134542
2467 Reviewed by Martin Robinson.
2469 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2471 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2473 [CMake] Add necessary support for building for the Wayland target
2474 https://bugs.webkit.org/show_bug.cgi?id=134160
2476 Reviewed by Darin Adler.
2478 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
2479 is enabled, and that its version matches the version of the generic package. Same
2480 for the gtk+-wayland-3.0 package and the Wayland target.
2481 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
2482 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
2483 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
2484 so they keep building the TestNetscapePlugin target.
2485 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
2486 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
2487 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
2488 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
2489 the minimum required version as soon as that target is enabled. Only search for GLX
2490 if the X11 target is enabled.
2492 2014-06-29 Yoav Weiss <yoav@yoav.ws>
2494 Add support for HTMLImageElement's sizes attribute
2495 https://bugs.webkit.org/show_bug.cgi?id=133620
2497 Reviewed by Dean Jackson.
2499 Added an ENABLE_PICTURE_SIZES compile flag.
2501 * Source/cmake/WebKitFeatures.cmake:
2502 * Source/cmakeconfig.h.cmake:
2504 2014-06-26 Daniel Bates <dabates@apple.com>
2506 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
2507 https://bugs.webkit.org/show_bug.cgi?id=134309
2508 <rdar://problem/17427385>
2510 Reviewed by Darin Adler.
2512 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
2515 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
2517 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
2519 Remove build guard for progress element
2520 https://bugs.webkit.org/show_bug.cgi?id=134292
2522 Reviewed by Benjamin Poulain.
2524 The build flag is no longer needed as it is always on.
2526 * Source/cmake/WebKitFeatures.cmake:
2527 * Source/cmakeconfig.h.cmake:
2529 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
2531 [EFL] Platform support for WebSpeech feature.
2532 https://bugs.webkit.org/show_bug.cgi?id=116438
2534 Reviewed by Csaba Osztrogonác.
2536 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2538 * Source/cmake/OptionsEfl.cmake:
2539 * Source/cmake/WebKitFeatures.cmake:
2541 2014-06-23 Philippe Normand <pnormand@igalia.com>
2543 Unreviewed, GTK build fix after r170266.
2545 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
2547 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2549 Disable gamepad feature on EFL and GTK ports by default
2550 https://bugs.webkit.org/show_bug.cgi?id=134169
2552 Reviewed by Brady Eidson.
2554 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
2556 2014-06-21 Brady Eidson <beidson@apple.com>
2558 Gamepad API - Deprecate the existing implementation
2559 https://bugs.webkit.org/show_bug.cgi?id=134108
2561 Reviewed by Timothy Hatcher.
2563 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2564 -Add the "Deprecated" suffix to some implementation files
2566 * Source/cmake/OptionsEfl.cmake:
2567 * Source/cmake/OptionsGTK.cmake:
2568 * Source/cmake/WebKitFeatures.cmake:
2569 * Source/cmakeconfig.h.cmake:
2571 2014-06-21 Commit Queue <commit-queue@webkit.org>
2573 Unreviewed, rolling out r170244.
2574 https://bugs.webkit.org/show_bug.cgi?id=134157
2576 GTK/EFL bindings generator works differently, making this
2577 patch not work there. Will fix entire patch after a rollout.
2578 (Requested by bradee-oh on #webkit).
2582 "Gamepad API - Deprecate the existing implementation"
2583 https://bugs.webkit.org/show_bug.cgi?id=134108
2584 http://trac.webkit.org/changeset/170244
2586 2014-06-21 Brady Eidson <beidson@apple.com>
2588 Gamepad API - Deprecate the existing implementation
2589 https://bugs.webkit.org/show_bug.cgi?id=134108
2591 Reviewed by Timothy Hatcher.
2593 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
2594 -Add the "Deprecated" suffix to some implementation files
2596 * Source/cmake/OptionsEfl.cmake:
2597 * Source/cmake/OptionsGTK.cmake:
2598 * Source/cmake/WebKitFeatures.cmake:
2599 * Source/cmakeconfig.h.cmake:
2601 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2603 Removing PAGE_VISIBILITY_API compile guard.
2604 https://bugs.webkit.org/show_bug.cgi?id=133844
2606 Reviewed by Gavin Barraclough.
2608 * Source/cmake/OptionsEfl.cmake:
2609 * Source/cmake/OptionsGTK.cmake:
2610 * Source/cmake/WebKitFeatures.cmake:
2611 * Source/cmakeconfig.h.cmake:
2613 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
2615 [EFL][CMAKE] Disable WebKit1 build as a default
2616 https://bugs.webkit.org/show_bug.cgi?id=134093
2618 Reviewed by Gyuyoung Kim.
2620 Disable WebKit1 build and enable WebKit2 build for the EFL port.
2622 * Source/cmake/OptionsEfl.cmake:
2624 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2626 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
2627 https://bugs.webkit.org/show_bug.cgi?id=130389
2629 Reviewed by Mark Lam.
2631 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
2632 into !ENABLE(JIT) since they are mutually exclusive.
2634 * Source/cmake/OptionsEfl.cmake:
2635 * Source/cmake/OptionsGTK.cmake:
2636 * Source/cmake/WebKitFeatures.cmake:
2637 * Source/cmakeconfig.h.cmake:
2639 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
2641 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
2642 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
2643 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
2644 by the plugin process, but it is searched and utilized separately.
2646 Rubber-stamped by Carlos Garcia Campos.
2648 * Source/cmake/OptionsGTK.cmake:
2650 2014-06-16 Commit Queue <commit-queue@webkit.org>
2652 Unreviewed, rolling out r170003.
2653 https://bugs.webkit.org/show_bug.cgi?id=133938
2655 This patch broke GTK build (Requested by kczech on #webkit).
2659 "[EFL] Platform support for WebSpeech feature."
2660 https://bugs.webkit.org/show_bug.cgi?id=116438
2661 http://trac.webkit.org/changeset/170003
2663 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
2665 [EFL] Platform support for WebSpeech feature.
2666 https://bugs.webkit.org/show_bug.cgi?id=116438
2668 Reviewed by Gyuyoung Kim.
2670 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
2672 * Source/cmake/OptionsEfl.cmake:
2673 * Source/cmake/WebKitFeatures.cmake:
2675 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2677 [EFL] Remove duplicated compiler flag
2678 https://bugs.webkit.org/show_bug.cgi?id=133838
2680 Reviewed by Anders Carlsson.
2682 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
2683 it added to common compiler options. So, it is duplicated.
2685 * Source/cmake/WebKitHelpers.cmake:
2687 2014-06-11 Commit Queue <commit-queue@webkit.org>
2689 Unreviewed, rolling out r169877.
2690 https://bugs.webkit.org/show_bug.cgi?id=133784
2692 rollout wrong build fix approach for EFL port (Requested by
2693 gyuyoung on #webkit).
2697 "Unreviewed, EFL build fix since r169869."
2698 http://trac.webkit.org/changeset/169877
2700 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2702 Unreviewed, EFL build fix since r169869.
2704 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
2706 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
2708 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2710 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
2712 * Source/cmake/WebKitHelpers.cmake:
2714 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
2716 [GTK] Make it possible to build with FTL enabled
2717 https://bugs.webkit.org/show_bug.cgi?id=133219
2719 Reviewed by Philippe Normand.
2721 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
2723 * Source/cmake/OptionsGTK.cmake:
2725 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
2727 [CMake] Clean up FAST_MOBILE_SCROLLING
2728 https://bugs.webkit.org/show_bug.cgi?id=133342
2730 Reviewed by Gyuyoung Kim.
2732 FAST_MOBILE_SCROLLING was removed in r168726.
2734 * Source/cmake/OptionsEfl.cmake:
2735 * Source/cmake/OptionsGTK.cmake:
2736 * Source/cmake/WebKitFeatures.cmake:
2737 * Source/cmakeconfig.h.cmake:
2739 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2742 https://bugs.webkit.org/show_bug.cgi?id=132863
2744 Reviewed by Csaba Osztrogonác.
2746 * Source/cmake/OptionsEfl.cmake:
2747 * Source/cmake/OptionsGTK.cmake:
2748 * Source/cmake/WebKitFeatures.cmake:
2749 * Source/cmakeconfig.h.cmake:
2751 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2753 Allow building CMake based ports with WEB_REPLAY
2754 https://bugs.webkit.org/show_bug.cgi?id=133154
2756 Reviewed by Csaba Osztrogonác.
2758 * Source/cmake/WebKitFeatures.cmake:
2759 * Source/cmakeconfig.h.cmake:
2761 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
2763 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
2764 https://bugs.webkit.org/show_bug.cgi?id=132907
2766 Reviewed by Gyuyoung Kim.
2768 * Source/cmake/FindLIBCXXABI.cmake: Added.
2769 * Source/cmake/OptionsEfl.cmake:
2771 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
2773 [EFL] Turn on ENABLE_CSS_FILTERS
2774 https://bugs.webkit.org/show_bug.cgi?id=133153
2776 Reviewed by Gyuyoung Kim.
2778 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
2780 2014-05-16 Martin Robinson <mrobinson@igalia.com>
2782 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
2783 https://bugs.webkit.org/show_bug.cgi?id=132819
2785 Reviewed by Carlos Garcia Campos.
2787 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
2789 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
2790 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
2792 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
2794 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
2796 [CMake] Support building with Debug Fission
2797 https://bugs.webkit.org/show_bug.cgi?id=131177
2799 Reviewed by Philippe Normand.
2801 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
2802 of http://gcc.gnu.org/wiki/DebugFission.
2804 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
2806 [GTK] Rename translation domain as WebKit2GTK-3.0
2807 https://bugs.webkit.org/show_bug.cgi?id=132953
2809 Reviewed by Gustavo Noronha Silva.
2811 * Source/cmake/OptionsGTK.cmake:
2813 2014-05-18 Rik Cabanier <cabanier@adobe.com>
2815 support for navigator.hardwareConcurrency
2816 https://bugs.webkit.org/show_bug.cgi?id=132588
2818 Reviewed by Filip Pizlo.
2820 * Source/cmake/OptionsEfl.cmake:
2821 * Source/cmake/OptionsGTK.cmake:
2822 * Source/cmake/WebKitFeatures.cmake:
2823 * Source/cmakeconfig.h.cmake:
2825 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2827 Remove CSS_STICKY_POSITION guards
2828 https://bugs.webkit.org/show_bug.cgi?id=132676
2830 Reviewed by Simon Fraser.
2832 * Source/cmake/OptionsEfl.cmake:
2833 * Source/cmake/OptionsGTK.cmake:
2834 * Source/cmake/WebKitFeatures.cmake:
2835 * Source/cmakeconfig.h.cmake:
2837 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
2839 Unreviewed. Bump version numbers.
2841 * Source/cmake/OptionsGTK.cmake:
2843 2014-05-10 Martin Robinson <mrobinson@igalia.com>
2845 [GTK][CMake] Unable to do make install
2846 https://bugs.webkit.org/show_bug.cgi?id=130188
2848 Reviewed by Carlos Garcia Campos.
2850 Only try to install the HTML documentation if the build is configured to generate it via
2851 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2852 to keep the HTML documentation directory as an installation source.
2854 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2855 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2856 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
2857 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
2858 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2860 2014-05-09 Anders Carlsson <andersca@apple.com>
2862 Rename WebKit2.framework to WebKit.framework
2863 https://bugs.webkit.org/show_bug.cgi?id=132743
2864 <rdar://problem/15920046>
2866 Reviewed by Dan Bernstein.
2869 Build WebKit.xcodeproj before WebKit2.xcodeproj.
2871 * WebKit.xcworkspace/xcshareddata/xcschemes/:
2874 2014-05-06 David Kilzer <ddkilzer@apple.com>
2876 Add Makefile targets for copying static libraries (LLVM and WKSI)
2877 <http://webkit.org/b/132619>
2879 Reviewed by Mark Rowe.
2882 (MODULES): Add WebKitLibraries.
2884 2014-05-06 Commit Queue <commit-queue@webkit.org>
2886 Unreviewed, rolling out r168304.
2887 https://bugs.webkit.org/show_bug.cgi?id=132607
2889 Broke the build (Requested by KaL on #webkit).
2893 "[GTK][CMake] Unable to do make install"
2894 https://bugs.webkit.org/show_bug.cgi?id=130188
2895 http://trac.webkit.org/changeset/168304
2897 2014-05-05 Martin Robinson <mrobinson@igalia.com>
2899 [GTK][CMake] Unable to do make install
2900 https://bugs.webkit.org/show_bug.cgi?id=130188
2902 Reviewed by Carlos Garcia Campos.
2904 Only try to install the HTML documentation if the build is configured to generate it via
2905 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
2906 to keep the HTML documentation directory as an installation source.
2908 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
2909 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
2910 never added to the default target, but will be triggered by build-webkit, so that
2911 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
2912 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
2914 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2916 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
2917 https://bugs.webkit.org/show_bug.cgi?id=132525
2919 Reviewed by Martin Robinson.
2921 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
2922 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
2923 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
2925 2014-05-01 David Kilzer <ddkilzer@apple.com>
2927 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
2928 <http://webkit.org/b/132432>
2930 Reviewed by Tim Horton.
2932 * Source/cmake/WebKitFeatures.cmake:
2933 * Source/cmakeconfig.h.cmake:
2934 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
2936 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2938 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
2940 Reviewed by Dan Bernstein/Anders Carlsson.
2942 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2943 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2945 2014-04-30 Simon Fraser <simon.fraser@apple.com>
2947 Let Xcode have its way with the WebKit workspace.
2949 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2950 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2952 2014-04-29 Martin Robinson <mrobinson@igalia.com>
2954 [GTK] Make it easier to run CMake for downstreams
2955 https://bugs.webkit.org/show_bug.cgi?id=132370
2957 Reviewed by Carlos Garcia Campos.
2959 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
2961 2014-04-27 Joonghun Park <jh718.park@samsung.com>
2963 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
2964 https://bugs.webkit.org/show_bug.cgi?id=132176
2966 Reviewed by Gyuyoung Kim.
2968 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
2970 * Source/cmake/OptionsEfl.cmake:
2972 2014-04-22 Alex Christensen <achristensen@webkit.org>
2974 Removed old stdbool and inttypes headers.
2975 https://bugs.webkit.org/show_bug.cgi?id=131966
2977 Reviewed by Brent Fulgham.
2979 * Source/cmake/OptionsWindows.cmake:
2980 * Source/cmake/WebKitPackaging.cmake:
2981 Removed references to os-win32 directory.
2983 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
2985 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
2987 Rubber-stamped by Carlos Garcia Campos.
2989 * Source/cmake/WebKitFeatures.cmake:
2991 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
2993 Empty RenderInline objects should not be line break objects.
2995 https://bugs.webkit.org/show_bug.cgi?id=131861
2996 <rdar://problem/15663617>
2998 Reviewed by David Hyatt.
3000 * ManualTests/empty-inline-as-line-break-position.html: Added.
3001 This issue wouldn't reproduce in WebKitTestRunner.
3003 2014-04-19 Brent Fulgham <bfulgham@apple.com>
3005 Revert unintended workspace change in my last commit.
3007 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
3008 Scheme type back to Debug.
3010 2014-04-18 Philippe Normand <pnormand@igalia.com>
3012 Remove NETWORK_INFO support
3013 https://bugs.webkit.org/show_bug.cgi?id=131841
3015 Reviewed by Gyuyoung Kim.
3017 * Source/cmake/OptionsEfl.cmake:
3018 * Source/cmake/OptionsGTK.cmake:
3019 * Source/cmake/WebKitFeatures.cmake:
3020 * Source/cmakeconfig.h.cmake:
3022 2014-04-17 Darin Adler <darin@apple.com>
3024 Try to fix EFL and GTK builds.
3026 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
3027 * Source/cmake/OptionsGTK.cmake: Ditto.
3028 * Source/cmakeconfig.h.cmake: Ditto.
3030 2014-04-16 Brendan Long <b.long@cablelabs.com>
3032 [GTK][CMAKE] build-webkit doesn't detect when the build fails
3033 https://bugs.webkit.org/show_bug.cgi?id=130148
3035 Reviewed by Martin Robinson.
3037 * 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.
3039 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
3041 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
3042 https://bugs.webkit.org/show_bug.cgi?id=131725
3044 Reviewed by Philippe Normand.
3046 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
3047 instead of GTK_UNIX_PRINTING_FOUND and set the macro
3048 HAVE_GTK_UNIX_PRINTING to 1 when found.
3050 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
3052 Web Replay: memoize nondeterministic attributes of the Navigator interface
3053 https://bugs.webkit.org/show_bug.cgi?id=131340
3055 Reviewed by Timothy Hatcher.
3057 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
3059 2014-04-09 Brendan Long <b.long@cablelabs.com>
3061 [GStreamer] Expose MPEG-TS metadata
3062 https://bugs.webkit.org/show_bug.cgi?id=122001
3064 Reviewed by Eric Carlson.
3066 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
3067 * Source/cmake/OptionsEfl.cmake: Same.
3068 * Source/cmake/OptionsGTK.cmake: Same.
3070 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
3072 Web Replay: memoize nondeterministic attributes of the Screen interface
3073 https://bugs.webkit.org/show_bug.cgi?id=131339
3075 Reviewed by Timothy Hatcher.
3077 * ManualTests/inspector/replay-window-screen.html: Added.
3079 2014-04-08 Martin Robinson <mrobinson@igalia.com>
3081 [GTK] Remove the WebKitGTK+ WebKit 1 code
3082 https://bugs.webkit.org/show_bug.cgi?id=131399
3084 Reviewed by Anders Carlsson.
3086 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
3087 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
3089 2014-04-08 Dan Bernstein <mitz@apple.com>
3091 Added bmalloc to the WebKit workspace.
3092 https://bugs.webkit.org/show_bug.cgi?id=131362
3094 Reviewed by Geoff Garen.
3096 * WebKit.xcworkspace/contents.xcworkspacedata:
3097 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3098 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3100 2014-04-08 Geoffrey Garen <ggaren@apple.com>
3102 Build bmalloc on iOS too
3103 https://bugs.webkit.org/show_bug.cgi?id=131381
3105 Reviewed by Andreas Kling.
3107 * Source/Makefile: Build it.
3109 2014-04-07 Geoffrey Garen <ggaren@apple.com>
3111 Build bmalloc on Mac
3112 https://bugs.webkit.org/show_bug.cgi?id=131333
3114 Reviewed by Mark Rowe.
3117 * WebKitBuild: Added.
3118 * WebKitBuild/Debug: Added.
3120 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
3122 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
3123 https://bugs.webkit.org/show_bug.cgi?id=131257
3125 Reviewed by Gyuyoung Kim.
3127 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
3129 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3131 [GTK] Stop trying to install WebKit1 documentation
3132 https://bugs.webkit.org/show_bug.cgi?id=131278
3134 Reviewed by Martin Robinson.
3136 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
3137 built anymore since r166584. This fixes `make install'.
3139 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
3141 Web Replay: capture and replay wheel events and scroll commands
3142 https://bugs.webkit.org/show_bug.cgi?id=129402
3144 Reviewed by Timothy Hatcher.
3146 * ManualTests/inspector/replay-wheel-events.html: Added.
3148 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3150 [GTK][CMake] Remove FindXt.cmake.
3151 https://bugs.webkit.org/show_bug.cgi?id=131227
3153 Reviewed by Anders Carlsson.
3155 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
3157 * Source/cmake/FindXt.cmake: Removed.
3158 * Source/cmake/OptionsGTK.cmake:
3160 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3162 [EFL] Build error due to changed path of generated js files.
3163 https://bugs.webkit.org/show_bug.cgi?id=131215
3165 Reviewed by Gyuyoung Kim.
3167 r166648 fixed the generation of some .js files on GTK. Due to some
3168 changes in the paths it causes a build error on EFL.
3170 * Source/PlatformEfl.cmake:
3171 Replaced path for two derived source files.
3173 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3175 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
3176 https://bugs.webkit.org/show_bug.cgi?id=131095
3178 Reviewed by Martin Robinson.
3180 One needs to take into account OpenGL's include directory found via
3181 find_package() when looking for glx.h, since if the former is a
3182 non-standard location the latter will also be. If this is not it is
3183 possible that OpenGL is found but GLX support is not properly detected.
3185 * Source/cmake/OptionsGTK.cmake:
3187 2014-04-02 Martin Robinson <mrobinson@igalia.com>
3189 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
3190 https://bugs.webkit.org/show_bug.cgi?id=130343
3192 Reviewed by Gustavo Noronha Silva.
3194 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
3196 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
3198 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3200 [CMake] Drop port check from FindEGL.cmake.
3201 https://bugs.webkit.org/show_bug.cgi?id=131091
3203 Reviewed by Gyuyoung Kim.
3205 There is no reason to mark some variables as advanced only for the
3208 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
3209 as advanced regardless of the port.
3211 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3213 Fix the !ENABLE(BATTERY_STATUS) build
3214 https://bugs.webkit.org/show_bug.cgi?id=130183
3216 Reviewed by Anders Carlsson.
3218 * Source/cmake/OptionsEfl.cmake:
3220 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3222 [CMake][GTK] Do not expand variables twice in if() checks.
3223 https://bugs.webkit.org/show_bug.cgi?id=130964
3225 Reviewed by Martin Robinson.
3227 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
3228 to be checked by the if clause. This is not what we want, and
3229 configuration fails when, say, GLX support wasn't found as the if
3230 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
3232 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
3235 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3237 [GTK] Remove scripts code only applicable to autotools
3238 https://bugs.webkit.org/show_bug.cgi?id=130841
3240 Reviewed by Anders Carlsson.
3242 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
3244 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3246 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
3247 https://bugs.webkit.org/show_bug.cgi?id=130936
3249 Reviewed by Carlos Garcia Campos.
3251 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
3253 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
3255 [GTK] Add support for GTK3 plugins
3256 https://bugs.webkit.org/show_bug.cgi?id=130599
3258 Reviewed by Martin Robinson.
3260 * Source/cmake/OptionsGTK.cmake:
3262 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3264 [EFL] Bump glib version from 2.36 to 2.38
3265 https://bugs.webkit.org/show_bug.cgi?id=130886
3267 Reviewed by Csaba Osztrogonác.
3269 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
3271 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
3273 [CSS Shapes] Remove shape-inside support
3274 https://bugs.webkit.org/show_bug.cgi?id=130698
3276 Reviewed by David Hyatt.
3278 * Source/cmake/WebKitFeatures.cmake:
3279 * Source/cmakeconfig.h.cmake:
3281 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3283 [GTK] Remove the autotools build
3284 https://bugs.webkit.org/show_bug.cgi?id=130717
3286 Reviewed by Anders Carlsson.
3288 * .gitignore: Remove references to autotools files.
3289 * GNUmakefile.am: Removed.
3290 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3291 * Source/autotools/CustomMacros.m4: Removed.
3292 * Source/autotools/FindDependencies.m4: Removed.
3293 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3294 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3295 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3296 * Source/autotools/SetupAutomake.m4: Removed.
3297 * Source/autotools/SetupCompilerFlags.m4: Removed.
3298 * Source/autotools/SetupLibtool.m4: Removed.
3299 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3300 * Source/autotools/Versions.m4: Removed.
3301 * Source/autotools/acinclude.m4: Removed.
3302 * Source/autotools/dolt.m4: Removed.
3303 * Source/autotools/gsettings.m4: Removed.
3304 * Source/cmake/OptionsGTK.cmake:
3305 * autogen.sh: Removed.
3306 * configure.ac: Removed.
3308 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3310 [EFL] Add ARM64 build support
3311 https://bugs.webkit.org/show_bug.cgi?id=130506
3313 Rubber stamped by Gyuyoung Kim.
3315 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3317 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3319 [EFL][WK2] Add NETWORK_PROCESS build option
3320 https://bugs.webkit.org/show_bug.cgi?id=130131
3322 Reviewed by Gyuyoung Kim.
3324 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3327 * Source/cmake/OptionsEfl.cmake:
3329 2014-03-24 Brian Burg <bburg@apple.com>
3331 Web Replay: capture and replay keyboard events
3332 https://bugs.webkit.org/show_bug.cgi?id=130314
3334 Reviewed by Joseph Pecoraro.
3336 * ManualTests/inspector/replay-keyboard-events.html: Added.
3338 2014-03-24 Sangyong Park <sy302.park@gmail.com>
3340 [EFL] Inspector page is not loaded.
3341 https://bugs.webkit.org/show_bug.cgi?id=130661
3343 Reviewed by Gyuyoung Kim.
3345 Inspector page is not loaded, because some javascript files are not installed.
3346 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
3348 * Source/PlatformEfl.cmake:
3350 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3352 [EFL][GTK] Get CMake to find Freetype2 properly
3353 https://bugs.webkit.org/show_bug.cgi?id=130150
3355 Reviewed by Martin Robinson.
3357 Newer versions of CMake are not able to find Freetype2 correctly.
3358 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3359 freetype2 repo, because a completely different version number is found in freetype2.pc.
3361 * Source/cmake/FindFreetype2.cmake: Added.
3362 * Source/cmake/OptionsEfl.cmake:
3363 * Source/cmake/OptionsGTK.cmake:
3365 2014-03-20 Brian Burg <bburg@apple.com>
3367 Web Replay: capture and replay mouse events
3368 https://bugs.webkit.org/show_bug.cgi?id=129395
3370 Reviewed by Joseph Pecoraro.
3372 Create a manual test for capture/replay of mouse events.
3373 Copy over the crypto-md5.js library from SunSpider.
3375 * ManualTests/inspector/replay-mouse-events.html: Added.
3376 * ManualTests/inspector/resources/crypto-md5.js: Added.
3378 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
3380 [GTK][CMake] Add support for building with Clang
3381 https://bugs.webkit.org/show_bug.cgi?id=130260
3383 Reviewed by Martin Robinson.
3385 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
3386 to the list C compiler flags as constructed by CMake.
3387 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
3388 compiler option to suppress verbose warnings about arguments that went unused by the driver.
3389 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
3390 -fno-tree-dce should be used only for GCC.
3391 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
3392 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
3394 2014-03-20 Commit Queue <commit-queue@webkit.org>
3396 Unreviewed, rolling out r165962.
3397 https://bugs.webkit.org/show_bug.cgi?id=130512
3399 It broke the build (Requested by Ossy on #webkit).
3403 "[EFL][GTK] Get CMake to find Freetype2 properly"
3404 https://bugs.webkit.org/show_bug.cgi?id=130150
3405 http://trac.webkit.org/changeset/165962
3407 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
3409 [EFL][GTK] Get CMake to find Freetype2 properly
3410 https://bugs.webkit.org/show_bug.cgi?id=130150
3412 Reviewed by Csaba Osztrogonác.
3414 Newer versions of CMake are not able to find Freetype2 correctly.
3415 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
3416 freetype2 repo, because a completely different version number is found in freetype2.pc.
3418 * Source/cmake/FindFreetype2.cmake: Added.
3419 * Source/cmake/OptionsEfl.cmake:
3420 * Source/cmake/OptionsGTK.cmake:
3422 2014-03-17 Brendan Long <b.long@cablelabs.com>
3424 [GStreamer] human readable language code for tracks
3425 https://bugs.webkit.org/show_bug.cgi?id=124514
3427 Reviewed by Martin Robinson.
3429 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
3430 * Source/cmake/FindGStreamer.cmake: Same.
3431 * Source/cmake/OptionsEfl.cmake: Same.
3432 * Source/cmake/OptionsGTK.cmake: Same.
3434 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3436 [GTK][CMake] Credential storage is not enabled
3437 https://bugs.webkit.org/show_bug.cgi?id=130149
3439 Reviewed by Philippe Normand.
3441 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
3442 and look libsecret when it's enabled.
3443 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
3445 2014-03-17 Martin Robinson <mrobinson@igalia.com>
3447 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
3448 https://bugs.webkit.org/show_bug.cgi?id=130155
3450 Reviewed by Philippe Normand.
3452 * Source/cmake/FindGTKUnixPrint.cmake: Added.
3453 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
3454 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
3456 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
3458 [EFL] Enable TOUCH_SLIDER macro.
3459 https://bugs.webkit.org/show_bug.cgi?id=130186
3461 Reviewed by Gyuyoung Kim.
3463 * Source/cmake/OptionsEfl.cmake:
3465 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
3467 [GTK][CMake] Build with -fno-rtti
3468 https://bugs.webkit.org/show_bug.cgi?id=130261
3470 Reviewed by Martin Robinson.
3472 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
3473 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
3474 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
3475 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
3476 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
3477 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
3478 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
3480 2014-03-16 Brendan Long <b.long@cablelabs.com>
3482 [GStreamer] CMake doesn't find the include path for gstreamer-base
3483 https://bugs.webkit.org/show_bug.cgi?id=130098
3485 Reviewed by Philippe Normand.
3487 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
3489 2014-03-14 Maciej Stachowiak <mjs@apple.com>
3491 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
3492 https://bugs.webkit.org/show_bug.cgi?id=130276
3493 <rdar://problem/16266927>
3495 Reviewed by Simon Fraser.
3497 * ManualTests/NPN_Invoke/Info.plist:
3498 * ManualTests/NPN_Invoke/main.c:
3499 * ManualTests/accessibility/resources/AppletTest.java:
3501 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
3503 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
3504 https://bugs.webkit.org/show_bug.cgi?id=130258
3506 Reviewed by Martin Robinson.
3508 GCC compilers 4.7 and later are supported, so there's no need for disabling
3509 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
3511 * Source/cmake/WebKitHelpers.cmake:
3513 2014-03-14 Landry Breuil <landry@openbsd.org>
3515 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
3516 https://bugs.webkit.org/show_bug.cgi?id=129966
3518 Reviewed by Andreas Kling.
3520 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3521 * Source/autotools/SetupAutomake.m4:
3523 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
3525 [CMake] Failure to link with older installations of WebP
3526 https://bugs.webkit.org/show_bug.cgi?id=130195
3528 Reviewed by Gustavo Noronha Silva.
3530 Fix the issue by using a temporary variable as the output parameter
3531 to check_include_files(), setting WEBP_FOUND accordingly later.
3533 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
3534 variable in check_include_files(), as it will lead to misleading
3535 results (will always be FALSE). Use a temporary variable instead
3536 and explicitly set WEBP_FOUND to TRUE later if needed.
3538 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3540 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
3541 https://bugs.webkit.org/show_bug.cgi?id=130170
3543 Reviewed by Daniel Bates.
3545 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
3546 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
3547 fake "TestRunner" generator.
3549 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
3551 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
3552 https://bugs.webkit.org/show_bug.cgi?id=130014
3554 Reviewed by Martin Robinson.
3556 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
3558 * Source/cmake/OptionsGTK.cmake:
3559 * Source/cmakeconfig.h.cmake:
3561 2014-03-12 Martin Robinson <mrobinson@igalia.com>
3563 [GTK][CMAKE] Too verbose build output
3564 https://bugs.webkit.org/show_bug.cgi?id=130076
3566 Reviewed by Carlos Garcia Campos.
3568 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
3569 works around an issue where cmake --build doesn't support ninja's pretty printing.
3571 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
3573 [GTK] Add support for Geoclue2
3574 https://bugs.webkit.org/show_bug.cgi?id=120185
3576 Reviewed by Carlos Garcia Campos.
3578 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
3580 Add support for Geoclue2 using autotools.
3582 * Source/autotools/FindDependencies.m4: Add support for handling
3583 both Geoclue 1.0 and 2.0.
3584 * Source/autotools/PrintBuildConfiguration.m4: Print the version
3585 of geoclue that is being used.
3586 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
3587 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
3588 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
3590 Add support for Geoclue2 using CMake.
3592 * Source/cmake/FindGeoClue2.cmake: Added.
3593 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
3594 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
3596 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3598 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
3599 https://bugs.webkit.org/show_bug.cgi?id=130016
3601 Reviewed by Carlos Garcia Campos.
3603 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
3604 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
3605 HTML version will still run when building the distribution tarball.
3607 2014-03-10 Martin Robinson <mrobinson@igalia.com>
3609 [GTK] [CMake] Clean up library linking
3610 https://bugs.webkit.org/show_bug.cgi?id=129782
3612 Reviewed by Philippe Normand.
3614 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
3615 so that unused symbols are not dropped. This is useful when building up shared libraries
3616 from convenience libraries.
3618 2014-03-08 Landry Breuil <landry@openbsd.org>
3620 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
3621 https://bugs.webkit.org/show_bug.cgi?id=129973
3623 Reviewed by Martin Robinson.
3625 * Source/autotools/FindDependencies.m4:
3627 2014-03-06 Anders Carlsson <andersca@apple.com>
3629 Build WebKit2 before building WebKit
3630 https://bugs.webkit.org/show_bug.cgi?id=129831
3631 <rdar://problem/15920020>
3633 Reviewed by Dan Bernstein.
3636 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3637 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3639 2014-03-06 Commit Queue <commit-queue@webkit.org>
3641 Unreviewed, rolling out r165193.
3642 http://trac.webkit.org/changeset/165193
3643 https://bugs.webkit.org/show_bug.cgi?id=129823
3645 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
3646 env confuses libtool (Requested by zdobersek on #webkit).
3648 * Source/autotools/SetupCompilerFlags.m4:
3650 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
3652 [GTK][Autotools] Default to libc++ when compiling with Clang
3653 https://bugs.webkit.org/show_bug.cgi?id=129798
3655 Reviewed by Anders Carlsson.
3657 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
3658 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
3659 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
3661 2014-03-05 Martin Robinson <mrobinson@igalia.com>
3663 [CMake] Ninja generator builds fail with "Argument list too long"
3664 https://bugs.webkit.org/show_bug.cgi?id=129771
3666 Reviewed by Daniel Bates.
3668 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
3669 by forcing the use of response files.
3671 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
3673 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
3674 https://bugs.webkit.org/show_bug.cgi?id=108330
3676 Reviewed by Martin Robinson.
3678 In order to get non-shared debug builds, this patch applied T option for
3679 thin archives to the flags passed to ar when cmake based ports build on linux.
3680 In addition, applied u option which avoids adding a file twice.
3682 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
3683 * Source/cmake/OptionsEfl.cmake:
3684 Removed error messages for non-shared-core debug builds.
3685 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
3687 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
3689 [GTK] Build the Udis86 disassembler
3690 https://bugs.webkit.org/show_bug.cgi?id=129679
3692 Reviewed by Michael Saboff.
3694 * GNUmakefile.am: Add the Udis86_nosources variable.
3695 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
3697 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3699 [GTK] Simplify the GObject DOM bindings API break check into one step
3700 https://bugs.webkit.org/show_bug.cgi?id=129571
3702 Reviewed by Carlos Garcia Campos.
3704 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
3705 Add the check to 'make check.'
3707 2014-03-04 Martin Robinson <mrobinson@igalia.com>
3709 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
3710 https://bugs.webkit.org/show_bug.cgi?id=129502
3712 Reviewed by Carlos Garcia Campos.
3714 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
3716 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
3718 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
3719 https://bugs.webkit.org/show_bug.cgi?id=129031
3721 Reviewed by Csaba Osztrogonác.
3723 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
3725 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
3727 [GTK] WebKit2WebExtension GIR can't be used in vala
3728 https://bugs.webkit.org/show_bug.cgi?id=127179
3730 Reviewed by Martin Robinson.
3732 Add a different pkg-config file for the web extensions API.
3734 * Source/cmake/OptionsGTK.cmake:
3737 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
3739 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
3740 https://bugs.webkit.org/show_bug.cgi?id=129575
3742 Reviewed by Philippe Normand.
3744 * Source/cmake/OptionsEfl.cmake:
3745 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3746 * Source/cmake/OptionsGTK.cmake:
3747 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3748 * Source/cmake/WebKitFeatures.cmake:
3749 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
3750 * Source/cmakeconfig.h.cmake:
3751 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
3753 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3755 Enable support of X-Content-Type-Options: nosniff header for EFL
3756 https://bugs.webkit.org/show_bug.cgi?id=128673
3758 Reviewed by Gyuyoung Kim.
3760 * Source/cmake/OptionsEfl.cmake:
3761 Enabled NOSNIFF feature flag for EFL.
3763 2014-02-27 Koop Mast <kwm@FreeBSD.org>
3765 Fallback on checking for libz manualy if zlib.pc isn't available.
3766 https://bugs.webkit.org/show_bug.cgi?id=127061
3768 Reviewed by Gustavo Noronha Silva.
3770 * Source/autotools/FindDependencies.m4:
3772 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
3774 [CSS Grid Layout] Add ENABLE flag
3775 https://bugs.webkit.org/show_bug.cgi?id=129153
3777 Reviewed by Simon Fraser.
3779 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
3780 autotools build systems. The feature is disabled by default for
3783 * Source/autotools/SetupWebKitFeatures.m4:
3784 * Source/cmake/OptionsEfl.cmake:
3785 * Source/cmake/OptionsGTK.cmake:
3786 * Source/cmake/WebKitFeatures.cmake:
3787 * Source/cmakeconfig.h.cmake:
3789 2014-02-24 Martin Robinson <mrobinson@igalia.com>
3791 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
3792 https://bugs.webkit.org/show_bug.cgi?id=128417
3794 Reviewed by Carlos Garcia Campos.
3796 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
3797 may one day be used in the webkitdom config file generation.
3799 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3801 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
3802 https://bugs.webkit.org/show_bug.cgi?id=128961
3804 Reviewed by Ryosuke Niwa.
3806 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
3807 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
3808 EFL port needs not to check "uninitialized" build warning as error in order to
3809 adjust the option to EFL port. This patch don't take it as error temporarily.
3811 * Source/cmake/OptionsEfl.cmake:
3812 * Source/cmake/WebKitHelpers.cmake:
3814 2014-02-16 Martin Robinson <mrobinson@igalia.com>
3816 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3817 https://bugs.webkit.org/show_bug.cgi?id=128434
3819 Reviewed by Anders Carlsson.
3821 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
3822 port as well as -fno-tree-dce, like it is used in the autotools build.
3824 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
3826 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
3827 https://bugs.webkit.org/show_bug.cgi?id=128799
3829 Reviewed by Philippe Normand.
3831 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
3832 if building with autotools. cmake system has enabled it as default. So I propose
3833 enabling VIDEO_TRACK as well.
3835 * Source/autotools/SetupWebKitFeatures.m4:
3837 2014-02-14 Commit Queue <commit-queue@webkit.org>
3839 Unreviewed, rolling out r164090.
3840 http://trac.webkit.org/changeset/164090
3841 https://bugs.webkit.org/show_bug.cgi?id=128807
3843 It broke the EFL build (Requested by Ossy on #webkit).
3845 * Source/cmake/OptionsCommon.cmake:
3846 * Source/cmake/OptionsEfl.cmake:
3848 2014-02-09 Martin Robinson <mrobinson@igalia.com>
3850 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
3851 https://bugs.webkit.org/show_bug.cgi?id=128434