1 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
3 [cmake] Suppress parentheses-equality warnings
4 https://bugs.webkit.org/show_bug.cgi?id=145126
6 Reviewed by Darin Adler.
8 * Source/cmake/WebKitHelpers.cmake:
10 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
12 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
13 https://bugs.webkit.org/show_bug.cgi?id=145408
15 Reviewed by Carlos Garcia Campos.
17 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
18 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
19 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
21 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
22 libraries. Detect also GLX libraries.
23 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
24 libraries. Use find_path() to get the include path.
25 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
27 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
28 depending on the libraries found on the system.
29 Move the detection of GLX (and the include of CMakePushCheckState)
31 Ensure that we only define USE_GLX when we build with OpenGL
32 (but not with GLESv2).
34 2015-05-27 Dean Jackson <dino@apple.com>
36 img.currentSrc problem in strict mode with old picturefill
37 https://bugs.webkit.org/show_bug.cgi?id=144095
38 <rdar://problem/21087013>
40 Reviewed by Simon Fraser.
42 Add a PICTURE_SIZES flag.
44 * Source/cmake/OptionsEfl.cmake:
45 * Source/cmake/OptionsGTK.cmake:
46 * Source/cmake/OptionsMac.cmake:
47 * Source/cmake/OptionsWindows.cmake:
48 * Source/cmake/WebKitFeatures.cmake:
50 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
52 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
54 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
56 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
58 Unreviewed. Export DatabaseProcessMainUnix symbol.
60 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
61 is exported in production builds.
63 * Source/cmake/gtksymbols.filter:
65 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
67 [GTK] Enable IndexedDB
68 https://bugs.webkit.org/show_bug.cgi?id=98932
70 Reviewed by Žan Doberšek.
72 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
73 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
75 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
77 [GTK] Bump GCC requirements to 4.9.0
78 https://bugs.webkit.org/show_bug.cgi?id=145211
80 Reviewed by Žan Doberšek.
82 It's required to build with IndexedDB support when using GCC,
83 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
85 * Source/cmake/OptionsGTK.cmake:
87 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
89 [CMake] Ignore warnings in system headers
90 https://bugs.webkit.org/show_bug.cgi?id=144747
92 Reviewed by Darin Adler.
94 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
95 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
96 use the SYSTEM argument to the command (added in 2.8.12).
100 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
102 [CMake] Error out when ruby is too old
103 https://bugs.webkit.org/show_bug.cgi?id=145014
105 Reviewed by Martin Robinson.
107 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
112 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
114 [GTK] Enable plugin-related CMake options and variables for the X11 target only
115 https://bugs.webkit.org/show_bug.cgi?id=144995
117 Reviewed by Carlos Garcia Campos.
119 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
120 the X11 windowing target at the moment, so the following options
121 and variables should be enabled or disabled accordingly:
122 - ENABLE_PLUGIN_PROCESS_GTK2
123 - ENABLE_NETSCAPE_PLUGIN_API
124 - ENABLE_PLUGIN_PROCESS
126 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
128 Linker fails without -DDEVELOPER_MODE=ON
129 https://bugs.webkit.org/show_bug.cgi?id=144117
131 Reviewed by Gyuyoung Kim.
133 * Source/cmake/OptionsEfl.cmake:
134 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
135 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
137 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
139 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
140 https://bugs.webkit.org/show_bug.cgi?id=144846
142 Reviewed by Martin Robinson.
144 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
145 CAIRO_GL_* throughout, because find_package will define
147 * Source/cmake/OptionsGTK.cmake: Ditto.
149 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
151 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
152 https://bugs.webkit.org/show_bug.cgi?id=144845
154 Reviewed by Martin Robinson.
156 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
157 if their corresponding WTF options are ON. The code in npapi.h
158 relies on these being undefined if they are to be switched off.
160 2015-05-09 Yoav Weiss <yoav@yoav.ws>
162 Remove the PICTURE_SIZES build flag
163 https://bugs.webkit.org/show_bug.cgi?id=144679
165 Reviewed by Benjamin Poulain.
167 Removed the PICTURE_SIZES build time flag.
169 * Source/cmake/OptionsEfl.cmake:
170 * Source/cmake/OptionsGTK.cmake:
171 * Source/cmake/OptionsMac.cmake:
172 * Source/cmake/OptionsWindows.cmake:
173 * Source/cmake/WebKitFeatures.cmake:
175 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
177 [GTK] [CMake] Check for required X libraries
178 https://bugs.webkit.org/show_bug.cgi?id=144823
180 Reviewed by Martin Robinson.
182 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
184 * Source/cmake/OptionsGTK.cmake:
186 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
188 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
189 https://bugs.webkit.org/show_bug.cgi?id=144746
191 Reviewed by Carlos Garcia Campos.
193 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
194 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
195 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
197 * Source/cmake/OptionsGTK.cmake:
199 2015-05-08 Daniel Bates <dabates@apple.com>
201 [iOS] WebSQL operations are not performed after device is locked
202 https://bugs.webkit.org/show_bug.cgi?id=137503
203 <rdar://problem/20844952>
205 Rubber-stamped by Alexey Proskuryakov.
207 Add a manual test to help verify that we do not regress this issue.
209 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
211 2015-05-08 Commit Queue <commit-queue@webkit.org>
213 Unreviewed, rolling out r183945.
214 https://bugs.webkit.org/show_bug.cgi?id=144789
216 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
220 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
221 https://bugs.webkit.org/show_bug.cgi?id=144746
222 http://trac.webkit.org/changeset/183945
224 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
226 Cleanup after r183940
227 https://bugs.webkit.org/show_bug.cgi?id=144768
231 Looks like the empty directories were not deleted.
233 * Source/PAL: Removed.
234 * Source/PAL/Configurations: Removed.
235 * Source/PAL/PAL.xcodeproj: Removed.
236 * Source/PAL/graphics: Removed.
238 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
240 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
241 https://bugs.webkit.org/show_bug.cgi?id=144746
243 Reviewed by Martin Robinson.
245 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
246 what it is defined to, so defining it to 0 effectively turned it on always.
248 * Source/cmake/OptionsGTK.cmake:
250 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
252 Revert "Introducing the Platform Abstraction Layer (PAL)"
253 https://bugs.webkit.org/show_bug.cgi?id=144751
257 PAL should be a new target inside WebCore, rather than a top-level folder.
259 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
261 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
263 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
265 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
267 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
269 Introducing the Platform Abstraction Layer (PAL)
270 https://bugs.webkit.org/show_bug.cgi?id=143358
272 Reviewed by Simon Fraser.
274 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
276 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
278 [cmake] Disable GNU Gold linker on Cortex A53
279 https://bugs.webkit.org/show_bug.cgi?id=144382
281 Reviewed by Carlos Garcia Campos.
283 * Source/cmake/OptionsCommon.cmake:
285 2015-05-01 Martin Robinson <mrobinson@igalia.com>
287 USE(...) macro should expect unprefixed variables
288 https://bugs.webkit.org/show_bug.cgi?id=144454
290 Reviewed by Daniel Bates.
292 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
293 * Source/cmake/OptionsEfl.cmake: Ditto.
294 * Source/cmake/OptionsGTK.cmake: Ditto.
295 * Source/cmake/OptionsMac.cmake: Ditto.
296 * Source/cmake/OptionsWinCairo.cmake: Ditto.
297 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
300 2015-04-30 Martin Robinson <mrobinson@igalia.com>
302 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
303 https://bugs.webkit.org/show_bug.cgi?id=144394
305 Reviewed by Carlos Garcia Campos.
307 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
308 is that it fixes the redirected XComposite window for GTK+, which was accidentally
309 disabled in previous reworking of the CMake configuration.
311 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
312 version of USE variables.
313 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
314 is exposed to the build.
316 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
318 Unreviewed. Bump GTK+ version numbers.
320 * Source/cmake/OptionsGTK.cmake:
322 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
324 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
325 https://bugs.webkit.org/show_bug.cgi?id=144435
327 Reviewed by Gyuyoung Kim.
329 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
330 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
332 * Source/cmake/OptionsEfl.cmake:
334 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
336 REGRESSION(183583): [Mac] make without SDKROOT has issues
337 https://bugs.webkit.org/show_bug.cgi?id=144431
339 Reviewed by Dan Bernstein.
342 Assume an empty SDKROOT means an macosx variant, so only
343 enable settings if the SDKROOT is not empty and does not
346 2015-04-29 Martin Robinson <mrobinson@igalia.com>
348 Fix the GTK+ build after r183584
350 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
352 2015-04-29 Martin Robinson <mrobinson@igalia.com>
354 [GTK] Add support for automatic hyphenation
355 https://bugs.webkit.org/show_bug.cgi?id=44478
357 Reviewed by Carlos Garcia Campos.
359 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
360 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
361 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
363 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
365 Failure when building WebKit for appletvsimulator.
366 https://bugs.webkit.org/show_bug.cgi?id=144356
368 Reviewed by Alexey Proskuryakov.
370 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
371 make TVOS and WatchOS behave correctly.
375 2015-04-29 Martin Robinson <mrobinson@igalia.com>
377 [CMake] [GTK] Organize and clean up unused CMake variables
378 https://bugs.webkit.org/show_bug.cgi?id=144364
380 Reviewed by Gyuyoung Kim.
382 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
383 specific to certain projects into their PlatformGTK.cmake files.
385 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
387 [EFL] Build failure to find gio-unix
388 https://bugs.webkit.org/show_bug.cgi?id=144083
390 Reviewed by Gyuyoung Kim.
392 Original patch by Doug Newgard <scimma22@outlook.com>
394 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
396 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
398 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
399 https://bugs.webkit.org/show_bug.cgi?id=143001
401 Reviewed by Gyuyoung Kim.
403 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
404 * Source/cmake/OptionsGTK.cmake: Ditto.
406 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
408 Unreviewed, fix typo in previous commit
410 libsecretr -> libsecret in the error message.
412 * Source/cmake/OptionsGTK.cmake:
414 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
416 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
417 https://bugs.webkit.org/show_bug.cgi?id=143546
419 Reviewed by Martin Robinson.
421 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
422 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
423 default. Fail the build with an informative error message if an optional dependency required
424 for an enabled feature is not present. Perform find_package commands only when necessary.
425 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
428 * Source/cmake/OptionsGTK.cmake:
430 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
432 [GTK] Make all options actually options
433 https://bugs.webkit.org/show_bug.cgi?id=144106
435 Reviewed by Martin Robinson.
437 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
438 ENABLE_WAYLAND_TARGET.
440 * Source/cmake/OptionsGTK.cmake:
442 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
444 Unreviewed, fix GTK build after r183452
446 * Source/cmake/OptionsGTK.cmake:
448 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
450 [GTK] Add one single option to control all OpenGL-related options
451 https://bugs.webkit.org/show_bug.cgi?id=144105
453 Reviewed by Martin Robinson.
455 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
456 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
457 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
458 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
459 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
462 * Source/cmake/OptionsGTK.cmake:
464 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
466 [GTK] ENABLE_SMOOTH_SCROLLING should be private
467 https://bugs.webkit.org/show_bug.cgi?id=144306
469 Reviewed by Martin Robinson.
471 Make ENABLE_SMOOTH_SCROLLING private instead of public.
473 * Source/cmake/OptionsGTK.cmake:
475 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
477 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
478 https://bugs.webkit.org/show_bug.cgi?id=144193
480 Reviewed by Darin Adler.
482 * Source/cmake/OptionsEfl.cmake:
483 * Source/cmake/OptionsGTK.cmake:
484 * Source/cmake/OptionsWinCairo.cmake:
485 * Source/cmake/WebKitFeatures.cmake:
487 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
489 [CMake] Should be possible for an option to conflict with other options
490 https://bugs.webkit.org/show_bug.cgi?id=143956
492 Reviewed by Martin Robinson.
494 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
496 * Source/cmake/WebKitFeatures.cmake:
498 2015-04-22 Martin Robinson <mrobinson@igalia.com>
500 [CMake] Autogenerate cmakeconfig.h.cmake
501 https://bugs.webkit.org/show_bug.cgi?id=143997
503 Reviewed by Csaba Osztrogonác.
505 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
506 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
507 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
508 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
509 Do some other miscellaneous related cleanup.
510 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
511 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
512 build exposed variables. Add a macro to generate a configuration from them.
513 * Source/cmakeconfig.h.cmake: Removed.
515 2015-04-24 Philippe Normand <pnormand@igalia.com>
517 [JHBuild] Move to upstream OpenWebRTC
518 https://bugs.webkit.org/show_bug.cgi?id=144145
520 Reviewed by Carlos Garcia Campos.
522 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
525 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
527 [ES6] Implement ES6 template literals
528 https://bugs.webkit.org/show_bug.cgi?id=142691
530 Reviewed by Darin Adler.
532 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
534 * Source/cmake/WebKitFeatures.cmake:
535 * Source/cmakeconfig.h.cmake:
537 2015-04-25 Martin Robinson <mrobinson@igalia.com>
539 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
540 https://bugs.webkit.org/show_bug.cgi?id=144182
542 Reviewed by Simon Fraser.
544 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
545 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
546 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
547 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
548 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
550 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
552 [GTK] Add more public options
553 https://bugs.webkit.org/show_bug.cgi?id=144116
555 Reviewed by Martin Robinson.
557 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
559 * Source/cmake/OptionsGTK.cmake:
561 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
563 [CMake] Some internal variables are not marked as advanced
564 https://bugs.webkit.org/show_bug.cgi?id=143595
566 Reviewed by Martin Robinson.
568 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
569 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
571 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
573 [GTK] Mark as advanced the build options we don't want to expose
574 https://bugs.webkit.org/show_bug.cgi?id=143558
576 Reviewed by Martin Robinson.
578 Mark various options as private instead of public.
580 * Source/cmake/OptionsGTK.cmake:
582 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
584 [CMake] Should be possible for an option to depend on multiple options
585 https://bugs.webkit.org/show_bug.cgi?id=143839
587 Reviewed by Martin Robinson.
589 Use a list instead of a single variable to track the dependencies of each option. Iterate
590 over the list as many times as necessary to ensure all options are properly disabled.
592 * Source/cmake/WebKitFeatures.cmake:
594 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
596 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
597 https://bugs.webkit.org/show_bug.cgi?id=144103
599 Reviewed by Martin Robinson.
601 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
603 * Source/cmake/WebKitFeatures.cmake:
605 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
607 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
608 https://bugs.webkit.org/show_bug.cgi?id=144102
610 Reviewed by Martin Robinson.
612 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
613 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
614 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
616 * Source/cmake/OptionsGTK.cmake:
618 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
620 [CMake] Clean up JSC JIT options
621 https://bugs.webkit.org/show_bug.cgi?id=143998
623 Reviewed by Filip Pizlo.
625 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
626 define for ENABLE_FTL_NATIVE_CALL_INLINING.
627 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
628 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
629 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
630 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
632 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
634 [CMake] Use lowercase for local variables in macros
635 https://bugs.webkit.org/show_bug.cgi?id=144059
637 Reviewed by Martin Robinson.
639 Convert some variable names to lowercase.
641 * Source/cmake/WebKitFeatures.cmake:
643 2015-04-22 Commit Queue <commit-queue@webkit.org>
645 Unreviewed, rolling out r183116.
646 https://bugs.webkit.org/show_bug.cgi?id=144060
648 Inadvertently deleted a file... (Requested by mcatanzaro on
653 "[CMake] Use lowercase for local variables in macros"
654 https://bugs.webkit.org/show_bug.cgi?id=144059
655 http://trac.webkit.org/changeset/183116
657 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
659 [CMake] Use lowercase for local variables in macros
660 https://bugs.webkit.org/show_bug.cgi?id=144059
662 Reviewed by Martin Robinson.
664 Convert some variable names to lowercase.
666 * Source/cmake/WebKitFeatures.cmake:
668 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
670 [CMake] Features list should print dots every other row
671 https://bugs.webkit.org/show_bug.cgi?id=143832
673 Reviewed by Martin Robinson.
675 Discount private options when determining whether to print dots on a given row of the
676 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
677 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
678 wasn't noticed because it only affects the first line, and use of the variable name as a
679 string in a conditional.)
681 * Source/cmake/WebKitFeatures.cmake:
683 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
685 [CMake] Require specifying visibility of WebKit options
686 https://bugs.webkit.org/show_bug.cgi?id=143831
688 Reviewed by Alex Christensen.
690 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
691 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
692 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
693 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
694 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
695 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
696 cross-platform options as PRIVATE.
698 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
700 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
701 https://bugs.webkit.org/show_bug.cgi?id=143935
703 Reviewed by Darin Adler.
705 Some variables aren't defined in these files or unused variables aren't removed. This
706 patch cleans up it as well as fix wrong alphabet order.
708 * Source/cmake/WebKitFeatures.cmake:
709 * Source/cmakeconfig.h.cmake:
711 2015-04-19 Simon Fraser <simon.fraser@apple.com>
713 Restore the WebKit.xcworkspace to the way it was before r182899,
714 which inadvertently added the Source directory and a couple of source
717 * WebKit.xcworkspace/contents.xcworkspacedata:
719 2015-04-16 Basile Clement <basile_clement@apple.com>
721 Extract the allocation profile from JSFunction into a rare object
722 https://bugs.webkit.org/show_bug.cgi?id=143807
724 Reviewed by Filip Pizlo.
726 * WebKit.xcworkspace/contents.xcworkspacedata:
728 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
730 [EFL] Bump LLVM to version 3.6.0 on X86_64
731 https://bugs.webkit.org/show_bug.cgi?id=143604
733 Reviewed by Gyuyoung Kim.
735 * Source/cmake/FindLLVM.cmake: Added version handling.
736 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
738 2015-04-15 Timothy Horton <timothy_horton@apple.com>
740 Custom CSS cursors do not use -webkit-image-set on retina displays
741 https://bugs.webkit.org/show_bug.cgi?id=120783
743 Reviewed by Beth Dakin.
744 Patch by Evan Wallace <evan.exe@gmail.com>.
746 Add a manual test for custom CSS cursors on retina displays.
748 * ManualTests/retina-cursors.html: Added.
750 2015-04-15 Alex Christensen <achristensen@webkit.org>
752 Progress towards CMake on Mac.
753 https://bugs.webkit.org/show_bug.cgi?id=143785
755 Reviewed by Csaba Osztrogonác.
758 * Source/cmake/OptionsMac.cmake:
759 * Source/cmake/WebKitFS.cmake:
761 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
763 Cannot click "Next" button on Google two-factor auth setup page
765 <https://bugs.webkit.org/show_bug.cgi?id=143624>
766 <rdar://problem/19175714>
768 Reviewed by Darin Adler.
770 * ManualTests/button-that-focuses-itself-on-click.html: Added.
772 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
774 [cmake] REGRESSION(182663): It broke feature dependency handling
775 https://bugs.webkit.org/show_bug.cgi?id=143665
777 Reviewed by Csaba Osztrogonác.
779 Don't try to check the value of options before defining the options.
781 * Source/cmake/WebKitFeatures.cmake:
783 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
785 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
786 https://bugs.webkit.org/show_bug.cgi?id=143664
788 Reviewed by Gyuyoung Kim.
790 * Source/cmake/OptionsEfl.cmake:
791 * Source/cmake/OptionsGTK.cmake:
792 * Source/cmake/WebKitFeatures.cmake:
793 * Source/cmakeconfig.h.cmake:
795 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
797 [EFL] Enable Media Source
798 https://bugs.webkit.org/show_bug.cgi?id=143635
800 Reviewed by Csaba Osztrogonác.
802 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
804 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
806 [CMake] Miscellaneous issues in WebKitFeatures.cmake
807 https://bugs.webkit.org/show_bug.cgi?id=143636
809 Reviewed by Martin Robinson.
811 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
812 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
814 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
815 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
817 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
819 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
821 Fix ENABLE_TOUCH_SLIDER so that it can be used
825 * Source/cmake/WebKitFeatures.cmake:
827 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
829 [CMake] Print sorted feature list at the very end of the configure process
830 https://bugs.webkit.org/show_bug.cgi?id=143596
832 Reviewed by Martin Robinson.
834 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
835 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
836 and sort the options before printing. Reorder some code so that features still get
837 propagated to the bindings generators.
839 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
841 [CMake] Options should be marked as advanced by default
842 https://bugs.webkit.org/show_bug.cgi?id=143572
844 Reviewed by Gyuyoung Kim.
846 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
847 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
848 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
849 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
850 option without making it public.
852 * Source/cmake/WebKitFeatures.cmake:
854 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
856 [CMake] Remove unnecessary ENABLE_WEBCORE switch
857 https://bugs.webkit.org/show_bug.cgi?id=143584
859 Reviewed by Csaba Osztrogonác.
861 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
865 * Source/CMakeLists.txt:
866 * Source/cmake/OptionsGTK.cmake:
867 * Source/cmake/WebKitFS.cmake:
869 2015-04-08 Filip Pizlo <fpizlo@apple.com>
871 Unreviewed, revert accidental commit.
875 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
877 Add CMake build system for WinCairo port.
878 https://bugs.webkit.org/show_bug.cgi?id=115944
880 Reviewed by Chris Dumez.
882 * Source/cmake/OptionsWindows.cmake:
883 * Source/cmake/WebKitMacros.cmake:
884 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
886 2015-04-06 Alberto Garcia <berto@igalia.com>
889 https://bugs.webkit.org/show_bug.cgi?id=143453
891 Reviewed by Darin Adler.
893 Add HPPA to the list of supported CPUs.
897 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
899 Unreviewed, kick the GTK bots to fix an incremental build issue.
901 * Source/cmake/OptionsGTK.cmake:
903 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
905 Fix the EFL and GTK build after r182243
906 https://bugs.webkit.org/show_bug.cgi?id=143361
908 Reviewed by Csaba Osztrogonác.
910 * Source/PlatformEfl.cmake: Add a custom command that copies
911 the InspectorBackendCommands.js file into the proper directory
912 under DerivedSources/WebInspectorUI/.
914 2015-04-01 Alex Christensen <achristensen@webkit.org>
916 Progress towards CMake on Windows and Mac.
917 https://bugs.webkit.org/show_bug.cgi?id=143293
919 Reviewed by Filip Pizlo.
922 Set DERIVED_SOURCES_WTF_DIR for Windows.
923 * Source/CMakeLists.txt:
924 Don't compile bmalloc on Windows.
925 * Source/cmake/OptionsCommon.cmake:
926 Use the absolute path of the C preprocessor.
927 * Source/cmake/OptionsWinCairo.cmake:
928 Added needed definitions.
929 * Source/cmake/OptionsWindows.cmake:
930 Set some default values and removed support for old Visual Studio versions before /MP.
931 * Source/cmake/WebKitFS.cmake:
932 Make WTF DerivedSources directory.
933 * Source/cmake/WebKitMacros.cmake:
934 Added ADD_PRECOMPILED_HEADER macro based on
935 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
937 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
939 Use colored diagnostics when building with cmake + ninja + clang
940 https://bugs.webkit.org/show_bug.cgi?id=143297
942 Reviewed by Žan Doberšek.
944 Because that ninja sets subprocess stdout/stderr to a pipe, clang
945 disables colored output.
946 This patch forces clang to use colored diagnostics when we are using
949 * Source/cmake/OptionsCommon.cmake:
951 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
953 [CMake] Update old CMakeList.txt in gtest
954 https://bugs.webkit.org/show_bug.cgi?id=143192
956 Reviewed by Darin Adler.
958 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
959 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
960 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
962 * Source/CMakeLists.txt:
963 * Source/cmake/gtest/CMakeLists.txt: Removed.
965 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
967 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
968 https://bugs.webkit.org/show_bug.cgi?id=143138
970 Reviewed by Csaba Osztrogonác.
972 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
973 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
975 * Source/cmake/OptionsWindows.cmake:
976 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
977 * Source/cmake/WebKitMacros.cmake:
979 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
981 [GStreamer] share GL context in pipeline, part 2
982 https://bugs.webkit.org/show_bug.cgi?id=143049
984 Reviewed by Carlos Garcia Campos.
986 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
987 OpenGL/ES2 is found and GLX/EGL is found too.
989 2015-03-26 Alex Christensen <achristensen@webkit.org>
991 Progress towards CMake on Mac.
992 https://bugs.webkit.org/show_bug.cgi?id=143112
994 Reviewed by Chris Dumez.
996 * Source/cmake/OptionsMac.cmake:
998 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
1000 [EFL] Add OpenWebRTC in jhbuild
1001 https://bugs.webkit.org/show_bug.cgi?id=142778
1003 Reviewed by Gyuyoung Kim.
1005 Original patch by Philippe Normand <pnormand@igalia.com>
1007 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
1008 mediastream build is enabled.
1010 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
1012 [GTK] Add a configure option to build without Redirected XComposite Window
1013 https://bugs.webkit.org/show_bug.cgi?id=142865
1015 Reviewed by Žan Doberšek.
1017 The Redirected XComposite Window was added to support some
1018 features like GtkOverlay, but in cases where we don't need such
1019 features, it's more efficient to use the XID of the WebKitWebView
1020 window as the native surface handle for the accelerated
1021 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
1022 that is enabled by default for X11 target when OpenGL is enabled.
1024 * Source/cmake/OptionsGTK.cmake:
1026 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
1028 [GTK] Search for the Wayland dependency when enabling Wayland target
1029 https://bugs.webkit.org/show_bug.cgi?id=142876
1031 Reviewed by Carlos Garcia Campos.
1033 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
1034 requirement of either the GTK+ or GDK pkg-config files, so we have to
1035 search for it ourselves when WebKitGTK+ has been configured to support
1036 the Wayland windowing target.
1038 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1040 Unreviewed, kick the GTK bots to regenerate makefile.
1041 https://bugs.webkit.org/show_bug.cgi?id=137394
1043 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
1044 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
1046 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
1048 Unreviewed, kick the GTK bots to regenerate makefile.
1049 https://bugs.webkit.org/show_bug.cgi?id=137394
1051 * Source/cmake/OptionsEfl.cmake:
1053 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
1055 [GTK] Fix inspector userinterface related incremental build issue
1056 https://bugs.webkit.org/show_bug.cgi?id=142849
1058 Reviewed by Carlos Garcia Campos.
1060 * Source/cmake/OptionsGTK.cmake: Revert r181733.
1062 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
1064 Unreviewed, kick the GTK bots to regenerate makefile.
1066 * Source/cmake/OptionsGTK.cmake:
1068 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
1070 [EFL] Expose JavaScript binding interface through ewk_extension
1071 https://bugs.webkit.org/show_bug.cgi?id=142033
1073 Reviewed by Gyuyoung Kim.
1075 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
1077 2015-03-17 Philippe Normand <pnormand@igalia.com>
1079 [GTK] basic OpenWebRTC build support
1080 https://bugs.webkit.org/show_bug.cgi?id=142393
1082 Reviewed by Carlos Garcia Campos.
1084 * Source/cmake/FindOpenWebRTC.cmake: Added.
1085 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
1086 mediastream build is enabled.
1088 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1090 [CMake][EFL] Build test tools only for developer mode
1091 https://bugs.webkit.org/show_bug.cgi?id=142761
1093 Reviewed by Csaba Osztrogonác.
1095 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
1097 * Source/cmake/OptionsEfl.cmake:
1098 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
1099 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
1100 * Source/cmakeconfig.h.cmake:
1102 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
1104 Enable ES6 classes by default
1105 https://bugs.webkit.org/show_bug.cgi?id=142774
1107 Reviewed by Gavin Barraclough.
1109 * Source/cmake/WebKitFeatures.cmake:
1111 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1113 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
1114 https://bugs.webkit.org/show_bug.cgi?id=142722
1116 Reviewed by Csaba Osztrogonác.
1118 Categorize to define cmake variables, to find necessary packages,
1119 use upper case for "glib_conponents" cmake variable name, re-arrange
1120 wrong alphabet sorting, and so on.
1122 * CMakeLists.txt: Remove WinCE port.
1123 * Source/cmake/OptionsEfl.cmake:
1125 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
1127 [GStreamer] share GL context in pipeline
1128 https://bugs.webkit.org/show_bug.cgi?id=142693
1130 Reviewed by Philippe Normand.
1132 Add search of gstreamer-gl library in the GStreamer installation. If
1133 it is found, WTF_USE_GSTREAMER_GL macro is defined.
1135 * Source/cmake/FindGStreamer.cmake:
1136 * Source/cmake/OptionsGTK.cmake:
1138 2015-03-13 Alex Christensen <achristensen@webkit.org>
1140 Progress towards CMake on Mac.
1141 https://bugs.webkit.org/show_bug.cgi?id=142680
1143 Reviewed by Gyuyoung Kim.
1146 * Source/PlatformMac.cmake: Added stub.
1147 * Source/cmake/OptionsMac.cmake:
1148 Change defines to get CMake working.
1150 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1152 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
1153 https://bugs.webkit.org/show_bug.cgi?id=126688
1155 Reviewed by Gustavo Noronha Silva.
1157 Add ENABLE_MINIBROWSER option, enabled by default for development
1158 builds and disabled for production builds unless explicilty enabled.
1160 * Source/cmake/OptionsGTK.cmake:
1162 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
1164 [GTK] Do not look for child processes in the UI process binary path
1165 https://bugs.webkit.org/show_bug.cgi?id=135752
1167 Reviewed by Gustavo Noronha Silva.
1169 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
1170 build for development builds.
1172 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
1174 [GTK] Add a configure option to build with OpenGL ES 2
1175 https://bugs.webkit.org/show_bug.cgi?id=142498
1177 Reviewed by Martin Robinson.
1179 Add ENABLE_GLES2 option. It's disabled by default, but if passed
1180 GLES2 is required and OpenGL is not even searched. Otherwise we
1181 search for OpenGL as usual, using it only if present.
1183 * Source/cmake/OptionsGTK.cmake:
1185 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
1187 [cmake] Handle unused parameter warnings as build errors except in WebKit2
1188 https://bugs.webkit.org/show_bug.cgi?id=142338
1190 Reviewed by Gyuyoung Kim.
1192 * Source/cmake/WebKitHelpers.cmake:
1194 2015-03-03 Daniel Bates <dabates@apple.com>
1196 Convert ManualTests/svg-tooltip.svg to a DRT test
1197 https://bugs.webkit.org/show_bug.cgi?id=140480
1199 Reviewed by Alex Christensen.
1201 * ManualTests/svg-tooltip.svg: Removed.
1203 2015-03-02 Debarshi Ray <debarshir@gnome.org>
1205 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
1206 https://bugs.webkit.org/show_bug.cgi?id=142165
1208 Reviewed by Carlos Garcia Campos.
1210 * Source/cmake/gtksymbols.filter:
1212 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
1214 [EFL] Remove unnecessary comment after r179110
1215 https://bugs.webkit.org/show_bug.cgi?id=142042
1217 Reviewed by Gyuyoung Kim.
1219 * Source/cmake/OptionsEfl.cmake:
1221 2015-02-23 Tomas Popela <tpopela@redhat.com>
1223 [GTK] Fails to compile with cmake 3.2.x
1224 https://bugs.webkit.org/show_bug.cgi?id=141796
1226 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
1227 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
1228 added and the build will fail.
1230 Reviewed by Martin Robinson.
1232 * Source/cmake/OptionsGTK.cmake:
1234 2015-02-20 Alexey Proskuryakov <ap@apple.com>
1236 Remove svn:keywords property.
1238 As far as I can tell, the property had no effect on any of these files, but also,
1239 when it has effect it's likely harmful.
1241 * ManualTests/animation-with-transition.html: Removed property svn:keywords.
1242 * ManualTests/blur-filter-timing.html: Removed property svn:keywords.
1243 * ManualTests/compositing/caret-in-compositing-frame.html: Removed property svn:keywords.
1244 * ManualTests/compositing/font-smoothing.html: Removed property svn:keywords.
1245 * ManualTests/compositing/missing-iframe-contents.html: Removed property svn:keywords.
1246 * ManualTests/compositing/requires-backing-change.html: Removed property svn:keywords.
1247 * ManualTests/compositing/resources/composited-subframe.html: Removed property svn:keywords.
1248 * ManualTests/compositing/resources/editable-compositing-subframe.html: Removed property svn:keywords.
1249 * ManualTests/frames/nested-iframe-blit-on-scroll.html: Removed property svn:keywords.
1250 * ManualTests/frames/resources/blit-on-scroll-subframe.html: Removed property svn:keywords.
1251 * ManualTests/frames/resources/blit-on-scroll-subsubframe.html: Removed property svn:keywords.
1252 * ManualTests/plugins/plugin-paint-causes-layout.html: Removed property svn:keywords.
1253 * ManualTests/screen-availLeft.html: Removed property svn:keywords.
1254 * ManualTests/transition-accelerated.html: Removed property svn:keywords.
1256 2015-02-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1258 [CMAKE] Remove CMakeLists.txt in WK1 port
1259 https://bugs.webkit.org/show_bug.cgi?id=141617
1261 Reviewed by Anders Carlsson.
1263 Nobody uses CMake in WK1 port. Remove it.
1267 2015-02-13 Csaba Osztrogonác <ossy@webkit.org>
1269 Unreviewed, remove empty directories.
1271 * ManualTests/qt: Removed.
1273 2015-02-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
1275 [CMake] Don't set flag fuse-ld on the C/C++ compiler flags, but on the linker flags.
1276 https://bugs.webkit.org/show_bug.cgi?id=141481
1278 Reviewed by Csaba Osztrogonác.
1280 * Source/cmake/OptionsCommon.cmake: Move -fuse-ld=gold to the linker flags.
1282 2015-02-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1284 [EFL][GTK] Use bmalloc instead of tcmalloc
1285 https://bugs.webkit.org/show_bug.cgi?id=140162
1287 Reviewed by Carlos Garcia Campos.
1289 Add bmalloc directory to build list.
1291 * CMakeLists.txt: Define BMALLOC_DIR directory.
1292 * Source/CMakeLists.txt: Add bmalloc path to sub-directories list.
1294 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com>
1296 [GTK] Add default color chooser implementation using GtkColorChooserDialog
1297 https://bugs.webkit.org/show_bug.cgi?id=141392
1299 Reviewed by Gustavo Noronha Silva.
1301 Enable INPUT_TYPE_COLOR by default for GTK+ port.
1303 * Source/cmake/OptionsGTK.cmake:
1305 2015-02-09 Sergio Villar Senin <svillar@igalia.com>
1307 ASSERTION FAILED: resolvedInitialPosition <= resolvedFinalPosition in WebCore::GridSpan::GridSpan
1308 https://bugs.webkit.org/show_bug.cgi?id=141328
1310 Reviewed by Darin Adler.
1312 Added as manual test because it involves a huge grid allocation
1313 which is very slow on Debug bots, the only ones capable to trigger
1316 * ManualTests/css-grid-layout-item-with-huge-span-crash.html: Added.
1318 2015-02-05 Youenn Fablet <youenn.fablet@crf.canon.fr> and Xabier Rodriguez Calvar <calvaris@igalia.com>
1320 [Streams API] Implement a barebone ReadableStream interface
1321 https://bugs.webkit.org/show_bug.cgi?id=141045
1323 Reviewed by Benjamin Poulain.
1325 * Source/cmake/WebKitFeatures.cmake:
1326 * Source/cmakeconfig.h.cmake: Made streams API compilation on by default.
1328 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1330 Revert accidental change in r179490.
1334 2015-02-02 Filip Pizlo <fpizlo@apple.com>
1336 Unreviewed, revert accidental change to Makefile.shared in r179478
1340 2015-01-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
1342 [CMake] Minimum python version should be 2.7.
1343 https://bugs.webkit.org/show_bug.cgi?id=140997
1345 Reviewed by Csaba Osztrogonác.
1349 2015-01-26 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1351 Apply feTurbulence spec change to fix zero length vector generation
1352 https://bugs.webkit.org/show_bug.cgi?id=140812
1354 Reviewed by Darin Adler.
1356 Recently a bug with the turbulence algorithm was corrected in the
1357 Filter Effects specification.
1358 For some seed values this bug allowed zero length vectors to be generated.
1359 This resulted in large solid color squares being present in the generated image.
1360 The feTurbulence algorithm was updated to reject zero length vectors. This patch
1361 applies that change in WebCore.
1363 Test: svg/filters/feTurbulence_bad_seeds.html
1365 * platform/graphics/filters/FETurbulence.cpp:
1366 (WebCore::FETurbulence::initPaint):
1367 Added rejection sampling during vector generation to avoid zero length vectors.
1369 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1371 [cmake] Remove compiler version calculate cruft
1372 https://bugs.webkit.org/show_bug.cgi?id=140885
1374 Reviewed by Darin Adler.
1376 * Source/cmake/WebKitHelpers.cmake:
1378 2015-01-26 Csaba Osztrogonác <ossy@webkit.org>
1380 [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
1381 https://bugs.webkit.org/show_bug.cgi?id=140886
1383 Reviewed by Žan Doberšek.
1385 * Source/cmake/WebKitHelpers.cmake:
1387 2015-01-26 Michael Catanzaro <mcatanzaro@igalia.com>
1389 [GTK] gtkdoc does not appear in DevHelp
1390 https://bugs.webkit.org/show_bug.cgi?id=139369
1392 Reviewed by Philippe Normand.
1394 Expect the gtkdoc to be generated in folders named with the API version.
1396 * Source/PlatformGTK.cmake:
1398 2015-01-26 Zan Dobersek <zdobersek@igalia.com>
1400 [EFL][GTK] Stop compiling with fno-omit-frame-pointer, -fno-tree-dce
1401 https://bugs.webkit.org/show_bug.cgi?id=140609
1403 Reviewed by Csaba Osztrogonác.
1405 The latest releases of GCC versions 4.7, 4.8 and 4.9 all compile and
1406 run JSC tests fine without the -fno-tree-dce and -fno-omit-frame-pointer
1407 compilation flags. Those were added after the jsCStack branch merge, but
1408 can now be removed since the -ftree-dce issues were fixed in GCC, and
1409 changes in r173282 and r173298 again enable compiling with -fomit-frame-pointer.
1411 * Source/cmake/OptionsEfl.cmake:
1412 * Source/cmake/OptionsGTK.cmake:
1414 2015-01-26 Commit Queue <commit-queue@webkit.org>
1416 Unreviewed, rolling out r179107.
1417 https://bugs.webkit.org/show_bug.cgi?id=140880
1419 The GCC in the bots doesn't support the AsyncTask
1420 implementation (Requested by KaL on #webkit).
1424 "[GTK] Enable IndexedDB"
1425 https://bugs.webkit.org/show_bug.cgi?id=98932
1426 http://trac.webkit.org/changeset/179107
1428 2015-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
1430 [GTK] Enable IndexedDB
1431 https://bugs.webkit.org/show_bug.cgi?id=98932
1433 Reviewed by Žan Doberšek.
1435 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
1436 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
1438 2015-01-23 Carlos Garcia Campos <cgarcia@igalia.com>
1440 [GTK] Add initial database process support
1441 https://bugs.webkit.org/show_bug.cgi?id=139491
1443 Reviewed by Sergio Villar Senin.
1445 * Source/cmake/OptionsGTK.cmake: Set WebKit2_DatabaseProcess_OUTPUT_NAME.
1447 2015-01-22 Ryosuke Niwa <rniwa@webkit.org>
1449 Add a build flag for ES6 class syntax
1450 https://bugs.webkit.org/show_bug.cgi?id=140760
1452 Reviewed by Michael Saboff.
1454 * Source/cmake/WebKitFeatures.cmake:
1455 * Source/cmakeconfig.h.cmake:
1457 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1459 [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
1460 https://bugs.webkit.org/show_bug.cgi?id=140049
1462 Reviewed by Gyuyoung Kim.
1464 * Source/cmake/OptionsCommon.cmake:
1466 2015-01-21 Csaba Osztrogonác <ossy@webkit.org>
1468 Remove ENABLE(INSPECTOR) ifdef guards
1469 https://bugs.webkit.org/show_bug.cgi?id=140668
1471 Reviewed by Darin Adler.
1473 * Source/PlatformEfl.cmake:
1474 * Source/cmake/OptionsEfl.cmake:
1475 * Source/cmake/OptionsGTK.cmake:
1476 * Source/cmake/OptionsMac.cmake:
1477 * Source/cmake/WebKitFeatures.cmake:
1478 * Source/cmakeconfig.h.cmake:
1480 2015-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
1482 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.4 release.
1484 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1486 2015-01-19 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1488 [CMAKE] Fix cmake warning
1489 https://bugs.webkit.org/show_bug.cgi?id=140497
1491 Reviewed by Gustavo Noronha Silva.
1493 r173155 already tried to fix cmake warning though, the warning is still exist.
1494 CMAKE_LINK_INTERFACE_LIBRARIES seems to cause this warning. Individual target is
1495 already set for their libraries though, INTERFACE_LINK_LIBRARIES contains the list
1496 of transitive link dependencies, and CMAKE_LINK_INTERFACE_LIBRARIES can override
1497 the INTERFACE_LINK_LIBRARIES property when CMP0022 is not set. CMake warns this override.
1498 To avoid it, EFL port doesn't set CMAKE_LINK_INTERFACE_LIBRARIES.
1502 2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
1504 [GTK] Generate the make dist manifest from a CMake template file
1505 https://bugs.webkit.org/show_bug.cgi?id=139387
1507 Reviewed by Martin Robinson.
1509 Generate manifest.txt from manifest.txt.in. Only expose the dist and
1510 distcheck targets for developer builds, as they won't work when
1511 building from a tarball because the manifest is not distributed.
1513 * Source/PlatformGTK.cmake:
1515 2015-01-15 Csaba Osztrogonác <ossy@webkit.org>
1517 Remove ENABLE(SQL_DATABASE) guards
1518 https://bugs.webkit.org/show_bug.cgi?id=140434
1520 Reviewed by Darin Adler.
1522 * Source/cmake/OptionsMac.cmake:
1523 * Source/cmake/WebKitFeatures.cmake:
1524 * Source/cmakeconfig.h.cmake:
1526 2015-01-11 Sam Weinig <sam@webkit.org>
1528 Remove support for SharedWorkers
1529 https://bugs.webkit.org/show_bug.cgi?id=140344
1531 Reviewed by Anders Carlsson.
1533 * Source/cmake/OptionsEfl.cmake:
1534 * Source/cmake/OptionsGTK.cmake:
1535 * Source/cmake/OptionsMac.cmake:
1536 * Source/cmake/WebKitFeatures.cmake:
1537 * Source/cmakeconfig.h.cmake:
1539 2015-01-10 Dan Bernstein <mitz@apple.com>
1541 [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
1542 https://bugs.webkit.org/show_bug.cgi?id=140339
1544 Reviewed by Mark Rowe.
1546 * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
1547 prevents unnecessary rebuilding due to PATH differences.
1549 2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
1551 [GTK][ThreadedCompositor] Add support for threaded compositor.
1552 https://bugs.webkit.org/show_bug.cgi?id=118265
1554 Reviewed by Martin Robinson.
1556 Added the ENABLE_THREADED_COMPOSITOR feature flag to the cmake and
1557 autotools build systems. The feature is disabled by default.
1558 And remove deprecated the WTF_USE_TILED_BACKING_STORE feature flag
1559 from the feature flags.
1561 * Source/cmake/OptionsEfl.cmake:
1562 * Source/cmake/OptionsGTK.cmake:
1563 * Source/cmake/WebKitFeatures.cmake:
1564 * Source/cmakeconfig.h.cmake:
1566 2014-12-23 Alexey Proskuryakov <ap@apple.com>
1568 Simplify building with ASan
1569 https://bugs.webkit.org/show_bug.cgi?id=139916
1571 Reviewed by Mark Rowe.
1573 * Makefile.shared: Invoke set-webkit-configuration to store ASan choice as appropriate.
1575 2014-12-16 Carlos Garcia Campos <cgarcia@igalia.com>
1577 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.3 release.
1579 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1581 2014-12-10 Jon Honeycutt <jhoneycutt@apple.com>
1583 Null dereference performing a "TapAndAHalf" gesture in Google search field
1585 <https://bugs.webkit.org/show_bug.cgi?id=139506>
1586 <rdar://problem/19028828>
1588 Reviewed by Darin Adler.
1590 * ManualTests/ios/tap-and-a-half-gesture-in-empty-text-field.html: Added.
1592 2014-12-10 Dean Jackson <dino@apple.com>
1594 Blur filter performance test doesn't provide results
1595 https://bugs.webkit.org/show_bug.cgi?id=139462
1597 Reviewed by Sam Weinig.
1599 This can't currently work under our performance test
1600 infrastructure. Move it to a manual test to avoid
1601 putting FAILures into the results.
1603 * ManualTests/blur-filter-timing.html: Renamed from PerformanceTests/Interactive/blur-filter-timing.html.
1605 2014-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1607 [GTK][WK2] Add HTML5 Notifications support
1608 https://bugs.webkit.org/show_bug.cgi?id=61140
1610 Reviewed by Carlos Garcia Campos.
1612 * Source/cmake/FindLibNotify.cmake: Added.
1613 * Source/cmake/OptionsGTK.cmake: add option to enable notifications, look for
1614 libnotify and use it for a default implementation when found.
1616 2014-12-09 Bem Jones-Bey <bjonesbe@adobe.com>
1618 REGRESSION(r155906): Page content disappears on Tuaw article after loading
1619 https://bugs.webkit.org/show_bug.cgi?id=138100
1621 Reviewed by Simon Fraser.
1623 DRT causes an extra paint which makes it impossible to test this with
1626 * ManualTests/float-layer-not-painting.html: Added.
1628 2014-12-07 Alberto Garcia <berto@igalia.com>
1630 [GTK] WebKit has a new required dependency on GnuTLS
1631 https://bugs.webkit.org/show_bug.cgi?id=136158
1633 Reviewed by Martin Robinson.
1635 Detect if GnuTLS is installed and enable or disable subtle crypto
1636 support accordingly.
1638 * Source/cmake/OptionsGTK.cmake:
1640 2014-12-07 Carlos Garcia Campos <cgarcia@igalia.com>
1642 [GTK] Missing API detected in GObject DOM bindings after r176630
1643 https://bugs.webkit.org/show_bug.cgi?id=139201
1645 Reviewed by Gustavo Noronha Silva.
1647 Change GENERATE_BINDINGS macro to receive a list of optional
1648 additional dependencies, so that we can add more dependecies
1649 without having to change the macro.
1651 * Source/cmake/WebKitMacros.cmake:
1653 2014-12-05 Simon Fraser <simon.fraser@apple.com>
1655 Programmatic scrolling and content changes are not always synchronized
1656 https://bugs.webkit.org/show_bug.cgi?id=139245
1657 rdar://problem/18833612
1659 Reviewed by Anders Carlsson.
1661 Manual test that tries to sync layout with programmatic scrolling.
1663 * ManualTests/programmatic-scroll-flicker.html: Added.
1665 2014-12-04 Alberto Garcia <berto@igalia.com>
1667 can not find cairo-gl.h when build webkit with gtk on ubuntu 14.04
1668 https://bugs.webkit.org/show_bug.cgi?id=136576
1670 Reviewed by Carlos Garcia Campos.
1672 CMake should complain if Accelerated 2D Canvas is explicitly
1673 enabled but cairo-gl is not found.
1675 * Source/cmake/OptionsGTK.cmake:
1677 2014-12-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1679 [EFL] Add subtle crypto to the build system
1680 https://bugs.webkit.org/show_bug.cgi?id=138612
1682 Reviewed by Csaba Osztrogonác.
1684 * Source/cmake/OptionsEfl.cmake:
1686 2014-12-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1688 [EFL] Add a ENABLE_CSS_SCROLL_SNAP macro to CMake build system
1689 https://bugs.webkit.org/show_bug.cgi?id=139085
1691 Reviewed by Andreas Kling.
1693 * Source/cmake/OptionsEfl.cmake: Add ENABLE_CSS_SCROLL_SNAP.
1694 * Source/cmake/WebKitFeatures.cmake: ditto.
1695 * Source/cmakeconfig.h.cmake: ditto.
1697 2014-11-30 Ryuan Choi <ryuan.choi@navercorp.com>
1699 [EFL] Drop support for the EFL 1.7
1700 https://bugs.webkit.org/show_bug.cgi?id=139114
1702 Reviewed by Gyuyoung Kim.
1704 * Source/cmake/EFLHelpers.cmake: Removed.
1705 * Source/cmake/FindEcore.cmake: Removed.
1706 * Source/cmake/FindEdje.cmake: Removed.
1707 * Source/cmake/FindEet.cmake: Removed.
1708 * Source/cmake/FindEeze.cmake: Removed.
1709 * Source/cmake/FindEfreet.cmake: Removed.
1710 * Source/cmake/FindEina.cmake: Removed.
1711 * Source/cmake/FindElementary.cmake: Removed.
1712 * Source/cmake/FindEvas.cmake: Removed.
1713 * Source/cmake/OptionsEfl.cmake:
1715 2014-11-28 Philippe Normand <pnormand@igalia.com>
1717 [CMake] Build failure against GStreamer git master
1718 https://bugs.webkit.org/show_bug.cgi?id=138872
1720 Reviewed by Csaba Osztrogon.
1722 * Source/cmake/FindGStreamer.cmake: Simplified the
1723 FIND_GSTREAMER_COMPONENT macro. Trust pkg-config for include
1724 headers lookup, there's no need to do this manually. Also
1725 explicitely check the version specified in GStreamer_FIND_VERSION.
1727 2014-11-27 Ryuan Choi <ryuan.choi@navercorp.com>
1729 [EFL] Remove E_Dbus dependency
1730 https://bugs.webkit.org/show_bug.cgi?id=136355
1732 Reviewed by Gyuyoung Kim.
1734 * Source/cmake/FindE_DBus.cmake: Removed.
1735 * Source/cmake/OptionsEfl.cmake:
1737 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com>
1739 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1741 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1743 2014-11-20 Csaba Osztrogonác <ossy@webkit.org>
1745 [CMake] Use ld.gold if it is available to speedup builds
1746 https://bugs.webkit.org/show_bug.cgi?id=137953
1748 Reviewed by Carlos Garcia Campos.
1750 * Source/cmake/OptionsCommon.cmake:
1752 2014-11-19 Akos Kiss <akiss@inf.u-szeged.hu>
1754 Fix the detection of toolchain support for Cortex-A53 erratum 835769 workaround
1755 https://bugs.webkit.org/show_bug.cgi?id=138840
1757 Reviewed by Csaba Osztrogonác.
1759 * Source/cmake/OptionsCommon.cmake:
1761 2014-11-13 Csaba Osztrogonác <ossy@webkit.org>
1763 Remove Source/Platform cruft
1764 https://bugs.webkit.org/show_bug.cgi?id=138658
1766 Reviewed by Anders Carlsson.
1769 * Source/Platform: Removed.
1771 2014-11-10 Akos Kiss <akiss@inf.u-szeged.hu>
1773 Enable Cortex-A53-specific code paths by default if core is detected.
1774 https://bugs.webkit.org/show_bug.cgi?id=138499
1776 Reviewed by Csaba Osztrogonác.
1778 On ARM64/Linux, check /proc/cpuinfo for CPU part 0xd03 (signaling
1779 Cortex-A53) and set the initial value of WTF_CPU_ARM64_CORTEXA53 to true
1782 Since on ARM64/Linux the part number that cpuinfo reports depends on
1783 the core the query is run on, the check is bound to and executed on the
1784 available cores one by one.
1786 * Source/cmake/OptionsCommon.cmake:
1788 2014-11-10 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1790 [EFL] Remove unnecessary version check from OptionsEfl.cmake
1791 https://bugs.webkit.org/show_bug.cgi?id=138498
1793 Reviewed by Csaba Osztrogonác.
1795 * Source/cmake/OptionsEfl.cmake:
1797 2014-11-07 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
1799 [EFL] Require at least EFL 1.9 if ENABLE(ACCESSIBILITY) after r175098
1800 https://bugs.webkit.org/show_bug.cgi?id=138465
1802 Reviewed by Gyuyoung Kim.
1804 * Source/cmake/OptionsEfl.cmake:
1806 2014-11-03 Dean Jackson <dino@apple.com>
1808 Add ENABLE_FILTERS_LEVEL_2 feature guard.
1809 https://bugs.webkit.org/show_bug.cgi?id=138362
1811 Reviewed by Tim Horton.
1813 Add a new feature define for Level 2 of CSS Filters.
1814 http://dev.w3.org/fxtf/filters-2/
1816 * Source/cmake/OptionsEfl.cmake:
1817 * Source/cmake/OptionsGTK.cmake:
1818 * Source/cmake/OptionsMac.cmake:
1819 * Source/cmake/WebKitFeatures.cmake:
1820 * Source/cmakeconfig.h.cmake:
1822 2014-11-03 Akos Kiss <akiss@inf.u-szeged.hu>
1824 Workaround for Cortex-A53 erratum 835769
1825 https://bugs.webkit.org/show_bug.cgi?id=138315
1827 Reviewed by Filip Pizlo.
1829 This patch introduces CMake variable and preprocessor macro
1830 WTF_CPU_ARM64_CORTEXA53 with the aim of enabling Cortex-A53-specific
1831 code paths, if set true.
1833 * Source/cmake/OptionsCommon.cmake:
1834 Add -mfix-cortex-a53-835769 to the compiler flags if compiler supports
1836 * Source/cmakeconfig.h.cmake:
1837 #cmakedefine01 for WTF_CPU_ARM64_CORTEXA53
1839 2014-11-02 Akos Kiss <akiss@inf.u-szeged.hu>
1841 [GTK] Fix the build of FTL JIT
1842 https://bugs.webkit.org/show_bug.cgi?id=138298
1844 Reviewed by Carlos Garcia Campos.
1846 * Source/cmake/OptionsGTK.cmake:
1847 Remove the need for the LIBCXXABI package.
1849 2014-11-01 Carlos Garcia Campos <cgarcia@igalia.com>
1851 REGRESSION(CMake): Make it possible to build without introspection
1852 https://bugs.webkit.org/show_bug.cgi?id=138006
1854 Reviewed by Philippe Normand.
1856 Add ENABLE_INTROSPECTION option.
1858 * Source/PlatformGTK.cmake: Dot not add gir global target if
1859 introspection is disabled.
1860 * Source/cmake/OptionsGTK.cmake: Do not add gir individual targets if
1861 introspection is disabled.
1863 2014-10-31 Adrian Perez de Castro <aperez@igalia.com>
1865 [GTK] Support script message handlers WebKitUserContentManager
1866 https://bugs.webkit.org/show_bug.cgi?id=133730
1868 Reviewed by Carlos Garcia Campos.
1870 Support user script message handlers in WebKitUserContentManager.
1871 This needs building with ENABLE_USER_MESSAGE_HANDLERS, for which
1872 an option is added to the CMake build files. The option is disabled
1873 globally by default, and the WebKitGTK port enables it. On the API
1874 level, two new methods to register and unregister names are provided
1875 in the "window.webkit" namespace, and on message reception the
1876 "WebKitUserContentManager::script-message-received" signal is
1877 emitted, using the registered names as signal detail.
1879 * Source/cmake/OptionsGTK.cmake: For the GTK port, enable the
1880 ENABLE_USER_MESSAGE_HANDLERS feature by default.
1881 * Source/cmake/WebKitFeatures.cmake: Add feature description for
1882 ENABLE_USER_MESSAGE_HANDLERS, disabled by default.
1884 2014-10-29 Raphael Kubo da Costa <rakuco@FreeBSD.org>
1886 [GTK] Bump libsoup's minimum version to 2.42.0.
1887 https://bugs.webkit.org/show_bug.cgi?id=138086
1889 Reviewed by Martin Robinson.
1891 The SOUP_CHECK_VERSION macro was added in libsoup 2.41.1, and the
1892 soup-version.h header was added to soup.h in 2.41.4, which then becomes
1893 the minimum version required to build the port these days.
1895 In addition, since the autotools build system required 2.42.0 before
1896 being retired, require the same version here. Version 2.42.0 was also
1898 https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001387.html.
1900 * Source/cmake/OptionsGTK.cmake:
1902 2014-10-28 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1904 [EFL] Remove unnecessary defines from OptionsEfl.cmake
1905 https://bugs.webkit.org/show_bug.cgi?id=138132
1907 Reviewed by Csaba Osztrogonác.
1909 * Source/cmake/OptionsEfl.cmake:
1911 2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
1913 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
1915 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1917 2014-10-21 Ryuan Choi <ryuan.choi@gmail.com>
1919 [EFL] Remove unnecessary ENABLE_3D_RENDERING definition from OptionsEfl.cmake
1920 https://bugs.webkit.org/show_bug.cgi?id=137946
1922 Reviewed by Gyuyoung Kim.
1924 ENABLE_3D_RENDERING is already enabled as WEBKIT_OPTION_DEFAULT_PORT_VALUE since r135813.
1926 * Source/cmake/OptionsEfl.cmake:
1928 2014-10-21 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1930 Fix FTL Native Inlining for EFL
1931 https://bugs.webkit.org/show_bug.cgi?id=137774
1933 Reviewed by Michael Saboff.
1935 Updated CMake for FTL Native Inlining.
1938 * Source/cmake/FindClang.cmake: Added.
1939 * Source/cmake/OptionsEfl.cmake:
1940 * Source/cmakeconfig.h.cmake:
1942 2014-10-20 Joseph Pecoraro <pecoraro@apple.com>
1944 Web Inspector: Generate all Inspector domains together in JavaScriptCore
1945 https://bugs.webkit.org/show_bug.cgi?id=137748
1947 Reviewed by Brian Burg.
1949 * Source/PlatformEfl.cmake:
1951 2014-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
1953 [GTK] Add initial gestures support
1954 https://bugs.webkit.org/show_bug.cgi?id=137812
1956 Reviewed by Sergio Villar Senin.
1958 Check if the GTK+ version supports gestures or not.
1960 * Source/cmake/FindGTK3.cmake:
1961 * Source/cmake/OptionsGTK.cmake:
1963 2014-10-16 Carlos Garcia Campos <cgarcia@igalia.com>
1965 REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
1966 https://bugs.webkit.org/show_bug.cgi?id=137781
1968 Reviewed by Martin Robinson.
1970 We used to enable smooth scrolling unconditionally in autotools
1971 (via WebKitFeatures.m4), but since the switch to CMake it's
1972 unconditionally disabled, so changing the setting doesn't have any
1975 * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
1977 2014-10-16 Pascal Jacquemart <p.jacquemart@samsung.com>
1979 Removing CUSTOM_PROTOCOLS guard
1980 https://bugs.webkit.org/show_bug.cgi?id=137741
1982 Reviewed by Benjamin Poulain.
1984 * Source/cmake/OptionsEfl.cmake:
1986 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1988 [EFL] Enable WebP support.
1989 https://bugs.webkit.org/show_bug.cgi?id=136156
1991 Reviewed by Gyuyoung Kim.
1993 Add WebP package finding rule.
1995 * Source/cmake/OptionsEfl.cmake:
1997 2014-10-07 Pascal Jacquemart <p.jacquemart@samsung.com>
1999 [EFL] Enable custom URI schemes with CustomProtocols
2000 https://bugs.webkit.org/show_bug.cgi?id=128177
2002 Reviewed by Gyuyoung Kim.
2004 Fixing ewk_context_url_scheme_register() ewebkit2 API
2005 rely on r162449 - CustomProtocols implementation from Carlos Garcia Campos
2007 * Source/cmake/OptionsEfl.cmake: Forcing CUSTOM_PROTOCOLS flag
2009 2014-10-01 Michael Catanzaro <mcatanzaro@igalia.com>
2011 Bump version to 2.7.0
2012 https://bugs.webkit.org/show_bug.cgi?id=137301
2014 Rubber-stamped by Carlos Garcia Campos.
2016 * Source/cmake/OptionsGTK.cmake: Bump version numbers
2018 2014-09-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2020 [EFL] Rename TEST_THEME_DIR macro
2021 https://bugs.webkit.org/show_bug.cgi?id=137244
2023 Reviewed by Csaba Osztrogonác.
2025 * Source/cmake/OptionsEfl.cmake: Rename TEST_THEME_DIR to DEFAULT_THEME_DIR.
2027 2014-09-27 Dan Bernstein <mitz@apple.com>
2029 WebKit top of tree sources won't build in 10.9 w/ Xcode 6.0.1
2030 https://bugs.webkit.org/show_bug.cgi?id=137053
2032 Reviewed by Mark Rowe.
2034 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2035 In the build pre-action, pass the --wksi and --llvm options to
2036 copy-webkitlibraries-to-product-directory.
2037 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: Ditto.
2039 2014-09-26 Carlos Garcia Campos <cgarcia@igalia.com>
2041 [GTK] Enable CSS_IMAGE_SET in production builds
2042 https://bugs.webkit.org/show_bug.cgi?id=137142
2044 Reviewed by Alejandro G. Castro.
2046 This is required by the inspector to show some of the icons that
2047 has a HiDPI variant.
2049 * Source/cmake/OptionsGTK.cmake:
2051 2014-09-25 Carlos Garcia Campos <cgarcia@igalia.com>
2053 [Gtk] build.sh needs a -- before make options when the build command is cmake --build
2054 https://bugs.webkit.org/show_bug.cgi?id=136377
2056 Reviewed by Philippe Normand.
2058 * Source/cmake/OptionsGTK.cmake: Only create the build.sh script
2059 for CMake versions less than 3.
2061 2014-09-25 Csaba Osztrogonác <ossy@webkit.org>
2063 Remove WinCE port from trunk
2064 https://bugs.webkit.org/show_bug.cgi?id=136951
2066 Reviewed by Alex Christensen.
2068 * Source/cmake/OptionsWinCE.cmake: Removed.
2069 * Source/cmake/WebKitPackaging.cmake:
2071 2014-09-17 Renato Nagy <rnagy@inf.u-szeged.hu>
2073 [EFL][GTK] Remove WebKit1 related codes
2074 https://bugs.webkit.org/show_bug.cgi?id=136853
2076 Reviewed by Csaba Osztrogonác.
2078 Gtk and EFL WebKit1 ports no longer exist. Webkit1 related codes were deleted
2081 * Source/PlatformGTK.cmake:
2083 2014-09-16 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
2086 https://bugs.webkit.org/show_bug.cgi?id=136820
2088 Reviewed by Csaba Osztrogonác.
2090 * Source/cmake/FindICU.cmake:
2092 2014-09-15 Zan Dobersek <zdobersek@igalia.com>
2094 [CMake] Remove FIND_PACKAGE_HANDLE_STANDARD_ARGS call for WAYLAND_EGL in FindWayland.cmake
2095 https://bugs.webkit.org/show_bug.cgi?id=136814
2097 Reviewed by Philippe Normand.
2099 * Source/cmake/FindWayland.cmake: This line was committed by mistake.
2100 We bundle the wayland-egl dependency with wayland-client and wayland-server
2101 and store the resulting variables with the WAYLAND_ prefix. Because of this
2102 this line wasn't exporting anything useful.
2104 2014-09-12 Csaba Osztrogonác <ossy@webkit.org>
2106 URTBF after r173574.
2108 * Source/cmake/WebKitMacros.cmake:
2110 2014-09-11 László Langó <llango.u-szeged@partner.samsung.com>
2112 [JavaScriptCore] Fix FTL on platform EFL.
2113 https://bugs.webkit.org/show_bug.cgi?id=133571
2115 Reviewed by Filip Pizlo.
2119 * Source/cmake/FindLIBCXXABI.cmake: Removed.
2120 * Source/cmake/OptionsEfl.cmake:
2122 2014-09-08 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2125 https://bugs.webkit.org/show_bug.cgi?id=136571
2127 Reviewed by Darin Adler.
2129 * Source/cmake/OptionsEfl.cmake:
2130 * Source/cmake/OptionsGTK.cmake:
2131 * Source/cmake/OptionsMac.cmake:
2132 * Source/cmake/WebKitFeatures.cmake:
2133 * Source/cmakeconfig.h.cmake:
2135 2014-09-04 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2137 Remove CSS_FILTERS flag
2138 https://bugs.webkit.org/show_bug.cgi?id=136529
2140 Reviewed by Dirk Schulze.
2142 * Source/cmake/OptionsEfl.cmake:
2143 * Source/cmake/OptionsGTK.cmake:
2144 * Source/cmake/OptionsMac.cmake:
2145 * Source/cmake/WebKitFeatures.cmake:
2146 * Source/cmakeconfig.h.cmake:
2148 2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2150 [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
2151 https://bugs.webkit.org/show_bug.cgi?id=136194
2153 Reviewed by Csaba Osztrogonác.
2155 Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
2159 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
2161 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
2162 https://bugs.webkit.org/show_bug.cgi?id=135560
2164 Reviewed by Gyuyoung Kim.
2166 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
2168 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
2170 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
2171 https://bugs.webkit.org/show_bug.cgi?id=136343
2173 Reviewed by David Kilzer.
2175 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
2177 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2178 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2180 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
2182 [EFL] Share fast/speechsynthesis/ with other ports
2183 https://bugs.webkit.org/show_bug.cgi?id=136224
2185 Reviewed by Chris Fleizach.
2187 Enable WebSpeech for EFL.
2189 * Source/cmake/OptionsEfl.cmake:
2191 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
2193 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
2194 https://bugs.webkit.org/show_bug.cgi?id=136127
2196 Reviewed by Gyuyoung Kim.
2198 Add build support for espeak.
2200 * Source/cmake/FindEspeak.cmake: Added.
2201 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
2203 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
2205 [EFL] Build break using clang
2206 https://bugs.webkit.org/show_bug.cgi?id=136245
2208 Reviewed by Gyuyoung Kim.
2210 * Source/cmake/OptionsEfl.cmake:
2211 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
2212 Some warnings are from system libraries.
2214 2014-08-25 Alberto Garcia <berto@igalia.com>
2216 [GTK] Unify webkitgtk and webkit2gtk directories
2217 https://bugs.webkit.org/show_bug.cgi?id=136209
2219 Reviewed by Carlos Garcia Campos.
2221 Use webkit2gtk-X.X both for the process binaries and the injected
2224 * Source/cmake/OptionsGTK.cmake:
2226 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2228 [EFL] Move Efl specific code from Source/CMakeLists.txt
2229 https://bugs.webkit.org/show_bug.cgi?id=136206
2231 Reviewed by Gyuyoung Kim.
2233 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
2234 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
2236 * Source/CMakeLists.txt:
2237 * Source/cmake/OptionsEfl.cmake:
2239 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
2241 [EFL] Introduce DEVELOPER_MODE
2242 https://bugs.webkit.org/show_bug.cgi?id=135884
2244 Reviewed by Gyuyoung Kim.
2246 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
2247 instead of SHARED_CORE.
2248 SHARED_CORE can reduce link time and memory consumption but it is slightly different
2249 from release binary.
2251 * Source/cmake/OptionsEfl.cmake:
2252 * Source/cmake/WebKitHelpers.cmake:
2253 Moved fvisibility=hidden to OptionsEfl.cmake
2255 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
2257 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
2258 https://bugs.webkit.org/show_bug.cgi?id=136110
2260 Reviewed by Gyuyoung Kim.
2262 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
2264 * Source/cmake/OptionsEfl.cmake:
2266 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2268 [EFL] Apply eflsymbols.filter to WebKit2
2269 https://bugs.webkit.org/show_bug.cgi?id=136148
2271 Reviewed by Csaba Osztrogonác.
2273 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
2274 in the eflsymbols.filter.
2276 * Source/cmake/OptionsEfl.cmake:
2277 * Source/cmake/eflsymbols.filter:
2279 2014-08-21 Zalan Bujtas <zalan@apple.com>
2281 Enable SATURATED_LAYOUT_ARITHMETIC.
2282 https://bugs.webkit.org/show_bug.cgi?id=136106
2284 Reviewed by Simon Fraser.
2286 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
2287 (No measurable performance regression on Mac.)
2289 * Source/cmake/OptionsMac.cmake:
2290 * Source/cmake/WebKitFeatures.cmake:
2291 * Source/cmakeconfig.h.cmake:
2293 2014-08-19 Zalan Bujtas <zalan@apple.com>
2295 Remove ENABLE(SUBPIXEL_LAYOUT).
2296 https://bugs.webkit.org/show_bug.cgi?id=136077
2298 Reviewed by Simon Fraser.
2300 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
2302 * Source/cmake/OptionsEfl.cmake:
2303 * Source/cmake/OptionsGTK.cmake:
2304 * Source/cmake/OptionsMac.cmake:
2305 * Source/cmake/WebKitFeatures.cmake:
2306 * Source/cmakeconfig.h.cmake:
2308 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
2310 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
2311 https://bugs.webkit.org/show_bug.cgi?id=135980
2313 Reviewed by Martin Robinson.
2315 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
2316 overrides any other disabled optimization that was prepended to these
2317 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
2318 lists first in the final list of compilation flags.
2320 To avoid -On re-enabling optimizations that we'd like to keep disabled,
2321 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
2323 * Source/cmake/OptionsCommon.cmake:
2324 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
2325 * Source/cmake/OptionsGTK.cmake:
2327 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2329 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
2331 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2333 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
2335 [GTK] Disable memory sampler on non-Linux system
2336 https://bugs.webkit.org/show_bug.cgi?id=134483
2338 Reviewed by Philippe Normand.
2340 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
2341 Linux because it uses many Linux-specific features, so we should disable
2342 memory sampler on other systems by default.
2344 * Source/cmake/OptionsGTK.cmake:
2346 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
2348 [GTK] HTML API documentation should also be installed versioned
2349 https://bugs.webkit.org/show_bug.cgi?id=135970
2351 Reviewed by Philippe Normand.
2353 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
2356 2014-08-14 Tomas Popela <tpopela@redhat.com>
2358 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
2359 https://bugs.webkit.org/show_bug.cgi?id=135937
2361 Reviewed by Carlos Garcia Campos.
2365 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2367 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
2368 https://bugs.webkit.org/show_bug.cgi?id=135934
2370 Reviewed by Gustavo Noronha Silva.
2372 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
2373 The gir files should installed in $datadir/gir-1.0/ together with all other
2374 gir files. We don't need to install introspection files in a versioned
2375 directory because their filenames already contain the binary version. But before
2376 r171598, the files were only installed to the right directory if the
2377 gobject-instrospection pkg-config file was in the same prefix than the one we
2378 wanted to install, because the gir and typelibs directories were extracted from
2379 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
2380 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
2381 like we do in the autotools build.
2383 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
2384 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2385 * Source/cmake/OptionsGTK.cmake: Define
2386 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
2388 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
2390 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
2391 https://bugs.webkit.org/show_bug.cgi?id=135836
2393 Reviewed by Philippe Normand.
2395 * Source/PlatformGTK.cmake: Add install command to also install
2396 the GObject DOM bindings API docs.
2398 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
2400 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
2401 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
2402 re-set CMAKE_C_FLAGS with the new string. The two flags should really
2403 be appended to CMAKE_C_FLAGS and the same variable re-set with the
2406 * Source/cmake/OptionsCommon.cmake:
2408 2014-08-13 Alex Christensen <achristensen@webkit.org>
2410 Progress towards CMake on Mac.
2411 https://bugs.webkit.org/show_bug.cgi?id=135819
2413 Reviewed by Laszlo Gombos.
2415 * Source/cmake/OptionsMac.cmake:
2416 Disable some more features temporarily to get CMake working.
2417 * Source/cmake/WebKitMacros.cmake:
2418 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
2420 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2422 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
2423 https://bugs.webkit.org/show_bug.cgi?id=135798
2425 Reviewed by Philippe Normand.
2427 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
2429 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
2430 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2431 https://bugs.webkit.org/show_bug.cgi?id=133317
2433 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2435 Reviewed by Philippe Normand.
2437 No new tests since no new functionality has been added.
2439 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2441 2014-08-11 Commit Queue <commit-queue@webkit.org>
2443 Unreviewed, rolling out r172393.
2444 https://bugs.webkit.org/show_bug.cgi?id=135796
2446 discussion needed about GnuTLS version bump on the bots
2447 (Requested by philn on #webkit).
2451 https://bugs.webkit.org/show_bug.cgi?id=133317
2452 http://trac.webkit.org/changeset/172393
2454 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2455 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
2456 https://bugs.webkit.org/show_bug.cgi?id=133317
2458 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
2460 Reviewed by Philippe Normand.
2462 No new tests since no new functionality has been added.
2464 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
2466 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
2468 [GTK] Adds stubs for all subtle crypto algorithm implemntations
2469 https://bugs.webkit.org/show_bug.cgi?id=133316
2471 Reviewed by Philippe Normand.
2473 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
2474 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
2475 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
2477 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
2479 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
2481 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2483 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2485 [GTK] REGRESSION(r166239): The ld version script is not being used
2486 https://bugs.webkit.org/show_bug.cgi?id=135694
2488 Reviewed by Martin Robinson.
2490 Move the symbols filter file from Tools/gtk to Source/cmake and rename
2491 it as gtksymbols.filter. Also updated it, since some of the symbols
2492 exported were renamed.
2494 * Source/cmake/OptionsGTK.cmake:
2495 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
2497 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
2499 [GTK] Child processes should be installed in a versioned directory
2500 https://bugs.webkit.org/show_bug.cgi?id=135754
2502 Reviewed by Gustavo Noronha Silva.
2504 Define LIBEXEC_INSTALL_DIR as
2505 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
2506 so that the child processes are installed in $libexec/webkitgtk-4.0.
2507 This makes it possible to install 2.6 in parallel to older versions.
2509 * Source/cmake/OptionsGTK.cmake:
2511 2014-08-08 Alex Christensen <achristensen@webkit.org>
2513 Progress towards using CMake on Mac.
2514 https://bugs.webkit.org/show_bug.cgi?id=135662
2516 Reviewed by Laszlo Gombos.
2519 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
2520 * Source/cmake/WebKitFeatures.cmake:
2521 * Source/cmakeconfig.h.cmake:
2522 Added features that are needed by the Mac port.
2523 * Source/cmake/OptionsMac.cmake:
2524 Enable CSS_IMAGE_SET based on FeatureDefines.h.
2525 Disable the FTL with CMake for now.
2526 * Source/cmake/OptionsEFL.cmake:
2527 * Source/cmake/OptionsGTK.cmake:
2528 Enable subpixel layout to not conflict with FeatureDefines.h
2530 2014-08-08 Simon Fraser <simon.fraser@apple.com>
2532 Undo some erroneous changes to the Xcode scheme files from r172259.
2534 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2535 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2537 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
2539 [CMake] Drop the required version of CMake down to 2.8.8
2540 https://bugs.webkit.org/show_bug.cgi?id=135713
2542 Reviewed by Alex Christensen.
2544 * CMakeLists.txt: Require CMake 2.8.8.
2546 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
2548 Get rid of INPUT_SPEECH
2549 https://bugs.webkit.org/show_bug.cgi?id=135672
2551 Reviewed by Andreas Kling.
2553 * Source/cmake/OptionsMac.cmake:
2554 * Source/cmake/WebKitFeatures.cmake:
2555 * Source/cmakeconfig.h.cmake:
2557 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
2559 [GTK] Disable IndexedDB
2560 https://bugs.webkit.org/show_bug.cgi?id=135692
2562 Reviewed by Carlos Garcia Campos.
2564 * Source/cmake/OptionsGTK.cmake:
2566 2014-08-06 Dean Jackson <dino@apple.com>
2568 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
2569 https://bugs.webkit.org/show_bug.cgi?id=135675
2571 Reviewed by Sam Weinig.
2573 * Source/cmake/OptionsGTK.cmake:
2574 * Source/cmake/OptionsMac.cmake:
2575 * Source/cmake/WebKitFeatures.cmake:
2576 * Source/cmakeconfig.h.cmake:
2578 2014-08-06 David Farler <dfarler@apple.com>
2580 Unreviewed build fix: Make includes semicolon in assignment.
2582 * Makefile.shared: Remove a ;
2584 2014-08-06 David Farler <dfarler@apple.com>
2586 Set DSYMUTIL_NUM_THREADS to the number of logical cores
2587 https://bugs.webkit.org/show_bug.cgi?id=135655
2589 Reviewed by Mark Rowe.
2591 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
2593 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
2595 [GTK] Be able to disable gtk2 dependency
2596 https://bugs.webkit.org/show_bug.cgi?id=135505
2598 Reviewed by Gustavo Noronha Silva.
2600 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
2601 required when it's enabled. It's enabled by default.
2603 * Source/cmake/OptionsGTK.cmake:
2605 2014-08-05 Alex Christensen <achristensen@webkit.org>
2608 https://bugs.webkit.org/show_bug.cgi?id=135620
2610 Reviewed by Laszlo Gombos.
2612 * Source/cmake/OptionsMac.cmake:
2613 Use UDIS86 by default on Mac.
2615 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
2617 Add a flag for the CSS Selectors level 4 implementation
2618 https://bugs.webkit.org/show_bug.cgi?id=135535
2620 Reviewed by Andreas Kling.
2622 * Source/cmake/OptionsEfl.cmake:
2623 * Source/cmake/OptionsGTK.cmake:
2624 * Source/cmake/WebKitFeatures.cmake:
2625 * Source/cmakeconfig.h.cmake:
2627 2014-08-04 Alex Christensen <achristensen@webkit.org>
2629 Progress towards CMake on Mac.
2630 https://bugs.webkit.org/show_bug.cgi?id=135528
2632 Reviewed by Gyuyoung Kim.
2634 * Source/cmake/OptionsMac.cmake:
2635 Made options list based on FeatureDefines.xcconfig files.
2637 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2639 [GTK] Windowing target support should reflect the support in the GTK+ dependency
2640 https://bugs.webkit.org/show_bug.cgi?id=134736
2642 Reviewed by Martin Robinson.
2644 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
2645 support the X11 or Wayland windowing targets -- instead, if there's no support
2646 the specific target is disabled, and an error is thrown only if neither of the
2647 backends is enabled at the end..
2648 For now the X11 target remains enabled by default, and the Wayland target is
2649 kept disabled. Once it's possible to have both targets enabled at runtime in
2650 WebKit, the Wayland target will be enabled as well and we'll leave it to the
2651 GTK+ dependency to determine which targets can be enabled.
2653 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
2655 [CMake] Add FindWayland.cmake
2656 https://bugs.webkit.org/show_bug.cgi?id=135540
2658 Reviewed by Martin Robinson.
2660 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
2661 dependency. For now bundles the wayland-client, wayland-server and
2662 wayland-egl pkg-config targets into one dependency, but these could
2663 be split in the future if necessary.
2665 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
2667 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
2668 https://bugs.webkit.org/show_bug.cgi?id=135553
2670 Reviewed by Gyuyoung Kim.
2672 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
2673 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
2675 * Source/cmake/OptionsEfl.cmake:
2677 2014-08-01 Bear Travis <betravis@adobe.com>
2679 [Feature Queries] Enable Feature Queries on EFL/GTK
2680 https://bugs.webkit.org/show_bug.cgi?id=134902
2682 Reviewed by Benjamin Poulain.
2684 Enable CSS Feature Queries by default on the EFL and GTK
2687 * Source/cmake/OptionsEfl.cmake:
2688 * Source/cmake/OptionsGTK.cmake:
2690 2014-08-01 Alex Christensen <achristensen@webkit.org>
2692 Progress towards cmake on Windows.
2693 https://bugs.webkit.org/show_bug.cgi?id=135484
2695 Reviewed by Martin Robinson.
2698 Added Mac to list of ports, even though it is not done yet.
2699 Changed minimum bison version to version installed on Macs.
2700 * Source/cmake/OptionsAppleWin.cmake:
2701 Added some definitions.
2702 * Source/cmake/OptionsEfl.cmake:
2703 * Source/cmake/OptionsGTK.cmake:
2704 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
2705 * Source/cmake/OptionsMac.cmake: Added blank for now.
2706 * Source/cmake/OptionsWinCairo.cmake:
2707 * Source/cmake/OptionsWindows.cmake:
2708 Added some definitions.
2709 Removed /WX (warnings treated as error while compiling).
2710 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
2712 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
2714 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
2715 https://bugs.webkit.org/show_bug.cgi?id=135501
2717 Reviewed by Gyuyoung Kim.
2719 Use PROJECT_VERSION_MICRO instead.
2721 * Source/cmake/OptionsEfl.cmake:
2722 * Source/cmake/OptionsGTK.cmake:
2723 * Source/cmake/WebKitHelpers.cmake:
2725 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
2727 [EFL] Bump ewebkit version to 1.11
2728 https://bugs.webkit.org/show_bug.cgi?id=135487
2730 Reviewed by Gyuyoung Kim.
2732 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
2734 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2736 [EFL] Add support for building with Geoclue2.
2737 https://bugs.webkit.org/show_bug.cgi?id=135455
2739 Reviewed by Gyuyoung Kim.
2741 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
2744 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2746 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
2748 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2750 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
2752 [GTK] Bump binary version for 2.6
2753 https://bugs.webkit.org/show_bug.cgi?id=133724
2755 Reviewed by Philippe Normand.
2757 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
2758 update library version numbers.
2760 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
2762 [CMake] Bump the minimum required version
2763 https://bugs.webkit.org/show_bug.cgi?id=135382
2765 Reviewed by Gyuyoung Kim.
2767 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
2768 we introduced usage of target_include_directories().
2770 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
2772 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
2773 https://bugs.webkit.org/show_bug.cgi?id=135376
2775 Reviewed by Gyuyoung Kim.
2777 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
2779 * Source/cmake/OptionsEfl.cmake:
2780 * Source/cmake/OptionsGTK.cmake:
2782 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
2784 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
2785 https://bugs.webkit.org/show_bug.cgi?id=135288
2787 Reviewed by Martin Robinson.
2789 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
2790 datadir to pkgconfig
2791 * Source/cmake/OptionsGTK.cmake: define install directories early
2792 enough to be used in FindGObjectIntrospection.cmake
2794 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
2796 Remove CSS_EXCLUSIONS compile flag and leftover code
2797 https://bugs.webkit.org/show_bug.cgi?id=135175
2799 Reviewed by Zoltan Horvath.
2801 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
2802 stubs. This removes the flag and the useless code.
2804 * Source/cmake/WebKitFeatures.cmake:
2805 * Source/cmakeconfig.h.cmake:
2807 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
2809 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
2810 https://bugs.webkit.org/show_bug.cgi?id=135114
2812 Fix build with GStreamer 1.4
2814 Reviewed by Philippe Normand.
2816 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
2817 gst-mpegts component instead of the unstable 1.3.x verstions.
2819 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
2821 [GTK] Simplify make-dist command line arguments
2822 https://bugs.webkit.org/show_bug.cgi?id=134832
2824 Reviewed by Martin Robinson.
2826 * Source/PlatformGTK.cmake: Use --version instead of
2827 --tarball-root when running make-dist.py.
2829 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
2831 Add a manual test for r135044
2833 <https://bugs.webkit.org/show_bug.cgi?id=135044>
2835 Rubber-stamped by Andy Estes.
2837 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
2839 2014-07-18 Dana Burkart <dburkart@apple.com>
2841 Add a new 'analyze' target to the makefile. This will make use of a new
2842 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
2844 https://bugs.webkit.org/show_bug.cgi?id=135057
2845 <rdar://problem/10193187>
2847 Reviewed by David Kilzer.
2853 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
2855 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
2856 https://bugs.webkit.org/show_bug.cgi?id=134963
2858 Reviewed by Gyuyoung Kim.
2860 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
2862 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
2864 2014-07-14 Daniel Bates <dabates@apple.com>
2866 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
2867 https://bugs.webkit.org/show_bug.cgi?id=134905
2868 <rdar://problem/16602779>
2870 Reviewed by Simon Fraser.
2872 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
2873 on the tapped element when processing a touchend as a result of finger pressing and releasing
2874 on the same element that is initially positioned outside the visible content area.
2876 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
2878 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
2880 [GTK] Enable VIDEO_TRACK by default
2881 https://bugs.webkit.org/show_bug.cgi?id=134801
2883 Reviewed by Philippe Normand.
2885 * Source/cmake/OptionsGTK.cmake:
2887 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2889 [GTK][CMake] Add a 'distcheck' target
2890 https://bugs.webkit.org/show_bug.cgi?id=130675
2892 Reviewed by Gustavo Noronha Silva.
2894 * Source/PlatformGTK.cmake: Add distcheck target.
2896 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
2898 [GTK] Use the same default options for production builds that previous stable releases
2899 https://bugs.webkit.org/show_bug.cgi?id=134589
2901 Reviewed by Martin Robinson.
2903 Change the default value of some features to match our stable releases.
2904 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
2905 canvas depend on whether cairo-gl is found.
2907 * Source/cmake/FindCairoGL.cmake: Added.
2908 * Source/cmake/OptionsGTK.cmake:
2910 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
2912 [EFL] Support Encrypted Media Extensions.
2913 https://bugs.webkit.org/show_bug.cgi?id=134750
2915 Reviewed by Gyuyoung Kim.
2917 Webkit needs to play encrypted media contents when media player
2918 is played by Media source extensions and normal video procedure.
2920 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
2922 2014-07-08 Alex Christensen <achristensen@webkit.org>
2924 Steps towards CMake on Windows.
2925 https://bugs.webkit.org/show_bug.cgi?id=134716
2927 Reviewed by Martin Robinson.
2930 Added AppleWin and WinCairo to list of CMake ports.
2931 * Source/cmake/OptionsAppleWin.cmake: Added.
2932 * Source/cmake/OptionsWinCairo.cmake: Added.
2933 * Source/cmake/OptionsWindows.cmake:
2934 Windows needs to use the system malloc. Other options to come.
2936 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2938 [EFL] Support Geolocation
2939 https://bugs.webkit.org/show_bug.cgi?id=134439
2941 Reviewed by Antonio Gomes.
2943 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
2945 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2947 Broken build with build-webkit --no-video
2948 https://bugs.webkit.org/show_bug.cgi?id=134587
2950 Reviewed by Darin Adler.
2952 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
2954 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
2956 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
2958 [GTK] The list of features shown by cmake is not accurate
2959 https://bugs.webkit.org/show_bug.cgi?id=134588
2961 Reviewed by Gustavo Noronha Silva.
2963 The problem is that some options might change after the feature
2964 list has been printed.
2966 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
2967 setting the default values of features and set WEBGL value
2968 depending on the dependencies, and API_TEST depending on whether
2969 developer mode is enabled or not.
2971 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
2973 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
2974 https://bugs.webkit.org/show_bug.cgi?id=134578
2976 Reviewed by Gyuyoung Kim.
2978 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
2979 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
2980 disable related option if it is not ON.
2982 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
2983 * Source/cmake/OptionsGTK.cmake: Ditto.
2984 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
2986 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
2988 [GTK] make dist is broken
2989 https://bugs.webkit.org/show_bug.cgi?id=134542
2991 Reviewed by Martin Robinson.
2993 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
2995 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
2997 [CMake] Add necessary support for building for the Wayland target
2998 https://bugs.webkit.org/show_bug.cgi?id=134160
3000 Reviewed by Darin Adler.
3002 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
3003 is enabled, and that its version matches the version of the generic package. Same
3004 for the gtk+-wayland-3.0 package and the Wayland target.
3005 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
3006 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
3007 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
3008 so they keep building the TestNetscapePlugin target.
3009 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
3010 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
3011 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
3012 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
3013 the minimum required version as soon as that target is enabled. Only search for GLX
3014 if the X11 target is enabled.
3016 2014-06-29 Yoav Weiss <yoav@yoav.ws>
3018 Add support for HTMLImageElement's sizes attribute
3019 https://bugs.webkit.org/show_bug.cgi?id=133620
3021 Reviewed by Dean Jackson.
3023 Added an ENABLE_PICTURE_SIZES compile flag.
3025 * Source/cmake/WebKitFeatures.cmake:
3026 * Source/cmakeconfig.h.cmake:
3028 2014-06-26 Daniel Bates <dabates@apple.com>
3030 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
3031 https://bugs.webkit.org/show_bug.cgi?id=134309
3032 <rdar://problem/17427385>
3034 Reviewed by Darin Adler.
3036 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
3039 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
3041 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
3043 Remove build guard for progress element
3044 https://bugs.webkit.org/show_bug.cgi?id=134292
3046 Reviewed by Benjamin Poulain.
3048 The build flag is no longer needed as it is always on.
3050 * Source/cmake/WebKitFeatures.cmake:
3051 * Source/cmakeconfig.h.cmake:
3053 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
3055 [EFL] Platform support for WebSpeech feature.
3056 https://bugs.webkit.org/show_bug.cgi?id=116438
3058 Reviewed by Csaba Osztrogonác.
3060 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3062 * Source/cmake/OptionsEfl.cmake:
3063 * Source/cmake/WebKitFeatures.cmake:
3065 2014-06-23 Philippe Normand <pnormand@igalia.com>
3067 Unreviewed, GTK build fix after r170266.
3069 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
3071 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3073 Disable gamepad feature on EFL and GTK ports by default
3074 https://bugs.webkit.org/show_bug.cgi?id=134169
3076 Reviewed by Brady Eidson.
3078 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
3080 2014-06-21 Brady Eidson <beidson@apple.com>
3082 Gamepad API - Deprecate the existing implementation
3083 https://bugs.webkit.org/show_bug.cgi?id=134108
3085 Reviewed by Timothy Hatcher.
3087 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3088 -Add the "Deprecated" suffix to some implementation files
3090 * Source/cmake/OptionsEfl.cmake:
3091 * Source/cmake/OptionsGTK.cmake:
3092 * Source/cmake/WebKitFeatures.cmake:
3093 * Source/cmakeconfig.h.cmake:
3095 2014-06-21 Commit Queue <commit-queue@webkit.org>
3097 Unreviewed, rolling out r170244.
3098 https://bugs.webkit.org/show_bug.cgi?id=134157
3100 GTK/EFL bindings generator works differently, making this
3101 patch not work there. Will fix entire patch after a rollout.
3102 (Requested by bradee-oh on #webkit).
3106 "Gamepad API - Deprecate the existing implementation"
3107 https://bugs.webkit.org/show_bug.cgi?id=134108
3108 http://trac.webkit.org/changeset/170244
3110 2014-06-21 Brady Eidson <beidson@apple.com>
3112 Gamepad API - Deprecate the existing implementation
3113 https://bugs.webkit.org/show_bug.cgi?id=134108
3115 Reviewed by Timothy Hatcher.
3117 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
3118 -Add the "Deprecated" suffix to some implementation files
3120 * Source/cmake/OptionsEfl.cmake:
3121 * Source/cmake/OptionsGTK.cmake:
3122 * Source/cmake/WebKitFeatures.cmake:
3123 * Source/cmakeconfig.h.cmake:
3125 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3127 Removing PAGE_VISIBILITY_API compile guard.
3128 https://bugs.webkit.org/show_bug.cgi?id=133844
3130 Reviewed by Gavin Barraclough.
3132 * Source/cmake/OptionsEfl.cmake:
3133 * Source/cmake/OptionsGTK.cmake:
3134 * Source/cmake/WebKitFeatures.cmake:
3135 * Source/cmakeconfig.h.cmake:
3137 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
3139 [EFL][CMAKE] Disable WebKit1 build as a default
3140 https://bugs.webkit.org/show_bug.cgi?id=134093
3142 Reviewed by Gyuyoung Kim.
3144 Disable WebKit1 build and enable WebKit2 build for the EFL port.
3146 * Source/cmake/OptionsEfl.cmake:
3148 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3150 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
3151 https://bugs.webkit.org/show_bug.cgi?id=130389
3153 Reviewed by Mark Lam.
3155 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
3156 into !ENABLE(JIT) since they are mutually exclusive.
3158 * Source/cmake/OptionsEfl.cmake:
3159 * Source/cmake/OptionsGTK.cmake:
3160 * Source/cmake/WebKitFeatures.cmake:
3161 * Source/cmakeconfig.h.cmake:
3163 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
3165 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
3166 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
3167 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
3168 by the plugin process, but it is searched and utilized separately.
3170 Rubber-stamped by Carlos Garcia Campos.
3172 * Source/cmake/OptionsGTK.cmake:
3174 2014-06-16 Commit Queue <commit-queue@webkit.org>
3176 Unreviewed, rolling out r170003.
3177 https://bugs.webkit.org/show_bug.cgi?id=133938
3179 This patch broke GTK build (Requested by kczech on #webkit).
3183 "[EFL] Platform support for WebSpeech feature."
3184 https://bugs.webkit.org/show_bug.cgi?id=116438
3185 http://trac.webkit.org/changeset/170003
3187 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
3189 [EFL] Platform support for WebSpeech feature.
3190 https://bugs.webkit.org/show_bug.cgi?id=116438
3192 Reviewed by Gyuyoung Kim.
3194 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
3196 * Source/cmake/OptionsEfl.cmake:
3197 * Source/cmake/WebKitFeatures.cmake:
3199 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3201 [EFL] Remove duplicated compiler flag
3202 https://bugs.webkit.org/show_bug.cgi?id=133838
3204 Reviewed by Anders Carlsson.
3206 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
3207 it added to common compiler options. So, it is duplicated.
3209 * Source/cmake/WebKitHelpers.cmake:
3211 2014-06-11 Commit Queue <commit-queue@webkit.org>
3213 Unreviewed, rolling out r169877.
3214 https://bugs.webkit.org/show_bug.cgi?id=133784
3216 rollout wrong build fix approach for EFL port (Requested by
3217 gyuyoung on #webkit).
3221 "Unreviewed, EFL build fix since r169869."
3222 http://trac.webkit.org/changeset/169877
3224 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3226 Unreviewed, EFL build fix since r169869.
3228 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
3230 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
3232 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3234 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
3236 * Source/cmake/WebKitHelpers.cmake:
3238 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
3240 [GTK] Make it possible to build with FTL enabled
3241 https://bugs.webkit.org/show_bug.cgi?id=133219
3243 Reviewed by Philippe Normand.
3245 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
3247 * Source/cmake/OptionsGTK.cmake:
3249 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
3251 [CMake] Clean up FAST_MOBILE_SCROLLING
3252 https://bugs.webkit.org/show_bug.cgi?id=133342
3254 Reviewed by Gyuyoung Kim.
3256 FAST_MOBILE_SCROLLING was removed in r168726.
3258 * Source/cmake/OptionsEfl.cmake:
3259 * Source/cmake/OptionsGTK.cmake:
3260 * Source/cmake/WebKitFeatures.cmake:
3261 * Source/cmakeconfig.h.cmake:
3263 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3266 https://bugs.webkit.org/show_bug.cgi?id=132863
3268 Reviewed by Csaba Osztrogonác.
3270 * Source/cmake/OptionsEfl.cmake:
3271 * Source/cmake/OptionsGTK.cmake:
3272 * Source/cmake/WebKitFeatures.cmake:
3273 * Source/cmakeconfig.h.cmake:
3275 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3277 Allow building CMake based ports with WEB_REPLAY
3278 https://bugs.webkit.org/show_bug.cgi?id=133154
3280 Reviewed by Csaba Osztrogonác.
3282 * Source/cmake/WebKitFeatures.cmake:
3283 * Source/cmakeconfig.h.cmake:
3285 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
3287 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
3288 https://bugs.webkit.org/show_bug.cgi?id=132907
3290 Reviewed by Gyuyoung Kim.
3292 * Source/cmake/FindLIBCXXABI.cmake: Added.
3293 * Source/cmake/OptionsEfl.cmake:
3295 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3297 [EFL] Turn on ENABLE_CSS_FILTERS
3298 https://bugs.webkit.org/show_bug.cgi?id=133153
3300 Reviewed by Gyuyoung Kim.
3302 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
3304 2014-05-16 Martin Robinson <mrobinson@igalia.com>
3306 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
3307 https://bugs.webkit.org/show_bug.cgi?id=132819
3309 Reviewed by Carlos Garcia Campos.
3311 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
3313 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
3314 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
3316 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
3318 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
3320 [CMake] Support building with Debug Fission
3321 https://bugs.webkit.org/show_bug.cgi?id=131177
3323 Reviewed by Philippe Normand.
3325 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
3326 of http://gcc.gnu.org/wiki/DebugFission.
3328 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
3330 [GTK] Rename translation domain as WebKit2GTK-3.0
3331 https://bugs.webkit.org/show_bug.cgi?id=132953
3333 Reviewed by Gustavo Noronha Silva.
3335 * Source/cmake/OptionsGTK.cmake:
3337 2014-05-18 Rik Cabanier <cabanier@adobe.com>
3339 support for navigator.hardwareConcurrency
3340 https://bugs.webkit.org/show_bug.cgi?id=132588
3342 Reviewed by Filip Pizlo.
3344 * Source/cmake/OptionsEfl.cmake:
3345 * Source/cmake/OptionsGTK.cmake:
3346 * Source/cmake/WebKitFeatures.cmake:
3347 * Source/cmakeconfig.h.cmake:
3349 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
3351 Remove CSS_STICKY_POSITION guards
3352 https://bugs.webkit.org/show_bug.cgi?id=132676
3354 Reviewed by Simon Fraser.
3356 * Source/cmake/OptionsEfl.cmake:
3357 * Source/cmake/OptionsGTK.cmake:
3358 * Source/cmake/WebKitFeatures.cmake:
3359 * Source/cmakeconfig.h.cmake:
3361 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
3363 Unreviewed. Bump version numbers.
3365 * Source/cmake/OptionsGTK.cmake:
3367 2014-05-10 Martin Robinson <mrobinson@igalia.com>
3369 [GTK][CMake] Unable to do make install
3370 https://bugs.webkit.org/show_bug.cgi?id=130188
3372 Reviewed by Carlos Garcia Campos.
3374 Only try to install the HTML documentation if the build is configured to generate it via
3375 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3376 to keep the HTML documentation directory as an installation source.
3378 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3379 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3380 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
3381 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
3382 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3384 2014-05-09 Anders Carlsson <andersca@apple.com>
3386 Rename WebKit2.framework to WebKit.framework
3387 https://bugs.webkit.org/show_bug.cgi?id=132743
3388 <rdar://problem/15920046>
3390 Reviewed by Dan Bernstein.
3393 Build WebKit.xcodeproj before WebKit2.xcodeproj.
3395 * WebKit.xcworkspace/xcshareddata/xcschemes/:
3398 2014-05-06 David Kilzer <ddkilzer@apple.com>
3400 Add Makefile targets for copying static libraries (LLVM and WKSI)
3401 <http://webkit.org/b/132619>
3403 Reviewed by Mark Rowe.
3406 (MODULES): Add WebKitLibraries.
3408 2014-05-06 Commit Queue <commit-queue@webkit.org>
3410 Unreviewed, rolling out r168304.
3411 https://bugs.webkit.org/show_bug.cgi?id=132607
3413 Broke the build (Requested by KaL on #webkit).
3417 "[GTK][CMake] Unable to do make install"
3418 https://bugs.webkit.org/show_bug.cgi?id=130188
3419 http://trac.webkit.org/changeset/168304
3421 2014-05-05 Martin Robinson <mrobinson@igalia.com>
3423 [GTK][CMake] Unable to do make install
3424 https://bugs.webkit.org/show_bug.cgi?id=130188
3426 Reviewed by Carlos Garcia Campos.
3428 Only try to install the HTML documentation if the build is configured to generate it via
3429 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
3430 to keep the HTML documentation directory as an installation source.
3432 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
3433 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
3434 never added to the default target, but will be triggered by build-webkit, so that
3435 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
3436 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
3438 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3440 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
3441 https://bugs.webkit.org/show_bug.cgi?id=132525
3443 Reviewed by Martin Robinson.
3445 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
3446 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
3447 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
3449 2014-05-01 David Kilzer <ddkilzer@apple.com>
3451 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
3452 <http://webkit.org/b/132432>
3454 Reviewed by Tim Horton.
3456 * Source/cmake/WebKitFeatures.cmake:
3457 * Source/cmakeconfig.h.cmake:
3458 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
3460 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3462 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
3464 Reviewed by Dan Bernstein/Anders Carlsson.
3466 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3467 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3469 2014-04-30 Simon Fraser <simon.fraser@apple.com>
3471 Let Xcode have its way with the WebKit workspace.
3473 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3474 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3476 2014-04-29 Martin Robinson <mrobinson@igalia.com>
3478 [GTK] Make it easier to run CMake for downstreams
3479 https://bugs.webkit.org/show_bug.cgi?id=132370
3481 Reviewed by Carlos Garcia Campos.
3483 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
3485 2014-04-27 Joonghun Park <jh718.park@samsung.com>
3487 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
3488 https://bugs.webkit.org/show_bug.cgi?id=132176
3490 Reviewed by Gyuyoung Kim.
3492 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
3494 * Source/cmake/OptionsEfl.cmake:
3496 2014-04-22 Alex Christensen <achristensen@webkit.org>
3498 Removed old stdbool and inttypes headers.
3499 https://bugs.webkit.org/show_bug.cgi?id=131966
3501 Reviewed by Brent Fulgham.
3503 * Source/cmake/OptionsWindows.cmake:
3504 * Source/cmake/WebKitPackaging.cmake:
3505 Removed references to os-win32 directory.
3507 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
3509 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
3511 Rubber-stamped by Carlos Garcia Campos.
3513 * Source/cmake/WebKitFeatures.cmake:
3515 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
3517 Empty RenderInline objects should not be line break objects.
3519 https://bugs.webkit.org/show_bug.cgi?id=131861
3520 <rdar://problem/15663617>
3522 Reviewed by David Hyatt.
3524 * ManualTests/empty-inline-as-line-break-position.html: Added.
3525 This issue wouldn't reproduce in WebKitTestRunner.
3527 2014-04-19 Brent Fulgham <bfulgham@apple.com>
3529 Revert unintended workspace change in my last commit.
3531 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
3532 Scheme type back to Debug.
3534 2014-04-18 Philippe Normand <pnormand@igalia.com>
3536 Remove NETWORK_INFO support
3537 https://bugs.webkit.org/show_bug.cgi?id=131841
3539 Reviewed by Gyuyoung Kim.
3541 * Source/cmake/OptionsEfl.cmake:
3542 * Source/cmake/OptionsGTK.cmake:
3543 * Source/cmake/WebKitFeatures.cmake:
3544 * Source/cmakeconfig.h.cmake:
3546 2014-04-17 Darin Adler <darin@apple.com>
3548 Try to fix EFL and GTK builds.
3550 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
3551 * Source/cmake/OptionsGTK.cmake: Ditto.
3552 * Source/cmakeconfig.h.cmake: Ditto.
3554 2014-04-16 Brendan Long <b.long@cablelabs.com>
3556 [GTK][CMAKE] build-webkit doesn't detect when the build fails
3557 https://bugs.webkit.org/show_bug.cgi?id=130148
3559 Reviewed by Martin Robinson.
3561 * 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.
3563 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
3565 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
3566 https://bugs.webkit.org/show_bug.cgi?id=131725
3568 Reviewed by Philippe Normand.
3570 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
3571 instead of GTK_UNIX_PRINTING_FOUND and set the macro
3572 HAVE_GTK_UNIX_PRINTING to 1 when found.
3574 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
3576 Web Replay: memoize nondeterministic attributes of the Navigator interface
3577 https://bugs.webkit.org/show_bug.cgi?id=131340
3579 Reviewed by Timothy Hatcher.
3581 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
3583 2014-04-09 Brendan Long <b.long@cablelabs.com>
3585 [GStreamer] Expose MPEG-TS metadata
3586 https://bugs.webkit.org/show_bug.cgi?id=122001
3588 Reviewed by Eric Carlson.
3590 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
3591 * Source/cmake/OptionsEfl.cmake: Same.
3592 * Source/cmake/OptionsGTK.cmake: Same.
3594 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
3596 Web Replay: memoize nondeterministic attributes of the Screen interface
3597 https://bugs.webkit.org/show_bug.cgi?id=131339
3599 Reviewed by Timothy Hatcher.
3601 * ManualTests/inspector/replay-window-screen.html: Added.
3603 2014-04-08 Martin Robinson <mrobinson@igalia.com>
3605 [GTK] Remove the WebKitGTK+ WebKit 1 code
3606 https://bugs.webkit.org/show_bug.cgi?id=131399
3608 Reviewed by Anders Carlsson.
3610 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
3611 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
3613 2014-04-08 Dan Bernstein <mitz@apple.com>
3615 Added bmalloc to the WebKit workspace.
3616 https://bugs.webkit.org/show_bug.cgi?id=131362
3618 Reviewed by Geoff Garen.
3620 * WebKit.xcworkspace/contents.xcworkspacedata:
3621 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3622 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3624 2014-04-08 Geoffrey Garen <ggaren@apple.com>
3626 Build bmalloc on iOS too
3627 https://bugs.webkit.org/show_bug.cgi?id=131381
3629 Reviewed by Andreas Kling.
3631 * Source/Makefile: Build it.
3633 2014-04-07 Geoffrey Garen <ggaren@apple.com>
3635 Build bmalloc on Mac
3636 https://bugs.webkit.org/show_bug.cgi?id=131333
3638 Reviewed by Mark Rowe.
3641 * WebKitBuild: Added.
3642 * WebKitBuild/Debug: Added.
3644 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
3646 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
3647 https://bugs.webkit.org/show_bug.cgi?id=131257
3649 Reviewed by Gyuyoung Kim.
3651 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
3653 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3655 [GTK] Stop trying to install WebKit1 documentation
3656 https://bugs.webkit.org/show_bug.cgi?id=131278
3658 Reviewed by Martin Robinson.
3660 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
3661 built anymore since r166584. This fixes `make install'.
3663 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
3665 Web Replay: capture and replay wheel events and scroll commands
3666 https://bugs.webkit.org/show_bug.cgi?id=129402
3668 Reviewed by Timothy Hatcher.
3670 * ManualTests/inspector/replay-wheel-events.html: Added.
3672 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3674 [GTK][CMake] Remove FindXt.cmake.
3675 https://bugs.webkit.org/show_bug.cgi?id=131227
3677 Reviewed by Anders Carlsson.
3679 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
3681 * Source/cmake/FindXt.cmake: Removed.
3682 * Source/cmake/OptionsGTK.cmake:
3684 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3686 [EFL] Build error due to changed path of generated js files.
3687 https://bugs.webkit.org/show_bug.cgi?id=131215
3689 Reviewed by Gyuyoung Kim.
3691 r166648 fixed the generation of some .js files on GTK. Due to some
3692 changes in the paths it causes a build error on EFL.
3694 * Source/PlatformEfl.cmake:
3695 Replaced path for two derived source files.
3697 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3699 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
3700 https://bugs.webkit.org/show_bug.cgi?id=131095
3702 Reviewed by Martin Robinson.
3704 One needs to take into account OpenGL's include directory found via
3705 find_package() when looking for glx.h, since if the former is a
3706 non-standard location the latter will also be. If this is not it is
3707 possible that OpenGL is found but GLX support is not properly detected.
3709 * Source/cmake/OptionsGTK.cmake:
3711 2014-04-02 Martin Robinson <mrobinson@igalia.com>
3713 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
3714 https://bugs.webkit.org/show_bug.cgi?id=130343
3716 Reviewed by Gustavo Noronha Silva.
3718 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
3720 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
3722 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3724 [CMake] Drop port check from FindEGL.cmake.
3725 https://bugs.webkit.org/show_bug.cgi?id=131091
3727 Reviewed by Gyuyoung Kim.
3729 There is no reason to mark some variables as advanced only for the
3732 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
3733 as advanced regardless of the port.
3735 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
3737 Fix the !ENABLE(BATTERY_STATUS) build
3738 https://bugs.webkit.org/show_bug.cgi?id=130183
3740 Reviewed by Anders Carlsson.
3742 * Source/cmake/OptionsEfl.cmake:
3744 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3746 [CMake][GTK] Do not expand variables twice in if() checks.
3747 https://bugs.webkit.org/show_bug.cgi?id=130964
3749 Reviewed by Martin Robinson.
3751 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
3752 to be checked by the if clause. This is not what we want, and
3753 configuration fails when, say, GLX support wasn't found as the if
3754 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
3756 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
3759 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3761 [GTK] Remove scripts code only applicable to autotools
3762 https://bugs.webkit.org/show_bug.cgi?id=130841
3764 Reviewed by Anders Carlsson.
3766 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
3768 2014-03-31 Martin Robinson <mrobinson@igalia.com>
3770 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
3771 https://bugs.webkit.org/show_bug.cgi?id=130936
3773 Reviewed by Carlos Garcia Campos.
3775 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
3777 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
3779 [GTK] Add support for GTK3 plugins
3780 https://bugs.webkit.org/show_bug.cgi?id=130599
3782 Reviewed by Martin Robinson.
3784 * Source/cmake/OptionsGTK.cmake:
3786 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3788 [EFL] Bump glib version from 2.36 to 2.38
3789 https://bugs.webkit.org/show_bug.cgi?id=130886
3791 Reviewed by Csaba Osztrogonác.
3793 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
3795 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
3797 [CSS Shapes] Remove shape-inside support
3798 https://bugs.webkit.org/show_bug.cgi?id=130698
3800 Reviewed by David Hyatt.
3802 * Source/cmake/WebKitFeatures.cmake:
3803 * Source/cmakeconfig.h.cmake:
3805 2014-03-25 Martin Robinson <mrobinson@igalia.com>
3807 [GTK] Remove the autotools build
3808 https://bugs.webkit.org/show_bug.cgi?id=130717
3810 Reviewed by Anders Carlsson.
3812 * .gitignore: Remove references to autotools files.
3813 * GNUmakefile.am: Removed.
3814 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
3815 * Source/autotools/CustomMacros.m4: Removed.
3816 * Source/autotools/FindDependencies.m4: Removed.
3817 * Source/autotools/PrintBuildConfiguration.m4: Removed.
3818 * Source/autotools/ReadCommandLineArguments.m4: Removed.
3819 * Source/autotools/SetupAutoconfHeader.m4: Removed.
3820 * Source/autotools/SetupAutomake.m4: Removed.
3821 * Source/autotools/SetupCompilerFlags.m4: Removed.
3822 * Source/autotools/SetupLibtool.m4: Removed.
3823 * Source/autotools/SetupWebKitFeatures.m4: Removed.
3824 * Source/autotools/Versions.m4: Removed.
3825 * Source/autotools/acinclude.m4: Removed.
3826 * Source/autotools/dolt.m4: Removed.
3827 * Source/autotools/gsettings.m4: Removed.
3828 * Source/cmake/OptionsGTK.cmake:
3829 * autogen.sh: Removed.
3830 * configure.ac: Removed.
3832 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
3834 [EFL] Add ARM64 build support
3835 https://bugs.webkit.org/show_bug.cgi?id=130506
3837 Rubber stamped by Gyuyoung Kim.
3839 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
3841 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
3843 [EFL][WK2] Add NETWORK_PROCESS build option
3844 https://bugs.webkit.org/show_bug.cgi?id=130131
3846 Reviewed by Gyuyoung Kim.
3848 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
3851 * Source/cmake/OptionsEfl.cmake:
3853 2014-03-24 Brian Burg <bburg@apple.com>
3855 Web Replay: capture and replay keyboard events
3856 https://bugs.webkit.org/show_bug.cgi?id=130314
3858 Reviewed by Joseph Pecoraro.
3860 * ManualTests/inspector/replay-keyboard-events.html: Added.