1 2016-09-27 Konstantin Tokarev <annulen@yandex.ru>
3 [cmake] Simplify Clang checks and prepare for compiler ID split
4 https://bugs.webkit.org/show_bug.cgi?id=162609
6 Reviewed by Michael Catanzaro.
8 CMake 3.x introduces separate compiler id for AppleClang, making condition
9 (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") inappropriate as check for
10 any clang version. Introduce COMPILER_IS_CLANG instead, which is also
11 shorter that CMAKE_CXX_COMPILER_ID comparison.
14 * Source/cmake/OptionsCommon.cmake:
15 * Source/cmake/WebKitHelpers.cmake:
16 * Source/cmake/OptionsEfl.cmake: Use CMAKE_COMPILER_IS_GNUCXX instead of
17 !Clang check because this is what was really meant here.
19 2016-09-27 Konstantin Tokarev <annulen@yandex.ru>
21 [cmake] Added COMPILER_IS_GCC_OR_CLANG variable to simplify conditions.
22 https://bugs.webkit.org/show_bug.cgi?id=162605
24 Reviewed by Michael Catanzaro.
27 * Source/cmake/OptionsCommon.cmake:
28 * Source/cmake/WebKitHelpers.cmake:
30 2016-09-26 Daniel Bates <dabates@apple.com>
32 Rename IOS_TEXT_AUTOSIZING to TEXT_AUTOSIZING
33 https://bugs.webkit.org/show_bug.cgi?id=162365
35 Reviewed by Simon Fraser.
37 * Source/cmake/OptionsMac.cmake:
38 * Source/cmake/WebKitFeatures.cmake: Substitute ENABLE_TEXT_AUTOSIZING for ENABLE_IOS_TEXT_AUTOSIZING,
39 update the description of this feature to better describe what it does and re-order the define in the
40 list of defines such that it is in sorted order.
42 2016-09-26 Konstantin Tokarev <annulen@yandex.ru>
44 [cmake] Added an option to disable thin archives when they are undesirable.
45 https://bugs.webkit.org/show_bug.cgi?id=162561
47 Reviewed by Michael Catanzaro.
49 * Source/cmake/OptionsCommon.cmake: Added USE_THIN_ARCHIVES option.
51 2016-09-23 Caitlin Potter <caitp@igalia.com>
53 [JSC] Implement parsing of Async Functions
54 https://bugs.webkit.org/show_bug.cgi?id=161409
56 Reviewed by Yusuke Suzuki.
58 * Source/cmake/WebKitFeatures.cmake:
60 2016-09-22 Daniel Bates <dabates@apple.com>
62 Remove more ENABLE(TEXT_AUTOSIZING) code
63 https://bugs.webkit.org/show_bug.cgi?id=162456
65 Reviewed by Simon Fraser.
67 * Source/cmake/tools/vsprops/FeatureDefines.props:
68 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
70 2016-09-20 Don Olmstead <don.olmstead@am.sony.com>
72 [WinCairo] Use find_package cairo in build
73 https://bugs.webkit.org/show_bug.cgi?id=162239
75 Reviewed by Alex Christensen.
77 * Source/cmake/FindCairo.cmake:
78 * Source/cmake/OptionsWinCairo.cmake:
80 2016-09-19 Daniel Bates <dabates@apple.com>
82 Remove ENABLE(TEXT_AUTOSIZING) automatic text size adjustment code
83 https://bugs.webkit.org/show_bug.cgi?id=162167
85 Reviewed by Simon Fraser.
87 * Source/cmake/OptionsMac.cmake:
88 * Source/cmake/OptionsWin.cmake:
89 * Source/cmake/WebKitFeatures.cmake:
91 2016-09-19 Michael Catanzaro <mcatanzaro@igalia.com>
93 [GTK] Make ENABLE_THREADED_COMPOSITOR a public option
94 https://bugs.webkit.org/show_bug.cgi?id=162148
96 Reviewed by Carlos Garcia Campos.
98 * Source/cmake/OptionsGTK.cmake:
100 2016-09-18 Gyuyoung Kim <gyuyoung.kim@navercorp.com>
102 [EFL] Bump efl library to 1.18.1
103 https://bugs.webkit.org/show_bug.cgi?id=162120
105 Reviewed by Michael Catanzaro.
107 * Source/cmake/OptionsEfl.cmake: Use efl-1.18.1 instead of 1.18.
109 2016-09-16 Carlos Garcia Campos <cgarcia@igalia.com>
111 [CMake] Build broken with current debian testing
112 https://bugs.webkit.org/show_bug.cgi?id=162054
114 Reviewed by Žan Doberšek.
116 Building WTR bindings is broken now in Debian testing. The reason is that '.' is no longer included in @INC for
117 perl, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=588017 and
118 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1238.
120 * Source/cmake/WebKitMacros.cmake(GENERATE_BINDINGS): Pass also the given BASE_DIR to perl executable so that it
121 can find modules in the current directory even if '.' is not in @INC. Also include generators in BASE_DIR to the
122 list of dependencies.
124 2016-09-15 Fujii Hironori <Hironori.Fujii@sony.com>
126 [CMake] Refactor GENERATE_BINDINGS
127 https://bugs.webkit.org/show_bug.cgi?id=161854
129 Reviewed by Gyuyoung Kim.
131 * Source/cmake/WebKitMacros.cmake(GENERATE_BINDINGS): Use
132 CMakeParseArguments for argument parsing. Defined as a function
133 instread of a macro because function has its own variable scope.
134 Wrapped both preprocess-idls.pl and generate-bindings.pl scripts.
135 Downcased local variables COMMON_GENERATOR_DEPENDENCIES and
136 BINDING_GENERATOR. Generate idl_files.tmp. Removed arguments
137 _prefix and _extension because they are always JS and cpp now.
139 2016-09-08 Carlos Alberto Lopez Perez <clopez@igalia.com>
141 [CMake] Build failure with GCC 6 (fatal error: stdlib.h: No such file or directory)
142 https://bugs.webkit.org/show_bug.cgi?id=161697
144 Reviewed by Michael Catanzaro.
146 Get the list of system includes from GCC and add it to the CMake
147 list of implicit includes. This way, CMake will filter any of this
148 directories from the list of includes when calling the compiler.
150 This avoids an issue with GCC 6 that causes build failures when
151 including the default include path as a system include (-isystem).
153 * Source/cmake/OptionsCommon.cmake:
155 2016-09-07 Michael Catanzaro <mcatanzaro@igalia.com>
157 [EFL] Switch to ENABLE_NETWORK_CACHE
158 https://bugs.webkit.org/show_bug.cgi?id=152676
160 Reviewed by Alex Christensen.
162 Build with -Wno-error=missing-field-initializers to avoid spurious build failures.
164 * Source/cmake/OptionsEfl.cmake:
166 2016-09-07 Youenn Fablet <youenn@apple.com>
168 [Streams API] Separate compile flag for ReadableStream and WritableStream
169 https://bugs.webkit.org/show_bug.cgi?id=161044
171 Reviewed by Alex Christensen.
173 Moving from STREAMS_API to READABLESTREAM_API and WRITABLESTREAM_API compilation flags.
175 * Source/cmake/OptionsWin.cmake:
176 * Source/cmake/WebKitFeatures.cmake:
177 * Source/cmake/tools/vsprops/FeatureDefines.props:
179 2016-09-06 Fujii Hironori <Hironori.Fujii@sony.com>
181 [CMake] Decouple generating bindings of WebCore and WebCoreTestSupport
182 https://bugs.webkit.org/show_bug.cgi?id=161474
184 Generating bindings of WebCore and WebCoreTestSupport shares a
185 single supplementalDependencyFile. But, nothing supplements any
186 IDL of WebCoreTestSupport. This introduces unnecessary
189 Reviewed by Alex Christensen.
191 * Source/cmake/WebKitMacros.cmake:
192 (GENERATE_BINDINGS): Clear uninitialized variables before
193 use. This causes a problem in the second time of calling
196 2016-09-04 Commit Queue <commit-queue@webkit.org>
198 Unreviewed, rolling out r205415.
199 https://bugs.webkit.org/show_bug.cgi?id=161573
201 Many bots see inspector test failures, rolling out now and
202 investigating later. (Requested by brrian on #webkit).
206 "Web Inspector: unify Main.html and Test.html sources and
207 generate different copies with the preprocessor"
208 https://bugs.webkit.org/show_bug.cgi?id=161212
209 http://trac.webkit.org/changeset/205415
211 2016-09-01 Brian Burg <bburg@apple.com>
213 Web Inspector: unify Main.html and Test.html sources and generate different copies with the preprocessor
214 https://bugs.webkit.org/show_bug.cgi?id=161212
215 <rdar://problem/28017961>
217 Reviewed by Joseph Pecoraro.
219 Rearrange some CMake rules so most Inspector UI work is done in WebInspectorUI.
221 * Source/CMakeLists.txt: Add 'WebInspectorUI' subdirectory.
222 * Source/PlatformEfl.cmake:
223 - Move the rule to copy InspectorBackendCommands.js into WebInspectorUI/CMakeLists.txt.
224 - Add a FIXME to use the cross-port list of Inspector resources instead of copying everything.
225 - Add new dependency so generated WebInspectorUI files are made by web-inspector-resources.
226 - Copy over generated files Main.html and Test.html.
228 * Source/PlatformWin.cmake:
229 - Add a FIXME to use the cross-port list of Inspector resources instead of copying everything.
230 - Add new dependency so generated WebInspectorUI files are made by web-inspector-resources.
231 - Copy over generated files Main.html and Test.html.
233 * Source/cmake/WebKitFS.cmake:
234 - Set up WEBINSPECTORUI_DIR and use it.
235 - Move directory creation commands here from JavaScriptCore.
237 * Source/cmake/WebKitMacros.cmake:
238 Add a helper to turn a CMake list into a space-delimited string of elements.
240 2016-09-01 Brian Burg <bburg@apple.com>
242 Update root .gitignore for latest WebKitLibraries
243 https://bugs.webkit.org/show_bug.cgi?id=161501
245 Reviewed by Alex Christensen.
249 2016-08-31 Carlos Garcia Campos <cgarcia@igalia.com>
251 [GTK] Move GObject DOM bindings to WebKit2 layer and stop auto generating them
252 https://bugs.webkit.org/show_bug.cgi?id=161438
254 Reviewed by Michael Catanzaro.
256 * Source/PlatformGTK.cmake:
257 * Source/cmake/OptionsGTK.cmake:
259 2016-08-31 Carlos Garcia Campos <cgarcia@igalia.com>
261 Unreviewed. Bump GTK+ versions numbers.
263 * Source/cmake/OptionsGTK.cmake:
265 2016-08-30 Philippe Normand <pnormand@igalia.com>
267 [GStreamer] bump required version to 1.2.3
268 https://bugs.webkit.org/show_bug.cgi?id=159667
270 Reviewed by Xabier Rodriguez Calvar.
272 * Source/cmake/OptionsEfl.cmake:
273 * Source/cmake/OptionsGTK.cmake:
275 2016-08-29 Per Arne Vollan <pvollan@apple.com>
277 Attempt to fix WinCairo build after r205090.
279 Unreviewed build fix.
281 * Source/cmake/OptionsAppleWin.cmake:
282 * Source/cmake/OptionsWin.cmake:
284 2016-08-27 Per Arne Vollan <pvollan@apple.com>
286 [Win] Enable 'warning as error' compiler setting.
287 https://bugs.webkit.org/show_bug.cgi?id=161243
289 Reviewed by Darin Adler.
291 * Source/cmake/OptionsWin.cmake:
293 2016-08-26 Jer Noble <jer.noble@apple.com>
295 Add a test harness for running UI tests on the iOS Simulator
296 https://bugs.webkit.org/show_bug.cgi?id=161265
298 Add the new MobileMiniBrowser project to the WebKit workspace.
300 Reviewed by Simon Fraser.
302 * WebKit.xcworkspace/contents.xcworkspacedata:
304 2016-08-24 Alexey Proskuryakov <ap@apple.com>
306 Add svn:global-ignores to the root to ignore *.pyc files everythere in the repository.
308 * .: Added property svn:global-ignores.
310 2016-08-19 Dean Jackson <dino@apple.com>
312 Implement preferLowPowerToHighPerformance for WebGL
313 https://bugs.webkit.org/show_bug.cgi?id=161017
314 <rdar://problem/26819135>
316 Reviewed by Myles Maxfield.
318 A manual test that creates contexts with and without preferLowPowerToHighPerformance
319 to see what is used. This has to be manual because it depends on the hardware
320 configuration, and we don't have a way to detect it up-front. Also, if the
321 code was failing, it would be the same result as on a single GPU system.
323 * ManualTests/webgl-preferLowPowerToHighPerformance.html: Added.
325 2016-08-19 Per Arne Vollan <pvollan@apple.com>
328 https://bugs.webkit.org/show_bug.cgi?id=160994
330 Reviewed by Anders Carlsson.
332 Ignore warning when function declared with __declspec(noreturn) has non void return type.
334 * Source/cmake/OptionsWin.cmake:
336 2016-08-17 Don Olmstead <don.olmstead@am.sony.com>
338 Use find_library within Windows build
339 https://bugs.webkit.org/show_bug.cgi?id=160904
341 Reviewed by Brent Fulgham.
343 * Source/cmake/FindICU.cmake:
344 * Source/cmake/OptionsWin.cmake:
346 2016-08-17 Gyuyoung Kim <gyuyoung.kim@navercorp.com>
348 [EFL] Bump efl version from 1.17 to 1.18
349 https://bugs.webkit.org/show_bug.cgi?id=160899
351 Reviewed by Antonio Gomes.
353 * Source/cmake/OptionsEfl.cmake: Update ewebkit version to 1.18.0.
355 2016-08-04 Csaba Osztrogonác <ossy@webkit.org>
357 [Mac][cmake] Fix the build after Objective-C bindings generator removal
358 https://bugs.webkit.org/show_bug.cgi?id=160545
360 Reviewed by Alex Christensen.
362 * Source/cmake/WebKitMacros.cmake:
364 2016-08-03 Csaba Osztrogonác <ossy@webkit.org>
366 Lacking support on a arm-traditional disassembler.
367 https://bugs.webkit.org/show_bug.cgi?id=123717
369 Reviewed by Mark Lam.
371 * Source/cmake/FindLLVM.cmake: Added back the r196749 state.
372 * Source/cmake/OptionsCommon.cmake: Added back the r196749 state.
374 2016-08-01 Keith Miller <keith_miller@apple.com>
376 We should not keep the JavaScript tests inside the Source/JavaScriptCore/ directory.
377 https://bugs.webkit.org/show_bug.cgi?id=160372
379 Rubber stamped by Geoffrey Garen.
381 This patch moves all the JavaScript tests from Source/JavaScriptCore/tests to
382 a new top level directory, JSTests. Having the tests in the Source directory
383 was both confusing and inconvenient for people that just want to checkout the
384 source code of WebKit. Since there is no other obvious place to put all the
385 JavaScript tests a new top level directory seemed the most sensible.
387 * JSTests/: Copied from Source/JavaScriptCore/tests.
388 * Source/JavaScriptCore/tests/: Deleted.
389 * Scripts/import-test262-tests:
390 * Scripts/run-javascriptcore-tests:
391 * Scripts/update-javascriptcore-test-res:
394 2016-07-27 Carlos Garcia Campos <cgarcia@igalia.com>
396 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.13.4 release.
398 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
400 2016-07-22 Carlos Garcia Campos <cgarcia@igalia.com>
402 [GTK] Enable threaded compositor by default
403 https://bugs.webkit.org/show_bug.cgi?id=160079
405 Reviewed by Žan Doberšek.
407 * Source/cmake/OptionsGTK.cmake:
409 2016-07-20 Csaba Osztrogonác <ossy@webkit.org>
411 JSC JIT Broken on ARMv7 Traditional (without Thumb2)
412 https://bugs.webkit.org/show_bug.cgi?id=159880
414 Reviewed by Carlos Garcia Campos.
416 * Source/cmake/OptionsCommon.cmake: Use the BFD linker on ARM traditional because of a gold linker bug.
418 2016-07-18 Alexey Proskuryakov <ap@apple.com>
420 "make ARCHS=x86_64" fails to build
421 https://bugs.webkit.org/show_bug.cgi?id=159867
423 Reviewed by Dan Bernstein.
425 * Makefile.shared: Override VALID_ARCHS when ARCHS is set, so that even projects
426 that normally customize VALID_ARCHS wouldn't fail to build.
428 2016-07-18 Carlos Garcia Campos <cgarcia@igalia.com>
430 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.13.3 release.
432 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
434 2016-07-13 Per Arne Vollan <pvollan@apple.com>
436 [Win] DLLs are missing version information.
437 https://bugs.webkit.org/show_bug.cgi?id=159349
439 Reviewed by Alex Christensen.
441 Avoid using environment variable WEBKIT_LIBRARIES when finding version stamper utility,
442 in case it is not defined. Instead, use the location of the perl script to find the
445 * Source/cmake/tools/scripts/version-stamp.pl:
447 2016-07-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
449 Remove ENABLE_CSS3_TEXT_LINE_BREAK flag
450 https://bugs.webkit.org/show_bug.cgi?id=159671
452 Reviewed by Csaba Osztrogonác.
454 ENABLE_CSS3_TEXT_LINE_BREAK feature was implemented without guards.
455 https://bugs.webkit.org/show_bug.cgi?id=89235
457 So this guard can be removed in build scripts.
459 * Source/cmake/OptionsMac.cmake:
460 * Source/cmake/WebKitFeatures.cmake:
462 2016-07-12 Per Arne Vollan <pvollan@apple.com>
464 [Win] DLLs are missing version information.
465 https://bugs.webkit.org/show_bug.cgi?id=159349
467 Reviewed by Brent Fulgham.
469 The version stamping will fail if the target path has forward slashes.
471 * Source/cmake/tools/scripts/version-stamp.pl: Replace forward slashes with backslashes.
473 2016-07-05 Olivier Blin <olivier.blin@softathome.com>
475 ENABLE_MEDIA_SOURCE should depend on ENABLE_VIDEO
476 https://bugs.webkit.org/show_bug.cgi?id=159424
478 Reviewed by Philippe Normand.
480 MEDIA_SOURCE requires VIDEO enabled, since MediaSource needs HTMLMediaElement.
482 * Source/cmake/WebKitFeatures.cmake:
484 2016-07-05 Per Arne Vollan <pvollan@apple.com>
486 [Win] Layout Test http/tests/security/contentSecurityPolicy/source-list-parsing-10.html is failing
487 https://bugs.webkit.org/show_bug.cgi?id=147646
489 Reviewed by Brent Fulgham.
491 Disable CSP_NEXT. We can then use the common expected test results for this test.
493 * Source/cmake/OptionsWin.cmake:
495 2016-07-04 Gyuyoung Kim <gyuyoung.kim@webkit.org>
497 [EFL] Remove mac configuration dependency in WebKit Version definition
498 https://bugs.webkit.org/show_bug.cgi?id=159407
500 Reviewed by Yusuke Suzuki.
502 EFL port has been used Version.xconfig file in WebKit/mac/Configurations.
503 in order to generate WebKitVersion.h file. But it can be simply defined
506 * Source/cmake/OptionsEfl.cmake:
508 2016-07-03 Dan Bernstein <mitz@apple.com>
510 [Xcode] With default verbosity, make(1) output no longer hides environment variable listings
511 https://bugs.webkit.org/show_bug.cgi?id=159392
513 Reviewed by Alexey Proskuryakov.
515 * Makefile.shared: Pass the -hideShellScriptEnvironment option to xcodebuild instead of
516 piping its output through an ineffective "grep -v setenv",
518 2016-07-01 Konstantin Tokarev <annulen@yandex.ru>
520 [cmake] Make LEGACY_WEB_AUDIO depend on WEB_AUDIO.
521 https://bugs.webkit.org/show_bug.cgi?id=159338
523 Reviewed by Michael Catanzaro.
525 Enabling LEGACY_WEB_AUDIO makes no sense when WEB_AUDIO is
528 * Source/cmake/WebKitFeatures.cmake:
530 2016-06-28 Per Arne Vollan <pvollan@apple.com>
532 [Win] Custom elements tests are failing.
533 https://bugs.webkit.org/show_bug.cgi?id=159139
535 Reviewed by Alex Christensen.
537 Enable custom element API on Windows.
539 * Source/cmake/OptionsWin.cmake:
541 2016-06-23 Carlos Garcia Campos <cgarcia@igalia.com>
543 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.13.2 release.
545 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
547 2016-06-15 Romain Bellessort <romain.bellessort@crf.canon.fr>
549 Enabling Shadow DOM for all platforms
550 https://bugs.webkit.org/show_bug.cgi?id=158738
552 Reviewed by Ryosuke Niwa.
554 Removed Shadow DOM from options (enabled by default)
556 * Source/cmake/OptionsEfl.cmake:
557 * Source/cmake/OptionsGTK.cmake:
558 * Source/cmake/OptionsWin.cmake:
559 * Source/cmake/WebKitFeatures.cmake:
560 * Source/cmake/tools/vsprops/FeatureDefines.props:
561 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
563 2016-06-13 Romain Bellessort <romain.bellessort@crf.canon.fr>
565 [GTK] Enabling Shadow DOM by default
566 https://bugs.webkit.org/show_bug.cgi?id=158686
568 Reviewed by Carlos Garcia Campos.
570 Added support for enabling Shadow DOM by default for GTK.
572 * Source/cmake/OptionsGTK.cmake:
574 2016-06-09 Michael Catanzaro <mcatanzaro@igalia.com>
576 Add comments to clarify feature enablement
577 https://bugs.webkit.org/show_bug.cgi?id=158567
579 Reviewed by Alex Christensen.
581 * Source/cmake/WebKitFeatures.cmake:
583 2016-06-08 Per Arne Vollan <pvollan@apple.com>
585 [Win] Shadow DOM tests are failing.
586 https://bugs.webkit.org/show_bug.cgi?id=158524
588 Reviewed by Brent Fulgham.
592 * Source/cmake/OptionsWin.cmake:
594 2016-06-07 Carlos Garcia Campos <cgarcia@igalia.com>
596 [GTK] Enable IndexedDB in workers
597 https://bugs.webkit.org/show_bug.cgi?id=158475
599 Reviewed by Antonio Gomes.
601 This is working now and many tests are failing only because we don't enable it.
603 * Source/cmake/OptionsGTK.cmake:
605 2016-06-06 Gyuyoung Kim <gyuyoung.kim@webkit.org>
607 [EFL] Update ewebkit minor version
608 https://bugs.webkit.org/show_bug.cgi?id=158409
610 Reviewed by Csaba Osztrogonác.
612 EWebKit has used efl 1.17 version though, it still is stopped at version 1.14.
614 * Source/cmake/OptionsEfl.cmake: Bump minor version to 1.17.
616 2016-06-05 Gyuyoung Kim <gyuyoung.kim@webkit.org>
618 [EFL] Sync EFL features with featureList.pm
619 https://bugs.webkit.org/show_bug.cgi?id=158410
621 Reviewed by Antonio Gomes.
623 In OptionsEfl, some features on/off status are different with
624 featureList.pm definitions. Sync with it.
626 * Source/cmake/OptionsEfl.cmake:
628 2016-06-03 Per Arne Vollan <pvollan@apple.com>
630 [Win] IndexedDB worker tests are failing.
631 https://bugs.webkit.org/show_bug.cgi?id=158341
633 Reviewed by Alex Christensen.
635 Enable IndexedDB in workers.
637 * Source/cmake/OptionsWin.cmake:
639 2016-05-31 Carlos Garcia Campos <cgarcia@igalia.com>
641 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.13.1 release.
643 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
645 2016-05-28 Ryosuke Niwa <rniwa@webkit.org>
647 Autocorrection makes it hard to type "doesn't" and to type @ in email addresses
648 https://bugs.webkit.org/show_bug.cgi?id=158177
650 Reviewed by Darin Adler.
652 Fixed manual tests for autocorrection panels and added a manual test for . Most of changes are fixing up the path to LayoutTests/editing/editing.js.
654 Also wrap many steps to type in a space or delete a character inside setTimeout since autocorrection happens on a timer
655 and the fact WebKit2 communicates with NSSpellChecker via IPC makes the behavior even more indeterministic.
657 * ManualTests/autocorrection/autocorrection-at-mark.html: Added.
658 * ManualTests/autocorrection/autocorrection-cancelled-by-ESC.html:
659 * ManualTests/autocorrection/autocorrection-cancelled-by-typing-1.html:
660 * ManualTests/autocorrection/autocorrection-contraction-2.html: Added.
661 * ManualTests/autocorrection/autocorrection-contraction.html:
662 * ManualTests/autocorrection/autocorrection-in-iframe.html:
663 * ManualTests/autocorrection/close-window-when-correction-is-shown.html:
664 * ManualTests/autocorrection/continue-typing-to-dismiss-reversion.html:
665 * ManualTests/autocorrection/delete-to-dismiss-reversion.html:
666 * ManualTests/autocorrection/delete-to-end-of-word-to-show-reversion.html:
667 * ManualTests/autocorrection/dismiss-multiple-guesses.html:
668 * ManualTests/autocorrection/document-for-iframe-test.html: Removed.
669 * ManualTests/autocorrection/move-to-end-of-word-to-show-reversion.html: Type a space and move care in setTimeout as
670 the reversion panel wouldn't show up otherwise.
671 * ManualTests/autocorrection/remove-misspelling-marker-after-appending-letter.html: Delay the typing of a space as well as
672 deleting letters since autocorrection panel wouldn't show up in time otherwise, and deleting character immediately would
673 reject the autocorrection instead of accepting it. Also removed the steps to add back the spellchecking marker and extracted
674 it as a separate test.
675 * ManualTests/autocorrection/removing-misspelling-marker-after-appending-letter-2.html: Copied. This test continues the full
676 scenario in the previous test by typing a space and deleting the character, thereby bringing up spellchecking marker.
677 * ManualTests/autocorrection/resources: Added.
678 * ManualTests/autocorrection/resources/document-for-iframe-test.html: Moved from ManualTests/autocorrection/.
679 * ManualTests/autocorrection/select-from-multiple-guesses.html: Added a missing instruction.
680 * ManualTests/autocorrection/spell-checking-after-reversion.html:
681 * ManualTests/autocorrection/type-whitespace-to-dismiss-reversion.html: Delay the typing of a space and moving the selection
682 since the reversion panel wouldn't show up otherwise.
683 * ManualTests/autocorrection/undo-autocorrection-2.html: Copied. Automated most of steps in the second test case.
684 * ManualTests/autocorrection/undo-autocorrection.html:
686 2016-05-25 Konstantin Tokarev <annulen@yandex.ru>
688 [cmake] Deduplicate make-js-file-arrays usage and make it work on Windows.
689 https://bugs.webkit.org/show_bug.cgi?id=157997
691 Reviewed by Alex Christensen.
693 * Source/cmake/WebKitMacros.cmake: Added MAKE_JS_FILE_ARRAYS macro.
695 2016-05-25 Manuel Rego Casasnovas <rego@igalia.com>
697 [css-grid] Turn on ENABLE_CSS_GRID_LAYOUT by default
698 https://bugs.webkit.org/show_bug.cgi?id=158060
700 Reviewed by Darin Adler.
702 The runtime flag is disabled by default,
703 but we want to build CSS Grid Layout by default.
704 Otherwise the runtime flag would be useless.
706 * Source/cmake/WebKitFeatures.cmake:
708 2016-05-22 Brady Eidson <beidson@apple.com>
711 https://bugs.webkit.org/show_bug.cgi?id=157948
713 Reviewed by Michael Catanzaro.
715 * Source/cmake/OptionsCommon.cmake:
717 2016-05-22 Csaba Osztrogonác <ossy@webkit.org>
719 Suppress -Wmissing-field-initializers warnings with GCC 4.9
720 https://bugs.webkit.org/show_bug.cgi?id=157888
722 Reviewed by Michael Catanzaro.
724 * Source/cmake/WebKitHelpers.cmake:
726 2016-05-20 Joseph Pecoraro <pecoraro@apple.com>
728 Remove LegacyProfiler
729 https://bugs.webkit.org/show_bug.cgi?id=153565
731 Reviewed by Saam Barati.
733 * ManualTests/inspector/profiler-test-call.html: Removed.
734 * ManualTests/inspector/profiler-test-many-calls-in-the-same-scope.html: Removed.
736 2016-05-18 Gwang Yoon Hwang <yoon@igalia.com>
738 [GStreamer] Use FakeSink to get a decoded texture from a pipeline
739 https://bugs.webkit.org/show_bug.cgi?id=153641
741 Reviewed by Philippe Normand.
743 * Source/cmake/FindGStreamer.cmake: Bump gst-gl version to 1.8.0
745 2016-05-17 Dean Jackson <dino@apple.com>
747 Remove ES6_GENERATORS flag
748 https://bugs.webkit.org/show_bug.cgi?id=157815
749 <rdar://problem/26332894>
751 Reviewed by Geoffrey Garen.
753 This flag isn't needed. Generators are enabled everywhere and
754 part of a stable specification.
756 * Source/cmake/OptionsWin.cmake:
757 * Source/cmake/WebKitFeatures.cmake:
758 * Source/cmake/tools/vsprops/FeatureDefines.props:
759 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
761 2016-05-16 Joseph Pecoraro <pecoraro@apple.com>
763 Unreviewed rollout r200924. Caused js/regress/string-replace-generic.html to fail.
765 * ManualTests/inspector/profiler-test-call.html: Added.
766 * ManualTests/inspector/profiler-test-many-calls-in-the-same-scope.html: Added.
768 2016-05-14 Joseph Pecoraro <pecoraro@apple.com>
770 Remove LegacyProfiler
771 https://bugs.webkit.org/show_bug.cgi?id=153565
773 Reviewed by Mark Lam.
775 * ManualTests/inspector/profiler-test-call.html: Removed.
776 * ManualTests/inspector/profiler-test-many-calls-in-the-same-scope.html: Removed.
778 2016-05-13 Yoav Weiss <yoav@yoav.ws>
780 Turn on WEB_TIMING for all ports
781 https://bugs.webkit.org/show_bug.cgi?id=157673
783 Reviewed by Alex Christensen.
785 Turn on WEB_TIMING by default on the cmake Mac port, to match it with all other ports,
786 and make sure that the flag will be on by default for all ports.
788 * Source/cmake/OptionsGTK.cmake: Remove the specific private flag for WEB_TIMING.
789 * Source/cmake/OptionsMac.cmake: Remove the specific private flag for WEB_TIMING.
790 * Source/cmake/WebKitFeatures.cmake: Turn on WEB_TIMING for all ports by default.
792 2016-05-12 Csaba Osztrogonác <ossy@webkit.org>
794 Remove ENABLE(ES6_ARROWFUNCTION_SYNTAX) guards
795 https://bugs.webkit.org/show_bug.cgi?id=157564
797 Reviewed by Darin Adler.
799 * Source/cmake/WebKitFeatures.cmake:
801 2016-05-10 Michael Catanzaro <mcatanzaro@igalia.com>
803 [Linux] Remove seccomp filters support
804 https://bugs.webkit.org/show_bug.cgi?id=157380
806 Reviewed by Darin Adler.
808 * Source/cmake/FindLibSeccomp.cmake: Removed.
809 * Source/cmake/OptionsEfl.cmake:
810 * Source/cmake/OptionsGTK.cmake:
811 * Source/cmake/WebKitFeatures.cmake:
813 2016-05-06 Manuel Rego Casasnovas <rego@igalia.com>
815 [css-grid] Unprefix CSS Grid Layout properties
816 https://bugs.webkit.org/show_bug.cgi?id=157137
818 Reviewed by Simon Fraser.
820 Remove "-webkit" prefix from all the grid layout properties,
821 including the display value.
822 Update the source code to remove the prefix where it was used too.
824 * ManualTests/css-grid-layout-item-with-huge-span-crash.html:
826 2016-05-02 Per Arne Vollan <peavo@outlook.com>
828 [Win] Enable IndexedDB.
829 https://bugs.webkit.org/show_bug.cgi?id=157192
831 Reviewed by Brent Fulgham.
833 * Source/cmake/OptionsWin.cmake:
835 2016-05-02 Yoav Weiss <yoav@yoav.ws>
837 Move ResourceTiming behind a runtime flag
838 https://bugs.webkit.org/show_bug.cgi?id=157133
840 Reviewed by Alex Christensen.
842 * Source/cmake/WebKitFeatures.cmake: Remove the PERFORMANCE_TIMELINE build flag.
844 2016-04-29 Commit Queue <commit-queue@webkit.org>
846 Unreviewed, rolling out r200232.
847 https://bugs.webkit.org/show_bug.cgi?id=157189
849 This change broke the Mac CMake build and its LayoutTest is
850 failing and/or flaky on all platforms (Requested by ryanhaddad
855 "Move ResourceTiming behind a runtime flag"
856 https://bugs.webkit.org/show_bug.cgi?id=157133
857 http://trac.webkit.org/changeset/200232
859 2016-04-29 Yoav Weiss <yoav@yoav.ws>
861 Move ResourceTiming behind a runtime flag
862 https://bugs.webkit.org/show_bug.cgi?id=157133
864 Reviewed by Alex Christensen.
866 * Source/cmake/WebKitFeatures.cmake: Remove the PERFORMANCE_TIMELINE build flag.
868 2016-04-28 Commit Queue <commit-queue@webkit.org>
870 Unreviewed, rolling out r200185.
871 https://bugs.webkit.org/show_bug.cgi?id=157131
873 Bad temporary file added unintentionally (Requested by fredw
878 "RenderMathMLOperator refactoring: introduce getBaseGlyph and
879 remove parameter from getDisplayStyleLargeOperator"
880 https://bugs.webkit.org/show_bug.cgi?id=156910
881 http://trac.webkit.org/changeset/200185
883 2016-04-25 Ryosuke Niwa <rniwa@webkit.org>
885 Remove the build flag for template elements
886 https://bugs.webkit.org/show_bug.cgi?id=157022
888 Reviewed by Daniel Bates.
890 * Source/cmake/OptionsEfl.cmake:
891 * Source/cmake/OptionsMac.cmake:
892 * Source/cmake/OptionsWin.cmake:
893 * Source/cmake/WebKitFeatures.cmake:
894 * Source/cmake/tools/vsprops/FeatureDefines.props:
895 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
897 2016-04-22 Carlos Garcia Campos <cgarcia@igalia.com>
899 [GTK] Enable the download attribute support
900 https://bugs.webkit.org/show_bug.cgi?id=99025
902 Reviewed by Žan Doberšek.
904 * Source/cmake/OptionsGTK.cmake:
906 2016-04-18 Yusuke Suzuki <utatane.tea@gmail.com>
908 [JSCOnly] Implement RunLoop and remove glib dependency
909 https://bugs.webkit.org/show_bug.cgi?id=155706
911 Reviewed by Michael Catanzaro.
913 * Source/cmake/OptionsJSCOnly.cmake:
915 2016-04-18 Carlos Garcia Campos <cgarcia@igalia.com>
917 [GTK] Menu list button doesn't use the text color from the theme
918 https://bugs.webkit.org/show_bug.cgi?id=118234
920 Reviewed by Darin Adler.
922 * ManualTests/gtk/theme.html: Add a disabled combo test.
924 2016-04-13 Konstantin Tokarev <annulen@yandex.ru>
926 FindWebP should not be misguided by pkg-config when cross-compiling.
927 https://bugs.webkit.org/show_bug.cgi?id=156544
929 Reviewed by Michael Catanzaro.
931 We should use pkg-config output only as a hint, like other modules do.
933 * Source/cmake/FindWebP.cmake:
935 2016-04-07 Carlos Garcia Campos <cgarcia@igalia.com>
937 [GTK] Rework the theming code for GTK+ 3.20
938 https://bugs.webkit.org/show_bug.cgi?id=156333
940 Reviewed by Michael Catanzaro.
942 Add a manual test to check how themed elements are rendered.
944 * ManualTests/gtk/theme.html: Added.
946 2016-04-11 Fujii Hironori <Hironori.Fujii@jp.sony.com>
948 [CMake] Make FOLDER property INHERITED
949 https://bugs.webkit.org/show_bug.cgi?id=156460
951 Reviewed by Brent Fulgham.
953 Some CMake targets are not setting the FOLDER property. This causes the
954 generated projects to be displayed in the top-level folder of the solution.
956 Making the FOLDER property INHERITED ensures that all the targets
957 are placed in their proper directories.
959 * Source/cmake/OptionsCommon.cmake:
960 Define FOLDER property as a inherited property.
961 * Source/cmake/WebKitMacros.cmake:
962 Do not set FOLDER target property.
964 2016-04-08 Alex Christensen <achristensen@webkit.org>
966 Progress towards running CMake WebKit2 on Mac
967 https://bugs.webkit.org/show_bug.cgi?id=156426
969 Reviewed by Tim Horton.
971 * Source/cmake/OptionsMac.cmake:
972 FTL works on Mac, so let's use it.
973 * Source/cmake/WebKitMacros.cmake:
975 2016-04-07 Joseph Pecoraro <pecoraro@apple.com>
977 Remove ENABLE(ENABLE_ES6_CLASS_SYNTAX) guards
978 https://bugs.webkit.org/show_bug.cgi?id=156384
980 Reviewed by Ryosuke Niwa.
982 * Source/cmake/WebKitFeatures.cmake:
984 2016-04-07 Dean Jackson <dino@apple.com>
986 [iOS] Play button on video is too dark
987 https://bugs.webkit.org/show_bug.cgi?id=156383
988 <rdar://problem/23540816>
990 Reviewed by Simon Fraser.
992 Add a manual test for iOS that shows the expected appearance
993 of a video element. Unfortunately, due to the way we take
994 snapshots on iOS within our test runner, we don't get the
995 platform blurring effect, which means an automated test
998 * ManualTests/ios/start-playback-button-appearance-expected.html: Added.
999 * ManualTests/ios/start-playback-button-appearance.html: Added.
1001 2016-04-06 Alex Christensen <achristensen@webkit.org>
1003 Fix CMake DumpRenderTree
1004 https://bugs.webkit.org/show_bug.cgi?id=156305
1006 Reviewed by Daniel Bates.
1008 * Source/cmake/OptionsMac.cmake:
1010 2016-04-05 Alex Christensen <achristensen@webkit.org>
1012 Make CMake-generated binaries on Mac able to run
1013 https://bugs.webkit.org/show_bug.cgi?id=156268
1015 Reviewed by Daniel Bates.
1017 * Source/cmake/OptionsMac.cmake:
1019 2016-04-04 Alejandro G. Castro <alex@igalia.com>
1021 REGRESSION(r198492): [GTK] The WEB_RTC flag was not correctly added in some situations
1022 https://bugs.webkit.org/show_bug.cgi?id=156164
1024 Reviewed by Philippe Normand.
1026 Remove double space in the error message when openwebrtc is not present.
1028 * Source/cmake/OptionsGTK.cmake:
1030 2016-04-03 Carlos Garcia Campos <cgarcia@igalia.com>
1032 Unreviewed. Bump GTK+ versions numbers.
1034 * Source/cmake/OptionsGTK.cmake:
1036 2016-03-31 Daniel Bates <dabates@apple.com>
1038 tool tip/alt. text appears when mouse is no longer hovering over link
1039 https://bugs.webkit.org/show_bug.cgi?id=24427
1040 <rdar://problem/8045235>
1042 Reviewed by Antonio Gomes.
1044 Although the bug no longer reproduces, add a manual test that can be used to determine if a
1045 tooltip for a hyperlink is shown when the cursor no longer hovers over it.
1047 * ManualTests/tooltip-when-mouse-not-directly-over-hyperlink.html: Added.
1049 2016-03-29 Commit Queue <commit-queue@webkit.org>
1051 Unreviewed, rolling out r198781.
1052 https://bugs.webkit.org/show_bug.cgi?id=155986
1054 broke windows clean build (Requested by alexchristensen on
1059 "[Win] CMake seems to build all generated files every time"
1060 https://bugs.webkit.org/show_bug.cgi?id=155872
1061 http://trac.webkit.org/changeset/198781
1063 2016-03-29 Brent Fulgham <bfulgham@apple.com>
1065 [Win] CMake seems to build all generated files every time
1066 https://bugs.webkit.org/show_bug.cgi?id=155872
1068 Reviewed by Alex Christensen.
1070 This seems to be caused by Visual Studio being unhappy receiving multiple output targets
1071 for its custom build rules. If I limit the output to just the header file on Windows, the
1072 dependency check seems to do the right thing.
1074 * Source/cmake/WebKitMacros.cmake:
1076 2016-03-28 Alex Christensen <achristensen@webkit.org>
1078 Fix Mac Ninja build after r198766.
1080 * Source/cmake/WebKitMacros.cmake:
1081 WebCore_DERIVED_SOURCES are intentionally in a separate library to reduce linker line length.
1082 This is now only specific to WebKit2_DERIVED_SOURCES, so I'm moving it there.
1084 2016-03-28 Alex Christensen <achristensen@webkit.org>
1086 Fix Windows build after r198766.
1088 * Source/cmake/WebKitMacros.cmake:
1089 Use the filename from the cpp so that WebCorePrefix.cpp and WebCoreDerivedSourcesPrefix.cpp
1090 generate unique .pch files, even though they both include WebCorePrefix.h
1092 2016-03-28 Alex Christensen <achristensen@webkit.org>
1094 Fix Ninja build on Mac
1095 https://bugs.webkit.org/show_bug.cgi?id=151399
1097 Reviewed by Darin Adler.
1099 * Source/CMakeLists.txt:
1100 * Source/cmake/WebKitMacros.cmake:
1102 2016-03-27 Daniel Bates <dabates@apple.com>
1104 WebKit.xcworkspace "All Source" scheme always copies OS X WebKitSystemInterface libraries
1105 https://bugs.webkit.org/show_bug.cgi?id=155889
1107 Reviewed by Alexey Proskuryakov.
1109 Fixes an issue where building the "All Source" scheme in WebKit.xcworkspace would
1110 always copy the OS X WebKitSystemInterface libraries regardless of the selected
1111 base SDK. In particular, it would copy the OS X WebKitSystemInterface libraries
1112 when building with SDK iphonesimulator. WebKit.xcworkspace should copy the SDK-
1113 specific WebKitSystemInterface libraries.
1115 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1117 2016-03-25 Brady Eidson <beidson@apple.com>
1119 Soften push/replaceState frequency restrictions.
1120 <rdar://problem/25228439> and https://bugs.webkit.org/show_bug.cgi?id=155901
1122 Rubber-stamped by Timothy Hatcher.
1124 * ManualTests/state-objects-time-limit.html: Added.
1126 2016-03-25 Daniel Bates <dabates@apple.com>
1128 REGRESSION (r197358): WebKitSystemInterface.h copied into directory named "--llvm"
1129 https://bugs.webkit.org/show_bug.cgi?id=155838
1131 Reviewed by Alexey Proskuryakov.
1133 Do not pass command line flag --llvm when calling script copy-webkitlibraries-to-product-directory
1134 to avoid copying the WebKitSystemInterface libraries to an incorrect location. The --llvm flag was
1135 removed from copy-webkitlibraries-to-product-directory in <http://trac.webkit.org/changeset/197358>.
1137 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1139 2016-03-25 Bill Ming <mbbill@gmail.com>
1141 Detect correct number of processors on windows
1142 https://bugs.webkit.org/show_bug.cgi?id=155884
1144 Reviewed by Alex Christensen.
1146 * Tools/Scripts/run-jsc-stress-tests:
1148 2016-03-25 Brent Fulgham <bfulgham@apple.com>
1150 [Win] Improve CMake build performance
1151 https://bugs.webkit.org/show_bug.cgi?id=155871
1152 <rdar://problem/24747822>
1154 Reviewed by Alex Christensen.
1156 Add a flag to the PROCESS_ALLINONE_FILE macro so that it does not remove
1157 the files contained in the passed all-in-one file, since this breaks
1158 dependency checking and generation of the derived sources from the IDL.
1159 Instead, include the header files in the project so that all files get
1162 * Source/cmake/WebKitMacros: Updated for 'DerivedSources.cpp' use case.
1164 2016-03-25 Konstantin Tokarev <annulen@yandex.ru>
1166 Turned on ENABLE_REQUEST_ANIMATION_FRAME by default for any port.
1167 https://bugs.webkit.org/show_bug.cgi?id=155882
1169 Reviewed by Michael Catanzaro.
1171 It was already enabled in all trunk ports, and is required for
1172 WebInspectorUI to work.
1174 * Source/cmake/OptionsGTK.cmake: Removed duplication of default value.
1175 * Source/cmake/OptionsMac.cmake: Ditto.
1176 * Source/cmake/WebKitFeatures.cmake: Turned
1177 ENABLE_REQUEST_ANIMATION_FRAME ON.
1179 2016-03-24 Bill Ming <mbbill@gmail.com>
1181 Determine architecture for running jsc stress tests on windows
1182 https://bugs.webkit.org/show_bug.cgi?id=155840
1184 Reviewed by Alex Christensen.
1186 * Tools/Scripts/run-jsc-stress-tests:
1188 2016-03-23 Bill Ming <mbbill@gmail.com>
1190 Fixed ninja build path.
1191 https://bugs.webkit.org/show_bug.cgi?id=155796
1193 Reviewed by Alex Christensen.
1195 * Tools/Scripts/build-webkit:
1197 2016-03-21 Eric Carlson <eric.carlson@apple.com>
1199 Add a WebRTC specific compile flag
1200 https://bugs.webkit.org/show_bug.cgi?id=155663
1202 Reviewed by Jer Noble.
1204 * Source/cmake/OptionsEfl.cmake:
1205 * Source/cmake/OptionsGTK.cmake:
1206 * Source/cmake/WebKitFeatures.cmake:
1208 2016-03-18 Yusuke Suzuki <utatane.tea@gmail.com>
1210 Unreviewed, missing SET_AND_EXPOSE_TO_BUILD for USE_UDIS86 in JSCOnly port
1211 https://bugs.webkit.org/show_bug.cgi?id=155628
1213 * Source/cmake/OptionsJSCOnly.cmake:
1215 2016-03-17 Yusuke Suzuki <utatane.tea@gmail.com>
1217 [JSCOnly] Enable udis86
1218 https://bugs.webkit.org/show_bug.cgi?id=155628
1220 Reviewed by Carlos Garcia Campos.
1222 Enable udis86 for disassembler. The current flag name is incorrect.
1224 * Source/cmake/OptionsJSCOnly.cmake:
1226 2016-03-14 Konstantin Tokarev <annulen@yandex.ru>
1228 Restored ENABLE_WEBCORE option and used it in JSCOnly port.
1229 https://bugs.webkit.org/show_bug.cgi?id=155428
1231 Reviewed by Michael Catanzaro.
1233 This is a partial revert of r182624.
1236 * Source/CMakeLists.txt:
1237 * Source/cmake/OptionsJSCOnly.cmake:
1238 * Source/cmake/WebKitFS.cmake:
1240 2016-03-13 Joseph Pecoraro <pecoraro@apple.com>
1242 Remove ENABLE(ES6_TEMPLATE_LITERAL_SYNTAX) guards
1243 https://bugs.webkit.org/show_bug.cgi?id=155417
1245 Reviewed by Yusuke Suzuki.
1247 * Source/cmake/OptionsWin.cmake:
1248 * Source/cmake/WebKitFeatures.cmake:
1249 * Source/cmake/tools/vsprops/FeatureDefines.props:
1250 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
1252 2016-03-13 Konstantin Tokarev <annulen@yandex.ru>
1254 Added new port JSCOnly.
1255 https://bugs.webkit.org/show_bug.cgi?id=154512
1257 Reviewed by Michael Catanzaro.
1259 This port allows to build JavaScriptCore engine with minimal
1263 * Source/cmake/OptionsJSCOnly.cmake: Added.
1265 2016-03-12 Myles C. Maxfield <mmaxfield@apple.com>
1267 Delete dead SVG Font code
1268 https://bugs.webkit.org/show_bug.cgi?id=154718
1270 Reviewed by Antti Koivisto.
1272 * Source/cmake/OptionsEfl.cmake:
1273 * Source/cmake/OptionsWin.cmake:
1274 * Source/cmake/WebKitFeatures.cmake:
1275 * Source/cmake/tools/vsprops/FeatureDefines.props:
1276 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
1278 2016-03-12 Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1280 [GTK][Mac] Don't force ENABLE_INTROSPECTION=OFF on Mac
1281 https://bugs.webkit.org/show_bug.cgi?id=152650
1283 Reviewed by Carlos Garcia Campos.
1285 * Source/cmake/OptionsGTK.cmake:
1287 2016-03-10 Frederic Wang <fwang@igalia.org>
1289 [GTK] Add support for WOFF2
1290 https://bugs.webkit.org/show_bug.cgi?id=152616
1292 Reviewed by Carlos Garcia Campos.
1294 * Source/CMakeLists.txt: Build brotli and woff2 third-party libraries if WOFF2 is enabled.
1295 * Source/cmake/OptionsGTK.cmake: Always enable WOFF2 on GTK.
1297 2016-03-09 Konstantin Tokarev <annulen@yandex.ru>
1299 [cmake] Fixed All-in-One build.
1300 https://bugs.webkit.org/show_bug.cgi?id=155241
1302 Reviewed by Csaba Osztrogonác.
1304 * Source/cmake/WebKitMacros.cmake: Last item of WebCore_SOURCES was
1305 not removed in PROCESS_ALLINONE_FILE.
1307 2016-03-08 Myles C. Maxfield <mmaxfield@apple.com>
1309 [EFL] Enable the SVG -> OTF Font Converter
1310 https://bugs.webkit.org/show_bug.cgi?id=155192
1312 Reviewed by Gyuyoung Kim.
1314 * Source/cmake/OptionsEfl.cmake:
1316 2016-03-08 Myles C. Maxfield <mmaxfield@apple.com>
1318 [GTK] Enable the SVG -> OTF Font Converter
1319 https://bugs.webkit.org/show_bug.cgi?id=155191
1321 Reviewed by Martin Robinson.
1323 * Source/cmake/OptionsGTK.cmake:
1325 2016-03-05 Michael Catanzaro <mcatanzaro@igalia.com>
1327 Unreviewed, fix GTK/EFL build after r197575 and add mandatory GnuTLS dependency
1329 * Source/cmake/OptionsEfl.cmake:
1330 * Source/cmake/OptionsGTK.cmake:
1332 2016-03-02 Konstantin Tokarev <annulen@yandex.ru>
1334 [cmake] Moved PRE/POST_BUILD_COMMAND to WEBKIT_FRAMEWORK.
1335 https://bugs.webkit.org/show_bug.cgi?id=154651
1337 Reviewed by Alex Christensen.
1339 * Source/cmake/WebKitMacros.cmake: Used phony target instead of
1340 CMake's PRE_BUILD COMMAND feature because the latter actually
1341 generates pre-link target instead of pre-build.
1343 2016-03-01 Alex Christensen <achristensen@webkit.org>
1345 Reduce size of internal windows build output
1346 https://bugs.webkit.org/show_bug.cgi?id=154763
1348 Reviewed by Brent Fulgham.
1350 * Source/cmake/OptionsWin.cmake:
1352 2016-03-01 Commit Queue <commit-queue@webkit.org>
1354 Unreviewed, rolling out r197056.
1355 https://bugs.webkit.org/show_bug.cgi?id=154870
1357 broke win ews (Requested by alexchristensen on #webkit).
1361 "[cmake] Moved PRE/POST_BUILD_COMMAND to WEBKIT_FRAMEWORK."
1362 https://bugs.webkit.org/show_bug.cgi?id=154651
1363 http://trac.webkit.org/changeset/197056
1365 2016-02-29 Konstantin Tokarev <annulen@yandex.ru>
1367 [cmake] Allow using FindGLIB in case glib is optional dependency.
1368 https://bugs.webkit.org/show_bug.cgi?id=154796
1370 Reviewed by Michael Catanzaro.
1372 FindGLIB caused internal CMake error in case glibconfig.h is not
1375 * Source/cmake/FindGLIB.cmake:
1377 2016-02-29 Commit Queue <commit-queue@webkit.org>
1379 Unreviewed, rolling out r197297.
1380 https://bugs.webkit.org/show_bug.cgi?id=154810
1382 This change broke build of GTK from scratch (Requested by
1383 annulen on #webkit).
1387 "[cmake] Allow using FindGLIB in case glib is optional
1389 https://bugs.webkit.org/show_bug.cgi?id=154796
1390 http://trac.webkit.org/changeset/197297
1392 2016-02-28 Konstantin Tokarev <annulen@yandex.ru>
1394 [cmake] Allow using FindGLIB in case glib is optional dependency.
1395 https://bugs.webkit.org/show_bug.cgi?id=154796
1397 Reviewed by Michael Catanzaro.
1399 FindGLIB caused internal CMake error in case GLIBCONFIG_INCLUDE_DIR is
1402 * Source/cmake/FindGLIB.cmake:
1404 2016-02-25 Myles C. Maxfield <mmaxfield@apple.com>
1406 [Win] [SVG -> OTF Converter] Support the SVG -> OTF Font Converter
1407 https://bugs.webkit.org/show_bug.cgi?id=143402
1409 Reviewed by Alex Christensen.
1411 Turn on by default, and turn on for Windows.
1413 EFL and GTK already explicitly disable it in OptionsEfl.cmake and OptionsGTK.cmake.
1415 * Source/cmake/OptionsWin.cmake:
1416 * Source/cmake/WebKitFeatures.cmake:
1418 2016-02-24 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
1420 [web-animations] Add AnimationTimeline, DocumentTimeline and add extensions to Document interface
1421 https://bugs.webkit.org/show_bug.cgi?id=151688
1423 Reviewed by Dean Jackson.
1425 Enables the WEB_ANIMATIONS compiler switch.
1427 * Source/cmake/OptionsWin.cmake:
1429 2016-02-24 Konstantin Tokarev <annulen@yandex.ru>
1431 [cmake] Moved PRE/POST_BUILD_COMMAND to WEBKIT_FRAMEWORK.
1432 https://bugs.webkit.org/show_bug.cgi?id=154651
1434 Reviewed by Alex Christensen.
1436 * Source/cmake/WebKitMacros.cmake:
1438 2016-02-22 Konstantin Tokarev <annulen@yandex.ru>
1440 [cmake] Moved library setup code to WEBKIT_FRAMEWORK macro.
1441 https://bugs.webkit.org/show_bug.cgi?id=154450
1443 Reviewed by Alex Christensen.
1445 * Source/cmake/WebKitMacros.cmake:
1447 2016-02-18 Philippe Normand <pnormand@igalia.com>
1449 [GStreamer] Bump internal jhbuild versions to 1.6.3
1450 https://bugs.webkit.org/show_bug.cgi?id=149594
1452 Reviewed by Michael Catanzaro.
1454 * Source/cmake/FindGStreamer.cmake: Check gst-gl version for the latest stable release of GStreamer.
1456 2016-02-18 Anders Carlsson <andersca@apple.com>
1458 Get rid of the "All Source (target WebProcess)" scheme.
1460 Rubber-stamped by Dan Bernstein.
1462 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Removed.
1464 2016-02-18 Michael Catanzaro <mcatanzaro@igalia.com>
1466 [CMake] Remove LLVM support
1467 https://bugs.webkit.org/show_bug.cgi?id=154370
1469 Reviewed by Csaba Osztrogonác.
1471 After switching all CMake ports to B3, this was only needed for the LLVM disassembler, which
1472 has been removed from JSC. Feel free to bring this back if restoring the LLVM disassembler,
1473 but for the time being this is dead code.
1475 * Source/cmake/FindLLVM.cmake: Removed.
1476 * Source/cmake/OptionsCommon.cmake:
1478 2016-02-18 Joonghun Park <jh718.park@samsung.com>
1480 [CMake] Remove meaningless conditional statements in CMakeLists.txt
1481 https://bugs.webkit.org/show_bug.cgi?id=153778
1483 Reviewed by Csaba Osztrogonác.
1486 Use CMAKE_FOO_OUTPUT_DIRECTORY located in CMakeLists.txt as default value.
1487 And remove conditional statements which has enclosed these one
1488 because they don't have meaning anymore.
1490 2016-02-15 Alex Christensen <achristensen@webkit.org>
1492 Re-enable INTL on WinCairo
1493 https://bugs.webkit.org/show_bug.cgi?id=154256
1495 Reviewed by Michael Catanzaro.
1497 * Source/cmake/OptionsWin.cmake:
1498 Peavo updated icu and it works, so let's re-enable INTL on WinCairo to catch Windows build failures.
1500 2016-02-12 Csaba Osztrogonác <ossy@webkit.org>
1502 [EFL][GTK] Fix ENABLE(SVG_OTF_CONVERTER) build
1503 https://bugs.webkit.org/show_bug.cgi?id=154165
1505 Reviewed by Alex Christensen.
1507 * Source/cmake/OptionsEfl.cmake:
1508 * Source/cmake/OptionsGTK.cmake:
1510 2016-02-11 Konstantin Tokarev <annulen@yandex.ru>
1512 [cmake] Consolidate TextureMapper file and include dir lists.
1513 https://bugs.webkit.org/show_bug.cgi?id=154106
1515 Reviewed by Michael Catanzaro.
1517 * Source/cmake/OptionsEfl.cmake: Expose USE_TEXTURE_MAPPER_GL to
1519 * Source/cmake/OptionsWinCairo.cmake: Ditto.
1521 2016-02-09 Csaba Osztrogonác <ossy@webkit.org>
1523 [GTK][EFL] Fix several build configuration related to SamplingProfiler after r196245
1524 https://bugs.webkit.org/show_bug.cgi?id=154033
1526 Reviewed by Michael Catanzaro.
1528 * Source/cmake/WebKitFeatures.cmake:
1530 2016-02-09 Carlos Garcia Campos <cgarcia@igalia.com>
1532 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.5 release.
1534 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1536 2016-02-07 Yusuke Suzuki <utatane.tea@gmail.com>
1538 [GTK][EFL] Enable SamplingProfiler
1539 https://bugs.webkit.org/show_bug.cgi?id=153638
1541 Reviewed by Michael Catanzaro.
1543 Enable SamplingProfiler in GTK and EFL.
1544 And added option to CMake to switch this from the build command.
1546 * Source/cmake/OptionsEfl.cmake:
1547 * Source/cmake/OptionsGTK.cmake:
1548 * Source/cmake/WebKitFeatures.cmake:
1550 2016-02-07 Konstantin Tokarev <annulen@yandex.ru>
1552 [cmake] Move LLVM detection for LLVMDisassembler to OptionsCommon.cmake
1553 https://bugs.webkit.org/show_bug.cgi?id=153961
1555 Reviewed by Michael Catanzaro.
1557 * Source/cmake/OptionsCommon.cmake:
1558 * Source/cmake/OptionsEfl.cmake:
1559 * Source/cmake/OptionsGTK.cmake:
1561 2016-02-04 Csaba Osztrogonác <ossy@webkit.org>
1563 Unreviewed non X86_64 buildfix after r196077.
1565 * Source/cmake/OptionsEfl.cmake:
1566 * Source/cmake/OptionsGTK.cmake:
1568 2016-02-03 Michael Catanzaro <mcatanzaro@igalia.com>
1570 [GTK][EFL] Switch FTL to B3
1571 https://bugs.webkit.org/show_bug.cgi?id=153478
1573 Reviewed by Csaba Osztrogonác.
1575 * Source/cmake/OptionsEfl.cmake:
1576 * Source/cmake/OptionsGTK.cmake:
1578 2016-02-02 Joseph Pecoraro <pecoraro@apple.com>
1580 Unreviewed attempt to fix Mac CMake build after r195999.
1582 * Source/cmake/OptionsMac.cmake:
1583 * Source/cmake/WebKitFeatures.cmake:
1584 Add ENABLE_RESOURCE_USAGE to CMake builds.
1586 2016-02-02 Alejandro G. Castro <alex@igalia.com>
1588 [GTK][EFL] Upgrade OpenWebRTC dependency
1589 https://bugs.webkit.org/show_bug.cgi?id=153489
1591 Reviewed by Philippe Normand.
1593 * Source/cmake/FindOpenWebRTC.cmake: Bump OpenWebRTC dependency,
1594 required to make the mediastream work.
1596 2016-02-01 Alex Christensen <achristensen@webkit.org>
1598 [Win] WTFHeaderDetection.h no longer needed
1599 https://bugs.webkit.org/show_bug.cgi?id=153753
1600 rdar://problem/24434627
1602 Reviewed by Darin Adler.
1604 * Source/cmake/WebKitFS.cmake:
1606 2016-01-31 Joonghun Park <jh718.park@samsung.com>
1608 [EFL] All API tests are broken on 15.10
1609 https://bugs.webkit.org/show_bug.cgi?id=153528
1611 Reviewed by Gyuyoung Kim.
1613 * CMakeLists.txt: Having include(WebKitCommon) statement follow
1614 CMAKE_FOO_OUTPUT_DIRECTORY otherwise all the API tests gets blocked.
1616 2016-01-30 Yusuke Suzuki <utatane.tea@gmail.com>
1618 Enable SamplingProfiler on POSIX environment
1619 https://bugs.webkit.org/show_bug.cgi?id=153584
1621 Reviewed by Michael Saboff.
1623 Add features.h header check. It will define __GLIBC__.
1625 * Source/cmake/OptionsCommon.cmake:
1627 2016-01-27 Alexey Proskuryakov <ap@apple.com>
1629 Remove ENABLE_CURRENTSRC
1630 https://bugs.webkit.org/show_bug.cgi?id=153545
1632 Reviewed by Simon Fraser.
1634 * Source/cmake/OptionsEfl.cmake:
1635 * Source/cmake/OptionsGTK.cmake:
1636 * Source/cmake/OptionsMac.cmake:
1637 * Source/cmake/OptionsWin.cmake:
1638 * Source/cmake/WebKitFeatures.cmake:
1639 * Source/cmake/tools/vsprops/FeatureDefines.props:
1640 * Source/cmake/tools/vsprops/FeatureDefinesCairo.props:
1642 2016-01-25 Alex Christensen <achristensen@webkit.org>
1644 Fix internal Windows build
1645 https://bugs.webkit.org/show_bug.cgi?id=153469
1647 Reviewed by Brent Fulgham.
1649 * Source/cmake/WebKitMacros.cmake:
1650 Pass the GPERF_EXECUTABLE that we found to make-hash-tools.pl.
1652 2016-01-23 Aaron Chu <arona.chu@gmail.com>
1654 Web Inspector: AXI: node-link-list should be collapsible
1655 https://bugs.webkit.org/show_bug.cgi?id=130911
1657 Added a manual test to test the node list in the Accessibility Inspector
1659 Reviewed by Timothy Hatcher.
1661 * ManualTests/accessibility/collapsible-node-link-list.html: Added.
1663 2016-01-22 Alex Christensen <achristensen@webkit.org>
1665 Fix internal Windows build
1666 https://bugs.webkit.org/show_bug.cgi?id=153385
1667 rdar://problem/24310408
1669 Reviewed by Brian Weinstein.
1671 * Source/cmake/WinTools.make:
1672 * Source/cmake/tools/vsprops: Copied from WebKitLibraries/win/tools/vsprops.
1673 These property sheets are needed for some projects that are not in this repository
1674 and don't use CMake in the official build. We want to leave them unchanged for now.
1676 2016-01-22 Alex Christensen <achristensen@webkit.org>
1678 Only set CMake output directories if they aren't already set
1679 https://bugs.webkit.org/show_bug.cgi?id=153373
1681 Reviewed by Michael Catanzaro.
1684 r195242 caused Windows builds to copy files to bin instead of bin64.
1685 CMAKE_RUNTIME_OUTPUT_DIRECTORY is being set in OptionsWin.cmake, and this was now resetting it.
1686 This also makes it so you can set these variables by command line.
1688 2016-01-20 Carlos Garcia Campos <cgarcia@igalia.com>
1690 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.4 release.
1692 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1694 2016-01-18 Michael Catanzaro <mcatanzaro@igalia.com>
1696 [CMake] Duplicate attempts to find software during cmake stage
1697 https://bugs.webkit.org/show_bug.cgi?id=153211
1699 Reviewed by Martin Robinson.
1701 * CMakeLists.txt: Remove duplication of commands in WebKitCommon.cmake.
1702 * Source/cmake/WebKitCommon.cmake: Guard the entire file so it runs only once.
1704 2016-01-17 Michael Catanzaro <mcatanzaro@igalia.com>
1706 [CMake] Do not build bmalloc when USE_SYSTEM_MALLOC is ON
1707 https://bugs.webkit.org/show_bug.cgi?id=153190
1709 Reviewed by Csaba Osztrogonác.
1711 Build bmalloc when NOT USE_SYSTEM_MALLOC rather than when NOT WIN32.
1713 * Source/CMakeLists.txt:
1714 * Source/cmake/OptionsWin.cmake:
1716 2016-01-16 Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1718 [GTK] Use -Wl,-all_load on darwin to include contents of all static archives
1720 https://bugs.webkit.org/show_bug.cgi?id=153117
1722 Reviewed by Michael Catanzaro.
1724 * Source/cmake/OptionsGTK.cmake:
1726 2016-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
1728 [CMake] Do not use LLVM static libraries for FTL JIT
1729 https://bugs.webkit.org/show_bug.cgi?id=151559
1731 Reviewed by Michael Catanzaro.
1733 Also export LLVM_LIBRARIES variable that can be used to prefer
1734 linking to the llvm dynamic libraries.
1736 * Source/cmake/FindLLVM.cmake:
1738 2016-01-13 Michael Catanzaro <mcatanzaro@igalia.com>
1740 [GTK] Add comments above options declarations in OptionsGTK.cmake
1741 https://bugs.webkit.org/show_bug.cgi?id=153074
1743 Reviewed by Martin Robinson.
1745 * Source/cmake/OptionsGTK.cmake:
1747 2016-01-12 Carlos Garcia Campos <cgarcia@igalia.com>
1749 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.3 release.
1751 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1753 2016-01-12 Ryosuke Niwa <rniwa@webkit.org>
1755 Add a build flag for custom element
1756 https://bugs.webkit.org/show_bug.cgi?id=153005
1758 Reviewed by Alex Christensen.
1760 * Source/cmake/OptionsEfl.cmake:
1761 * Source/cmake/OptionsWin.cmake:
1762 * Source/cmake/WebKitFeatures.cmake:
1764 2016-01-08 Alex Christensen <achristensen@webkit.org>
1766 Fix internal Windows build
1767 https://bugs.webkit.org/show_bug.cgi?id=152937
1769 Reviewed by Brent Fulgham.
1771 * Source/cmake/WebKitCommon.cmake:
1772 Try looking in the default cygwin installation directory for executables like bison, flex, gperf, and ruby.
1773 This is needed on Windows builds that are not driven by cygwin, but need to use the cygwin installations of these tools.
1774 This is the effective equivalent of this line in WebKitLibraries/win/tools/vsprops/common.props in the old build system:
1775 set PATH=%SystemDrive%\cygwin\bin;%PATH%
1777 2016-01-06 Gyuyoung Kim <gyuyoung.kim@webkit.org>
1779 [EFL] Set WebKit2 process output name
1780 https://bugs.webkit.org/show_bug.cgi?id=152773
1782 Reviewed by Benjamin Poulain.
1784 If we add *WebKit* prefix to each WK2 process, it is more clear when checking what process is running.
1785 So this patch sets wk2 process output name.
1787 * Source/cmake/OptionsEfl.cmake:
1789 2016-01-05 Zan Dobersek <zdobersek@igalia.com>
1791 [CMake] Remove USE_UDIS86 variable
1792 https://bugs.webkit.org/show_bug.cgi?id=152731
1794 Reviewed by Gyuyoung Kim.
1796 Remove the USE_UDIS86 variable in CMake files. The specific build guard
1797 is now enabled by default in Source/WTF/wtf/Platform.h, so the handling
1798 in CMake isn't required anymore. The Udis86-specific files have to be
1799 built unconditionally now, though.
1801 * Source/cmake/OptionsEfl.cmake:
1802 * Source/cmake/OptionsGTK.cmake:
1803 * Source/cmake/OptionsMac.cmake:
1805 2016-01-04 Alex Christensen <achristensen@webkit.org>
1807 Fix Mac CMake build after r194454.
1809 * Source/cmake/OptionsMac.cmake:
1810 _macosx, _iphoneos, and _iphonesimulator are used in FeatureDefines.xcconfig but won't be used in CMake.
1811 If we actually switch to CMake, we will need to verify that all the feature enabling is equivalent, and it isn't right now.
1813 2015-12-31 Michael Catanzaro <mcatanzaro@igalia.com>
1815 [GTK][CMake] Do not override default values of build options with the default value
1816 https://bugs.webkit.org/show_bug.cgi?id=152615
1818 Reviewed by Martin Robinson.
1820 Override the default value of build options only when the default value for the GTK+ port
1821 is actually different than the default value in WebKitFeatures.cmake. This way we don't
1822 accidentally override changes to default values in WebKitFeatures.cmake. We should use the
1823 values in WebKitFeatures.cmake except when we make an active choice to do otherwise.
1825 * Source/cmake/OptionsGTK.cmake:
1827 2015-12-31 Michael Catanzaro <mcatanzaro@igalia.com>
1829 [CMake] Add error checking to WEBKIT_OPTION_DEFAULT_PORT_VALUE et. al.
1830 https://bugs.webkit.org/show_bug.cgi?id=144069
1832 Reviewed by Martin Robinson.
1834 * Source/cmake/OptionsWin.cmake:
1835 Do not set options that no longer exist.
1836 * Source/cmake/WebKitFeatures.cmake:
1837 Add error checking to ensure that option names passed to WEBKIT_OPTION_DEFAULT_PORT_VALUE,
1838 WEBKIT_OPTION_CONFLICT, and WEBKIT_OPTION_DEPEND are actually valid options that have been
1839 previously-defined. Also, add ENABLE_SVG_OTF_CONVERTER build option, defaulted to off since
1840 no CMake port was using it.
1842 2015-12-31 Michael Catanzaro <mcatanzaro@igalia.com>
1844 [CMake] Add error checking to catch option manipulation after WEBKIT_OPTION_END
1845 https://bugs.webkit.org/show_bug.cgi?id=152611
1847 Reviewed by Martin Robinson.
1849 If WEBKIT_OPTION_DEFINE is called after WEBKIT_OPTION_END, the option never makes its way
1850 into FEATURE_DEFINES and so will be inconsistently set (available to most of the build, but
1851 not to the DOM bindings generator, for example).
1853 If WEBKIT_OPTION_DEFAULT_PORT_VALUE, WEBKIT_OPTION_CONFLICT, or WEBKIT_OPTION_DEPEND are
1854 called after WEBKIT_OPTION_END, they don't do anything.
1856 Add error checking to catch these bugs.
1858 * Source/cmake/WebKitFeatures.cmake:
1860 2015-12-30 Philippe Normand <pnormand@igalia.com>
1862 [GTK][Mac] Disable gtk-doc
1863 https://bugs.webkit.org/show_bug.cgi?id=150798
1865 Reviewed by Michael Catanzaro.
1867 * Source/PlatformGTK.cmake: gtkdoc-scangobj fails due to a clang
1868 link error on Mac, so for now disable gtk-doc support on that
1870 * Source/cmake/OptionsGTK.cmake: Ditto.
1872 2015-12-23 Andy VanWagoner <andy@instructure.com>
1874 [INTL] Implement Intl.DateTimeFormat.prototype.resolvedOptions ()
1875 https://bugs.webkit.org/show_bug.cgi?id=147603
1877 Reviewed by Benjamin Poulain.
1879 * Source/cmake/OptionsWin.cmake: Disable INTL on Windows for now
1881 2015-12-16 Youenn Fablet <youenn.fablet@crf.canon.fr>
1883 [Fetch API] Add fetch API compile time flag
1884 https://bugs.webkit.org/show_bug.cgi?id=152254
1886 Reviewed by Darin Adler.
1888 * Source/cmake/OptionsWin.cmake:
1889 * Source/cmake/WebKitFeatures.cmake:
1891 2015-12-10 Brent Fulgham <bfulgham@apple.com>
1893 [Win] Support building under Cygwin or native Perl
1894 https://bugs.webkit.org/show_bug.cgi?id=152145
1895 <rdar://problem/23839868>
1897 Reviewed by David Kilzer.
1899 * Source/cmake/tools/scripts/auto-version.pl: Correct handling of mixed DOS filenames when used in a
1903 2015-12-09 Daniel Bates <dabates@apple.com>
1905 [iOS] Suspend and resume device motion and device orientation updates when page is hidden and visible, respectively
1906 https://bugs.webkit.org/show_bug.cgi?id=151840
1907 <rdar://problem/23753931>
1909 Reviewed by Simon Fraser.
1911 Add a manual test that can be used to verify that we suspend dispatching device motion and
1912 device orientation events when the page is hidden.
1914 * ManualTests/ios/resources/suspend-orientation-and-motion-events-when-page-becomes-hidden.js: Added.
1917 (handleVisibilityChange):
1918 * ManualTests/ios/suspend-orientation-and-motion-events-when-page-becomes-hidden.html: Added.
1920 2015-12-07 Alex Christensen <achristensen@webkit.org>
1922 Fix internal Windows build
1923 https://bugs.webkit.org/show_bug.cgi?id=151950
1925 Reviewed by Brent Fulgham.
1927 * Source/cmake/tools/scripts/auto-version.pl:
1929 2015-12-01 Yusuke Suzuki <utatane.tea@gmail.com>
1931 [ES6] Implement LLInt/Baseline Support for ES6 Generators and enable this feature
1932 https://bugs.webkit.org/show_bug.cgi?id=150792
1934 Reviewed by Saam Barati.
1936 * Source/cmake/OptionsWin.cmake:
1937 * Source/cmake/WebKitFeatures.cmake:
1939 2015-12-01 Commit Queue <commit-queue@webkit.org>
1941 Unreviewed, rolling out r192914.
1942 https://bugs.webkit.org/show_bug.cgi?id=151734
1944 JSC tests for this change are failing on 32 and 64-bit bots
1945 (Requested by ryanhaddad on #webkit).
1949 "[ES6] Implement LLInt/Baseline Support for ES6 Generators and
1950 enable this feature"
1951 https://bugs.webkit.org/show_bug.cgi?id=150792
1952 http://trac.webkit.org/changeset/192914
1954 2015-12-01 Yusuke Suzuki <utatane.tea@gmail.com>
1956 [ES6] Implement LLInt/Baseline Support for ES6 Generators and enable this feature
1957 https://bugs.webkit.org/show_bug.cgi?id=150792
1959 Reviewed by Saam Barati.
1961 * Source/cmake/OptionsWin.cmake:
1962 * Source/cmake/WebKitFeatures.cmake:
1964 2015-11-23 Carlos Garcia Campos <cgarcia@igalia.com>
1966 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.2 release.
1968 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
1970 2015-11-20 Alex Christensen <achristensen@webkit.org>
1972 Remove NETWORK_PROCESS compile flag
1973 https://bugs.webkit.org/show_bug.cgi?id=151512
1975 Reviewed by Tim Horton.
1977 * Source/cmake/OptionsEfl.cmake:
1978 * Source/cmake/OptionsGTK.cmake:
1979 * Source/cmake/OptionsMac.cmake:
1980 * Source/cmake/WebKitFeatures.cmake:
1982 2015-11-20 Csaba Osztrogonác <ossy@webkit.org>
1984 [EFL] Enable FTL JIT by default on X86_64
1985 https://bugs.webkit.org/show_bug.cgi?id=143822
1987 Reviewed by Carlos Garcia Campos.
1989 * Source/cmake/OptionsEfl.cmake:
1991 2015-11-19 Commit Queue <commit-queue@webkit.org>
1993 Unreviewed, rolling out r192667 and r192668.
1994 https://bugs.webkit.org/show_bug.cgi?id=151476
1996 broke api tests (Requested by alexchristensen on #webkit).
1998 Reverted changesets:
2000 "Remove the non-NetworkProcess configurations"
2001 https://bugs.webkit.org/show_bug.cgi?id=151418
2002 http://trac.webkit.org/changeset/192667
2004 "Fix GTK Build after r192667."
2005 http://trac.webkit.org/changeset/192668
2007 2015-11-19 Alex Christensen <achristensen@webkit.org>
2009 Remove the non-NetworkProcess configurations
2010 https://bugs.webkit.org/show_bug.cgi?id=151418
2012 Reviewed by Geoffrey Garen.
2014 * Source/cmake/OptionsEfl.cmake:
2015 * Source/cmake/OptionsGTK.cmake:
2016 * Source/cmake/OptionsMac.cmake:
2017 * Source/cmake/WebKitFeatures.cmake:
2019 2015-11-17 Carlos Garcia Campos <cgarcia@igalia.com>
2021 REGRESSION(r192459): [GTK] User agent string is broken after r192459
2022 https://bugs.webkit.org/show_bug.cgi?id=151347
2024 Reviewed by Žan Doberšek.
2026 Pass UA version numbers as strings to the build.
2028 * Source/cmake/OptionsGTK.cmake:
2030 2015-11-16 Alex Christensen <achristensen@webkit.org>
2032 Fix CMake build and make PluginProcess executable
2033 https://bugs.webkit.org/show_bug.cgi?id=151332
2035 Reviewed by Tim Horton.
2037 * Source/cmake/OptionsMac.cmake:
2039 2015-11-16 Carlos Garcia Campos <cgarcia@igalia.com>
2041 [GTK] Use FTL by default when LLVM 3.7 is available
2042 https://bugs.webkit.org/show_bug.cgi?id=142128
2044 Reviewed by Csaba Osztrogonác.
2046 Enable FTL by default when architecture is X86_64. It requires
2047 LLVM 3.7, but can be disabled manually as a cmake configure
2050 * Source/cmake/FindLLVM.cmake: In debian llvm-config is only
2051 available if the metapackage is installed and it points to
2052 llvm-config-3.5. So, here we check first if the llvm-config is
2053 from a recent enough version, and if not we check several
2054 llvm-config-<version> programs, so this should work on any distro.
2055 * Source/cmake/OptionsGTK.cmake: Enable FTL by default when
2056 target architecture is X86_64, and check the LLVM is at least
2057 3.7. The option is now public, since we want people to be able to
2058 disable it manually.
2060 2015-11-11 Anders Carlsson <andersca@apple.com>
2062 Enable cross-platform context menus by default
2063 https://bugs.webkit.org/show_bug.cgi?id=151173
2065 Reviewed by Tim Horton.
2067 * Source/cmake/OptionsEfl.cmake:
2069 2015-11-12 Csaba Osztrogonác <ossy@webkit.org>
2071 Remove ENABLE(SATURATED_LAYOUT_ARITHMETIC) guards
2072 https://bugs.webkit.org/show_bug.cgi?id=150972
2074 Reviewed by Darin Adler.
2076 * Source/cmake/OptionsMac.cmake:
2077 * Source/cmake/WebKitFeatures.cmake:
2079 2015-11-11 Philippe Normand <pnormand@igalia.com>
2081 [GTK][Mac] don't install .frameworks
2082 https://bugs.webkit.org/show_bug.cgi?id=151136
2084 Reviewed by Alex Christensen.
2086 * Source/cmake/WebKitMacros.cmake: Don't install framework files when building the GTK port on Mac.
2088 2015-11-10 Pranjal Jumde <pjumde@apple.com>
2090 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
2091 https://bugs.webkit.org/show_bug.cgi?id=150252
2092 <rdar://problem/23149470>
2094 Reviewed by Brent Fulgham.
2097 * Source/WebCore/editing/ios/EditorIOS.mm
2098 * Source/WebCore/editing/mac/EditorMac.mm
2099 In Editor::fontForSelection moved the node removal code, so that the
2100 node is only removed if style is not NULL.
2101 * Source/WebCore/editing/cocoa/EditorCocoa.mm
2102 In Editor::styleForSelectionStart checking if the parentNode can
2103 accept the styleElement node.
2104 * LayoutTests/editing/execCommand/150252.xhtml
2105 * LayoutTests/editing/execCommand/150252_minimal.xhtml
2106 * LayoutTests/editing/execCommand/150252-expected.txt
2107 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
2109 2015-11-09 Pranjal Jumde <pjumde@apple.com>
2111 Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.
2112 https://bugs.webkit.org/show_bug.cgi?id=150252
2113 <rdar://problem/23149470>
2115 Reviewed by Brent Fulgham.
2117 * Source/WebCore/editing/ios/EditorIOS.mm
2118 * Source/WebCore/editing/mac/EditorMac.mm
2119 In Editor::fontForSelection moved the node removal code, so that the
2120 node is only removed if style is not NULL.
2121 * LayoutTests/editing/execCommand/150252.xhtml
2122 * LayoutTests/editing/execCommand/150252_minimal.xhtml
2123 * LayoutTests/editing/execCommand/150252-expected.txt
2124 * LayoutTests/editing/execCommand/150252_minimal-expected.txt
2126 2015-11-06 Daniel Bates <dabates@apple.com>
2128 Teach Makefile to build LayoutTestRelay when building for iOS Simulator
2129 https://bugs.webkit.org/show_bug.cgi?id=150849
2131 Reviewed by Alexey Proskuryakov.
2133 Add support for overriding the user-provided arguments SDKROOT and ARCHS
2134 on a per Makefile basis.
2138 2015-11-06 Philippe Normand <pnormand@igalia.com>
2140 Unreviewed, GTK build fix after r192095.
2142 * Source/cmake/FindGTK3.cmake:
2144 2015-11-06 Philip Chimento <philip.chimento@gmail.com> and Michael Catanzaro <mcatanzaro@igalia.com>
2146 [GTK] Re-enable Quartz backend on cmake build system
2147 https://bugs.webkit.org/show_bug.cgi?id=144561
2149 Reviewed by Philippe Normand.
2151 * Source/cmake/FindGTK3.cmake: Set GTK3_SUPPORTS_QUARTZ based on
2152 the presence of of gtk+-quartz-3.0 module.
2153 * Source/cmake/OptionsGTK.cmake: Reintroduce the
2154 ENABLE_QUARTZ_TARGET option to the CMake build, for building the
2155 GTK+ Quartz backend on OS X.
2157 2015-11-05 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au>
2159 Add runtime and compile time flags for enabling Web Animations API and model.
2160 https://bugs.webkit.org/show_bug.cgi?id=150914
2162 Reviewed by Benjamin Poulain.
2164 Add ENABLE_WEB_ANIMATIONS compile time flag, runtime flag webAnimationsEnabled and Expose WK2 preference for runtime flag.
2166 * Source/cmake/OptionsWin.cmake:
2167 * Source/cmake/WebKitFeatures.cmake:
2169 2015-11-03 Brent Fulgham <bfulgham@apple.com>
2171 [Win] CMake build update.
2173 Rubberstamped by Tim Horton.
2175 * Source/PlatformWin.cmake: Add internal tool to build
2176 rules for internal use.
2178 2015-11-03 Carlos Garcia Campos <cgarcia@igalia.com>
2180 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.11.1 release.
2182 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2184 2015-11-02 Philippe Normand <pnormand@igalia.com>
2186 [Mac][GTK] Disable Ninja response file support
2187 https://bugs.webkit.org/show_bug.cgi?id=150801
2189 Reviewed by Alex Christensen.
2191 * Source/cmake/OptionsCommon.cmake: The OSX toolchain doesn't
2192 support response files, so instruct Ninja to not generate those.
2194 2015-11-02 Csaba Osztrogonác <ossy@webkit.org>
2196 Fix the FTL JIT build with system LLVM on Linux
2197 https://bugs.webkit.org/show_bug.cgi?id=150795
2199 Reviewed by Filip Pizlo.
2201 * Source/cmake/FindLLVM.cmake:
2203 2015-11-02 Carlos Garcia Campos <cgarcia@igalia.com>
2205 Unreviewed. Bump GTK+ versions numbers.
2207 * Source/cmake/OptionsGTK.cmake:
2209 2015-11-01 Yusuke Suzuki <utatane.tea@gmail.com>
2211 [ES6] Support Generator Syntax
2212 https://bugs.webkit.org/show_bug.cgi?id=150769
2214 Reviewed by Geoffrey Garen.
2216 Added ENABLE_ES6_GENERATORS flag.
2218 * Source/cmake/OptionsWin.cmake:
2219 * Source/cmake/WebKitFeatures.cmake:
2221 2015-10-30 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2223 [EFL] Add Shadow DOM feature
2224 https://bugs.webkit.org/show_bug.cgi?id=150611
2226 Reviewed by Csaba Osztrogonác.
2228 * Source/cmake/OptionsEfl.cmake:
2229 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SHADOW_DOM cmake variable.
2231 2015-10-29 Alex Christensen <achristensen@webkit.org>
2234 https://bugs.webkit.org/show_bug.cgi?id=150686
2236 Reviewed by Filip Pizlo.
2238 * Source/cmake/WebKitMacros.cmake:
2240 2015-10-28 Alex Christensen <achristensen@webkit.org>
2242 Compile and link with CMake on Mac
2243 https://bugs.webkit.org/show_bug.cgi?id=150632
2245 Reviewed by Tim Horton.
2247 * Source/cmake/OptionsMac.cmake:
2249 2015-10-26 Dana Burkart <dburkart@apple.com>
2251 `make analyze` should build using the debug configuration
2252 https://bugs.webkit.org/show_bug.cgi?id=150571
2254 Reviewed by Lucas Forschler.
2258 2015-10-26 Philippe Normand <pnormand@igalia.com>
2260 Unreviewed, rolling out r191576.
2262 broke the http/tests/media tests
2266 "[GStreamer] Bump internal jhbuild versions to 1.6.0"
2267 https://bugs.webkit.org/show_bug.cgi?id=149594
2268 http://trac.webkit.org/changeset/191576
2270 2015-10-26 ChangSeok Oh <changseok.oh@collabora.com>
2272 [GStreamer] Bump internal jhbuild versions to 1.6.0
2273 https://bugs.webkit.org/show_bug.cgi?id=149594
2275 Reviewed by Philippe Normand.
2277 Bump up the minimum reqirement version of gstreamer-gl to 1.6.0.
2279 * Source/cmake/FindGStreamer.cmake:
2281 2015-10-22 Philippe Normand <pnormand@igalia.com>
2283 [GTK][Mac] ICU-related build fixes
2284 https://bugs.webkit.org/show_bug.cgi?id=150032
2286 Rubber-stamped by Darin Adler.
2288 * Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
2290 2015-10-20 Yoav Weiss <yoav@yoav.ws>
2292 Rename the PICTURE_SIZES flag to CURRENTSRC
2293 https://bugs.webkit.org/show_bug.cgi?id=150275
2295 Reviewed by Dean Jackson.
2297 * Source/cmake/OptionsEfl.cmake:
2298 * Source/cmake/OptionsGTK.cmake:
2299 * Source/cmake/OptionsMac.cmake:
2300 * Source/cmake/OptionsWin.cmake:
2301 * Source/cmake/WebKitFeatures.cmake:
2303 2015-10-14 Tomas Popela <tpopela@redhat.com>
2305 [GTK][EFL] Fix build with cmake 3.4
2306 https://bugs.webkit.org/show_bug.cgi?id=150117
2308 Explicitely include the CheckIncludeFiles module before using
2309 the CHECK_INCLUDE_FILES command.
2311 Reviewed by Žan Doberšek.
2313 * Source/cmake/FindOpenGL.cmake:
2314 * Source/cmake/FindWebP.cmake:
2315 * Source/cmake/OptionsEfl.cmake:
2317 2015-10-13 Dean Jackson <dino@apple.com>
2319 Device motion and orientation should only be visible from the main frame's security origin
2320 https://bugs.webkit.org/show_bug.cgi?id=150072
2321 <rdar://problem/23082036>
2323 Reviewed by Brent Fulgham.
2325 Add a manual test for cross-origin device orientation events, while
2326 we're waiting on the mock client to be supported everywhere.
2328 * ManualTests/deviceorientation-child-frame.html: Added.
2329 * ManualTests/deviceorientation-main-frame-only.html: Added.
2331 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
2333 [GTK] OSX linker doesn't understand --whole-archive
2334 https://bugs.webkit.org/show_bug.cgi?id=144557
2336 Reviewed by Martin Robinson.
2338 * Source/cmake/OptionsGTK.cmake: Turn the macro
2339 ADD_WHOLE_ARCHIVE_TO_LIBRARIES into a no-op on Darwin systems,
2340 because XCode's linker doesn't have the --whole-archive option.
2342 2015-10-12 Philip Chimento <philip.chimento@gmail.com>
2344 [GTK] Use --version-script only on Linux
2345 https://bugs.webkit.org/show_bug.cgi?id=144555
2347 Reviewed by Philippe Normand.
2349 * Source/cmake/OptionsGTK.cmake: Don't add --version-script
2350 option on Darwin (whose linker doesn't support it.)
2352 2015-10-09 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2354 [CMake] Remove ENABLE_SUBPIXEL_LAYOUT macro
2355 https://bugs.webkit.org/show_bug.cgi?id=149947
2357 Reviewed by Csaba Osztrogonác.
2359 ENABLE(SUBPIXEL_LAYOUT) was removed though, it is still alive in .cmake.
2362 * Source/cmake/OptionsMac.cmake:
2363 * Source/cmake/OptionsWin.cmake:
2364 * Source/cmake/WebKitFeatures.cmake:
2366 2015-10-06 Emanuele Aina <emanuele.aina@collabora.com>
2368 Fix ENABLE_OPENGL=OFF builds
2369 https://bugs.webkit.org/show_bug.cgi?id=146511
2371 Reviewed by Darin Adler.
2373 * Source/cmake/OptionsGTK.cmake: Make ENABLE_WAYLAND_TARGET depend on
2374 ENABLE_OPENGL due to EGL usage.
2376 2015-10-01 Wenson Hsieh <wenson_hsieh@apple.com>
2378 Convert focused-input-should-assist-on-touch.html into an automated test
2379 https://bugs.webkit.org/show_bug.cgi?id=149724
2381 Reviewed by Simon Fraser.
2383 Remove a manual test that can now be rewritten as an automated test.
2385 * ManualTests/ios/focused-input-should-assist-on-touch.html: Removed.
2387 2015-10-01 Brent Fulgham <bfulgham@apple.com>
2389 [Win] Unreviewed CMake build fix.
2391 * Source/cmake/OptionsWin.cmake: Clean up options setttings,
2392 and make sure exception handling is turned off.
2394 2015-09-30 Brent Fulgham <bfulgham@apple.com>
2396 [Win] Unreviewed build fix after CMake conversion.
2398 * Source/cmake/OptionsWin.cmake: Correct some Windows build flags.
2400 2015-09-29 Michael Catanzaro <mcatanzaro@igalia.com>
2402 [GTK][CMake] Warning about CMP0058
2403 https://bugs.webkit.org/show_bug.cgi?id=149627
2405 Reviewed by Martin Robinson.
2407 Opt-in to the new behavior for CMP0058.
2411 2015-09-28 Brent Fulgham <bfulgham@apple.com>
2413 [Win] Unreviewed build fix for internal systems.
2415 * Source/cmake/OptionsWin.cmake: Preferentially use the build target
2416 location for include and link libraries, rather than the system locations.
2418 2015-09-28 Alex Christensen <achristensen@webkit.org>
2420 Build WK1 with CMake on Mac
2421 https://bugs.webkit.org/show_bug.cgi?id=149604
2423 Reviewed by Chris Dumez.
2425 * Source/cmake/OptionsMac.cmake:
2426 * Source/cmake/WebKitMacros.cmake:
2427 ObjC bindings now have their own list of IDL files, but some of them still don't generate a .mm file.
2429 2015-09-25 Alex Christensen <achristensen@webkit.org>
2431 Clean up CMake build on Mac
2432 https://bugs.webkit.org/show_bug.cgi?id=149573
2434 Reviewed by Chris Dumez.
2436 * Source/cmake/OptionsMac.cmake:
2438 2015-09-25 Alex Christensen <achristensen@webkit.org>
2440 [Win] Switch to CMake
2441 https://bugs.webkit.org/show_bug.cgi?id=148111
2443 Reviewed by Brent Fulgham.
2445 * Source/cmake/WinTools.make: Added.
2446 * Source/cmake/tools: Added.
2447 * Source/cmake/tools/scripts: Copied from WebKitLibraries/win/tools/scripts.
2448 * Source/cmake/tools/scripts/auto-version.pl: Copied from WebKitLibraries/win/tools/scripts/auto-version.pl.
2450 2015-09-25 Alex Christensen <achristensen@webkit.org>
2452 Prepare internal AppleWin build for CMake
2453 https://bugs.webkit.org/show_bug.cgi?id=149570
2455 Reviewed by Brent Fulgham.
2457 * Source/PlatformWin.cmake:
2458 Include internal CMake files if they exist.
2460 2015-09-22 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2462 Add a file of pointer-lock to cmake ports
2463 https://bugs.webkit.org/show_bug.cgi?id=149453
2465 Reviewed by Csaba Osztrogonác.
2467 * Source/cmake/OptionsEfl.cmake: Add a ENABLE_POINTER_LOCK.
2469 2015-09-22 Carlos Alberto Lopez Perez <clopez@igalia.com>
2471 [CMake] Allow to enable OpenMP support.
2472 https://bugs.webkit.org/show_bug.cgi?id=149457
2474 Reviewed by Csaba Osztrogonác.
2476 * Source/cmake/OptionsCommon.cmake: Add the option USE_OPENMP that
2477 will enable the support for OpenMP. Currently this is only used as
2478 an alternative implementation to native threads for the parallelization
2479 of the SVG filters. But name the option with a generic name (USE_OPENMP)
2480 as it could be also used to enable future features that depend on OpenMP.
2482 2015-09-22 Ryuan Choi <ryuan.choi@navercorp.com>
2484 [EFL] Build break when DEVELOPER_MODE is OFF
2485 https://bugs.webkit.org/show_bug.cgi?id=149448
2487 Reviewed by Gyuyoung Kim.
2489 Since r187191, DatabaseProcessMainUnix is missing in symbol filter.
2491 * Source/cmake/eflsymbols.filter:
2493 2015-09-21 Alex Christensen <achristensen@webkit.org>
2495 Disable PICTURE_SIZES in Windows CMake build like r189745.
2496 https://bugs.webkit.org/show_bug.cgi?id=149125
2498 * Source/cmake/OptionsWin.cmake:
2499 Do the same thing as r189745.
2501 2015-09-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
2503 Removing XHR_TIMEOUT guard
2505 Remove XHR_TIMEOUT compilation guard
2506 https://bugs.webkit.org/show_bug.cgi?id=149260
2508 Reviewed by Benjamin Poulain.
2510 * Source/cmake/OptionsEfl.cmake:
2511 * Source/cmake/OptionsGTK.cmake:
2512 * Source/cmake/OptionsMac.cmake:
2513 * Source/cmake/OptionsWin.cmake:
2514 * Source/cmake/WebKitFeatures.cmake:
2516 2015-09-18 Alex Christensen <achristensen@webkit.org>
2518 Fix tests on Windows after switching to CMake.
2519 https://bugs.webkit.org/show_bug.cgi?id=149339
2521 Reviewed by Brent Fulgham.
2523 * Source/PlatformWin.cmake: Added to copy WebInspectorUI.
2525 2015-09-17 Alex Christensen <achristensen@webkit.org>
2527 Fix Windows EWS build after r189934.
2529 * Source/cmake/OptionsWin.cmake:
2530 Use WEBKIT_LIBRARIES environment variable if it exists.
2531 We have the WebKitLibraries directory separate from the repository copy on the EWS bots.
2533 2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
2535 Add ShadowRoot interface and Element.prototype.attachShadow
2536 https://bugs.webkit.org/show_bug.cgi?id=149187
2538 Reviewed by Antti Koivisto.
2540 * Source/cmake/OptionsGTK.cmake:
2542 2015-09-15 Csaba Osztrogonác <ossy@webkit.org>
2544 [cmake] Enable debug fission only if it is supported
2545 https://bugs.webkit.org/show_bug.cgi?id=149161
2547 Reviewed by Martin Robinson.
2549 * Source/cmake/OptionsCommon.cmake:
2551 2015-09-14 Alex Christensen <achristensen@webkit.org>
2553 Progress towards CMake on Mac.
2554 https://bugs.webkit.org/show_bug.cgi?id=149123
2556 Reviewed by Chris Dumez.
2558 * Source/cmake/OptionsMac.cmake:
2559 * Source/cmake/WebKitFeatures.cmake:
2560 Defined and enabled some more features needed on Mac.
2561 * Source/cmake/WebKitMacros.cmake:
2562 Objective C bindings need special changes when generating:
2563 Some of the bindings do not generate a .mm file but the header is needed.
2564 Some of the bindings do generate a .mm file that doesn't compile but the header is needed.
2565 In order to handle these cases, it is necessary to change the GENERATE_BINDINGS macro just for ObjC.
2567 2015-09-08 Daniel Bates <dabates@apple.com>
2569 Convert manual test added in http://trac.webkit.org/changeset/70321 to an automated test
2570 https://bugs.webkit.org/show_bug.cgi?id=74729
2571 <rdar://problem/22550195>
2573 Reviewed by Jon Honeycutt.
2575 * ManualTests/compositing/resources/composited-subframe.html: Removed.
2576 * ManualTests/compositing/show-composited-iframe-on-back-button.html: Removed.
2578 2015-09-06 Andy Estes <aestes@apple.com>
2580 WebKit.xcworkspace should be be able to build iOS platforms
2581 https://bugs.webkit.org/show_bug.cgi?id=148881
2583 Reviewed by Daniel Bates.
2585 Since we don't want to create platform-specific schemes, all projects in the workspace's schemes need to build
2586 for all supported platforms.
2588 * WebKit.xcworkspace/xcshareddata/xcschemes/All Tools.xcscheme: Removed the DumpRenderTree target since its All
2589 target was already included. Removed the WebKitTestRunner target and replaced it with its All target.
2591 2015-09-04 Jon Honeycutt <jhoneycutt@apple.com>
2593 [iOS] Need a test for bug #145539: Uploading an animated GIF from the
2594 photo library uploads a JPEG
2595 https://bugs.webkit.org/show_bug.cgi?id=148849
2597 Reviewed by Daniel Bates.
2599 * ManualTests/ios/image-file-uploads-as-original-type.html: Added.
2600 On the Mac, file upload tests use EventSender::beginDragWithFiles. This
2601 functionality doesn't exist on iOS, so we'll add a manual test.
2602 This tests that the first few bytes of the selected file are "GIF".
2604 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
2606 Follow-up patch for r189343.
2607 https://bugs.webkit.org/show_bug.cgi?id=148795
2609 Rubber-stamped by Csaba Osztrogonác.
2611 * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
2612 to 1.9, since this seems to be enough to fix the build failure.
2613 And 2.0 may cause problems for developers using some distributions like Ubuntu.
2615 2015-09-04 Emanuele Aina <emanuele.aina@collabora.com>
2617 [CMake] Trigger the memory-reduction tricks on armhf too
2618 https://bugs.webkit.org/show_bug.cgi?id=146640
2620 Reviewed by Csaba Osztrogonác.
2622 * Source/cmake/OptionsCommon.cmake:
2623 Activate --no-keep-memory even on armhf to reduce the amount of memory
2624 needed during linking, to avoid out-of-memory failures as much as
2627 2015-09-04 Carlos Alberto Lopez Perez <clopez@igalia.com>
2629 REGRESSION(r189293): JavaScriptCore/offlineasm/x86.rb -- Build failure with ruby < 2.0
2630 https://bugs.webkit.org/show_bug.cgi?id=148795
2632 Rubber-stamped by Carlos Garcia Campos.
2634 * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
2636 2015-09-02 Alex Christensen <achristensen@webkit.org>
2638 Make bison grammar compatible with bison 2.1
2639 https://bugs.webkit.org/show_bug.cgi?id=148731
2641 Reviewed by Tim Horton.
2643 * Source/cmake/WebKitCommon.cmake:
2646 2015-08-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
2648 [CMake] Build with Debug Fission on by default on Debug builds.
2649 https://bugs.webkit.org/show_bug.cgi?id=148639
2651 Reviewed by Martin Robinson.
2653 * Source/cmake/OptionsCommon.cmake:
2655 2015-08-29 Alex Christensen <achristensen@webkit.org>
2657 Unreviewed build fix after r179923.
2659 * Source/CMakeLists.txt:
2660 bmalloc isn't ported to Windows yet.
2662 2015-08-27 Alex Christensen <achristensen@webkit.org>
2664 Isolate Source directories in CMake build
2665 https://bugs.webkit.org/show_bug.cgi?id=148389
2667 Reviewed by Brent Fulgham.
2670 * Source/cmake/WebKitCommon.cmake:
2671 Move package finding to WebKitCommon.
2673 2015-08-26 Per Arne Vollan <peavo@outlook.com>
2675 [Win] Build does not generate debug info.
2676 https://bugs.webkit.org/show_bug.cgi?id=148431
2678 Reviewed by Alex Christensen.
2680 Generate debug info for Windows builds.
2682 * Source/cmake/OptionsWin.cmake:
2684 2015-08-26 Michael Catanzaro <mcatanzaro@igalia.com>
2686 [GTK] Disable ACCELERATED_2D_CANVAS by default
2687 https://bugs.webkit.org/show_bug.cgi?id=148473
2689 Reviewed by Martin Robinson.
2691 Currently ACCELERATED_2D_CANVAS is enabled by default on most systems (which have CairoGL)
2692 but not on Debian (which does not). We've known this was problematic for a while, since it
2693 means we have two different sets of distro-dependent bugs, but never decided whether that
2694 outweighed the benefits of CarioGL or not. I'm making the call now: it's more important to
2695 have the same bugs everywhere. We can turn this on again for other distros when we're ready
2696 to turn it on for Debian.
2698 Also, properly fail the build if ENABLE_ACCELERATED_2D_CANVAS is enabled but CairoGL is not
2701 * Source/cmake/OptionsGTK.cmake:
2703 2015-08-25 Commit Queue <commit-queue@webkit.org>
2705 Unreviewed, rolling out r188919.
2706 https://bugs.webkit.org/show_bug.cgi?id=148452
2708 broke build (Requested by alexchristensen on #webkit).
2712 "[Win] Build does not generate debug info."
2713 https://bugs.webkit.org/show_bug.cgi?id=148431
2714 http://trac.webkit.org/changeset/188919
2716 2015-08-25 Michael Catanzaro <mcatanzaro@igalia.com>
2718 [GTK] r186800 broke the build on Ubuntu 14.04
2719 https://bugs.webkit.org/show_bug.cgi?id=147559
2721 Reviewed by Martin Robinson.
2723 * Source/cmake/FindGTK3.cmake: Always define GTK3_SUPPORTS_X11 and GTK3_SUPPORTS_WAYLAND.
2724 * Source/cmake/OptionsGTK.cmake: Autodetect support for X11 and Wayland backends.
2726 2015-08-25 Per Arne Vollan <peavo@outlook.com>
2728 [Win] Build does not generate debug info.
2729 https://bugs.webkit.org/show_bug.cgi?id=148431
2731 Reviewed by Brent Fulgham.
2733 Generate debug info for Windows builds.
2735 * Source/cmake/OptionsWin.cmake:
2737 2015-08-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
2739 [GTK] Auto-detection of cairo-gl fails
2740 https://bugs.webkit.org/show_bug.cgi?id=148189
2742 Reviewed by Žan Doberšek.
2744 * Source/cmake/FindCairoGL.cmake: only check for components if the main package has
2745 been found. Otherwise, if either GLX or EGL are available, cairo-gl will also be
2746 deemed available, which might not be the case.
2747 * Source/cmake/OptionsGTK.cmake: fix the usage of the CAIROGL_FOUND variable.
2749 2015-08-19 Alex Christensen <achristensen@webkit.org>
2751 CMake Windows build should not include files directly from other Source directories
2752 https://bugs.webkit.org/show_bug.cgi?id=148198
2754 Reviewed by Brent Fulgham.
2756 * Source/cmake/WebKitMacros.cmake:
2758 2015-08-19 Alex Christensen <achristensen@webkit.org>
2760 Build TestWTF on Mac with CMake.
2761 https://bugs.webkit.org/show_bug.cgi?id=147972
2763 Reviewed by Tim Horton.
2765 * Source/cmake/OptionsMac.cmake:
2766 Enable API tests in Mac's CMake build.
2768 2015-08-18 Alex Christensen <achristensen@webkit.org>
2770 [CMake] REGRESSION(r188540): WebKitTestRunner is not longer built and all the tests (layout and perf) fail.
2771 https://bugs.webkit.org/show_bug.cgi?id=148127
2773 Reviewed by Martin Robinson.
2776 TOOLS_DIR hasn't been set yet since its defining has been moved to WebKitFS.
2778 2015-08-17 Alex Christensen <achristensen@webkit.org>
2780 [Win CMake] Allow WebKitLibraries directory to be set from the command line
2781 https://bugs.webkit.org/show_bug.cgi?id=148112
2783 Reviewed by Brent Fulgham.
2785 * Source/cmake/OptionsWin.cmake:
2786 Don't use an environment variable for WEBKIT_LIBRARIES_DIR.
2787 Instead, use the default location if nothing is passed in from the command line.
2788 This way we can set it from the command line for the AppleInternal build.
2789 Also, set the output directories to be consistent between the old and new build systems (and ninja).
2791 2015-08-17 Alex Christensen <achristensen@webkit.org>
2793 Build Debug Suffix on Windows with CMake
2794 https://bugs.webkit.org/show_bug.cgi?id=148083
2796 Reviewed by Brent Fulgham.
2798 * Source/cmake/OptionsWin.cmake:
2799 Use debug libraries in debug suffix builds.
2801 2015-08-17 Alex Christensen <achristensen@webkit.org>
2803 Move some commands from ./CMakeLists.txt to Source/cmake
2804 https://bugs.webkit.org/show_bug.cgi?id=148003
2806 Reviewed by Brent Fulgham.
2809 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
2810 so we can change directory structure from command line parameters.
2811 * Source/cmake/OptionsAppleWin.cmake:
2812 * Source/cmake/OptionsWin.cmake: Copied from Source/cmake/OptionsWindows.cmake.
2813 * Source/cmake/OptionsWinCairo.cmake:
2814 * Source/cmake/OptionsWindows.cmake: Removed.
2815 * Source/cmake/WebKitCommon.cmake: Added.
2816 * Source/cmake/WebKitFS.cmake:
2818 2015-08-13 Commit Queue <commit-queue@webkit.org>
2820 Unreviewed, rolling out r188428.
2821 https://bugs.webkit.org/show_bug.cgi?id=148015
2823 broke cmake build (Requested by alexchristensen on #webkit).
2827 "Move some commands from ./CMakeLists.txt to Source/cmake"
2828 https://bugs.webkit.org/show_bug.cgi?id=148003
2829 http://trac.webkit.org/changeset/188428
2831 2015-08-13 Alex Christensen <achristensen@webkit.org>
2833 Move some commands from ./CMakeLists.txt to Source/cmake
2834 https://bugs.webkit.org/show_bug.cgi?id=148003
2836 Reviewed by Brent Fulgham.
2839 Moved functionality to WebKitCommon.cmake and WebKitFS.cmake and made conditional
2840 so we can change directory structure from command line parameters.
2841 * Source/cmake/WebKitCommon.cmake: Added.
2842 * Source/cmake/WebKitFS.cmake:
2844 2015-08-13 Wenson Hsieh <wenson_hsieh@apple.com>
2846 A focused node should not be assisted when handling touch events synchronously
2847 https://bugs.webkit.org/show_bug.cgi?id=147836
2849 Reviewed by Enrica Casucci.
2851 Added manual tests for keyboard assistance behavior due to receiving touch events on iOS.
2853 * ManualTests/ios/focused-input-should-assist-on-touch.html: Checks that a currently focused
2854 input can still be assisted due to a touch event.
2855 * ManualTests/ios/keyboard-should-not-show-on-touch-event.html: Checks that handling a touch
2856 event does not automatically cause us to assist the currently focused node.
2858 2015-08-12 Alex Christensen <achristensen@webkit.org>
2860 Fix Debug CMake builds on Windows
2861 https://bugs.webkit.org/show_bug.cgi?id=147940
2863 Reviewed by Chris Dumez.
2865 * Source/cmake/OptionsWindows.cmake:
2866 Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.
2868 2015-08-10 Alex Christensen <achristensen@webkit.org>
2870 Build TestWebKitAPI with CMake on Windows
2871 https://bugs.webkit.org/show_bug.cgi?id=147851
2873 Reviewed by Chris Dumez.
2875 * Source/cmake/OptionsWindows.cmake:
2876 Enable api tests and set USE_SYSTEM_MALLOC to avoid warnings when redefining it.
2878 2015-08-06 Alex Christensen <achristensen@webkit.org>
2880 [Win] CMake build fix after r188098.
2882 * Source/cmake/OptionsWinCairo.cmake:
2883 OptionsWindows.cmake uses WTF_PLATFORM_WIN_CAIRO now, so we need to set it before including OptionsWindows.
2885 2015-08-04 Alex Christensen <achristensen@webkit.org>
2887 Fix quirks with CMake and VS2015
2888 https://bugs.webkit.org/show_bug.cgi?id=147663
2890 Reviewed by Brent Fulgham.
2892 * Source/cmake/OptionsWindows.cmake:
2893 Hide some warnings. Using the same variable names in nested scopes is ok for now.
2894 Disable INTL for now.
2896 2015-08-04 Alex Christensen <achristensen@webkit.org>
2898 Enable WebGL on Windows CMake build.
2899 https://bugs.webkit.org/show_bug.cgi?id=143311
2901 Reviewed by Csaba Osztrogonác.
2903 * Source/cmake/OptionsWindows.cmake:
2904 Enable WebGL by default in CMake builds now that it works.
2906 2015-08-04 Mario Sanchez Prada <mario@endlessm.com>
2908 [GTK] Accelerated 2D Canvas enabled when cairo-gl is not available
2909 https://bugs.webkit.org/show_bug.cgi?id=147625
2911 Reviewed by Martin Robinson.
2913 Do not set the CAIRO_<COMPONENT>_* CMake variables for cairo-gl
2914 components unless they were actually found, not to accidentally
2915 enable Accelerated 2D canvas, which would cause the build to fail.
2917 * Source/cmake/FindCairoGL.cmake: Set this variables only when
2918 pkg_check_modules() had actually found the relevant component.
2920 2015-08-03 Csaba Osztrogonác <ossy@webkit.org>
2922 [CMake] Add an option to build AllInOne files
2923 https://bugs.webkit.org/show_bug.cgi?id=102647
2925 Reviewed by Alex Christensen.
2927 * Source/cmake/OptionsEfl.cmake: Disabled by default.
2928 * Source/cmake/OptionsGTK.cmake: Disabled by default.
2929 * Source/cmake/OptionsWindows.cmake: Enabled by default.
2930 * Source/cmake/WebKitFeatures.cmake:
2931 * Source/cmake/WebKitMacros.cmake:
2933 2015-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
2935 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.5 release.
2937 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
2939 2015-07-31 Alex Christensen <achristensen@webkit.org>
2941 Prepare for debug CMake builds on Windows.
2942 https://bugs.webkit.org/show_bug.cgi?id=147484
2944 Reviewed by Tim Horton.
2946 * Source/cmake/OptionsWindows.cmake:
2947 Don't use debug runtimes in debug builds because the dependencies are only built with multithreaded runtimes.
2949 2015-07-30 Joonghun Park <jh718.park@samsung.com>
2951 [EFL] Enable IndexedDB based on DatabaseProcess
2952 https://bugs.webkit.org/show_bug.cgi?id=147221
2954 Reviewed by Csaba Osztrogonác.
2956 * Source/cmake/OptionsEfl.cmake:
2958 2015-07-30 Alex Christensen <achristensen@webkit.org>
2960 Build AppleWin port with CMake
2961 https://bugs.webkit.org/show_bug.cgi?id=147385
2963 Reviewed by Martin Robinson.
2965 * Source/cmake/OptionsWindows.cmake:
2966 Use the static multithreaded runtime. Based on
2967 http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F
2969 2015-07-29 Andy VanWagoner <thetalecrafter@gmail.com>
2971 Implement basic types for ECMAScript Internationalization API
2972 https://bugs.webkit.org/show_bug.cgi?id=146926
2974 Reviewed by Benjamin Poulain.
2976 Enable flag now that the basic objects are in place.
2978 * Source/cmake/WebKitFeatures.cmake: enable INTL
2980 2015-07-29 Basile Clement <basile_clement@apple.com>
2982 Remove native call inlining
2983 https://bugs.webkit.org/show_bug.cgi?id=147417
2985 Rubber-stamped by Filip Pizlo.
2987 * Source/cmake/OptionsEfl.cmake:
2988 * Source/cmake/WebKitFeatures.cmake:
2990 2015-07-28 Yusuke Suzuki <utatane.tea@gmail.com>
2992 [ES6] Add ENABLE_ES6_MODULES compile time flag with the default value "false"
2993 https://bugs.webkit.org/show_bug.cgi?id=147350
2995 Reviewed by Sam Weinig.
2997 * Source/cmake/WebKitFeatures.cmake:
2999 2015-07-27 Alex Christensen <achristensen@webkit.org>
3001 Use Ninja on Windows.
3002 https://bugs.webkit.org/show_bug.cgi?id=147228
3004 Reviewed by Martin Robinson.
3006 * Source/cmake/OptionsWindows.cmake:
3007 Only use /MP when using generated Visual Studio solution files to build.
3008 It makes compiling parallel in MSVC, but Ninja doesn't like it.
3010 2015-07-27 Alex Christensen <achristensen@webkit.org>
3012 Progress towards building AppleWin with CMake
3013 https://bugs.webkit.org/show_bug.cgi?id=147325
3015 Reviewed by Martin Robinson.
3017 * Source/cmake/OptionsWindows.cmake:
3018 Link with 64-bit libraries if building 64-bit binaries.
3019 Don't run regular expressions on empty strings when using Ninja.
3020 Removed DebugSuffix Visual Studio environment variables.
3022 2015-07-23 Alex Christensen <achristensen@webkit.org>
3024 Remove compile and runtime flags for promises.
3025 https://bugs.webkit.org/show_bug.cgi?id=147244
3027 Reviewed by Yusuke Suzuki.
3029 * Source/cmake/OptionsMac.cmake:
3030 * Source/cmake/OptionsWindows.cmake:
3031 * Source/cmake/WebKitFeatures.cmake:
3033 2015-07-22 Sukolsak Sakshuwong <sukolsak@gmail.com>
3035 Add ENABLE_WEBASSEMBLY feature flag for WebAssembly
3036 https://bugs.webkit.org/show_bug.cgi?id=147212
3038 Reviewed by Filip Pizlo.
3040 * Source/cmake/WebKitFeatures.cmake:
3042 2015-07-22 Alex Christensen <achristensen@webkit.org>
3044 Fix quirks in CMake build on Mac and Windows
3045 https://bugs.webkit.org/show_bug.cgi?id=147174
3047 Reviewed by Gyuyoung Kim.
3050 * Source/cmake/OptionsWindows.cmake:
3051 Added options I removed in r187022. They are indeed needed.
3052 * Source/cmake/WebKitFS.cmake:
3053 Make the DerivedSources/WebKit directory.
3055 2015-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
3057 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.4 release.
3059 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3061 2015-07-20 Alex Christensen <achristensen@webkit.org>
3063 Resurrect CMake build on Windows.
3064 https://bugs.webkit.org/show_bug.cgi?id=147083
3066 Reviewed by Gyuyoung Kim.
3068 * Source/cmake/OptionsCommon.cmake:
3069 * Source/cmake/OptionsWindows.cmake:
3070 Change features to get it to compile. Still not a complete feature set.
3072 2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
3074 [GTK] Add seccomp filters support
3075 https://bugs.webkit.org/show_bug.cgi?id=110014
3077 Reviewed by Žan Doberšek.
3079 Find needed compiler and linker flags for libseccomp.
3081 * Source/cmake/OptionsGTK.cmake:
3083 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
3085 Bring back the GNU ar check to create thin archives on non-Linux systems
3086 https://bugs.webkit.org/show_bug.cgi?id=146681
3088 Reviewed by Martin Robinson.
3090 We already use GNU ar thin archive feature to save time and disk space
3091 on creating static archives, but it is only enabled on Linux. Without
3092 this feature, the debug build of WebCore can be larger than 4 GiB,
3093 which can cause error because GNU ar format uses 32-bit integer to
3094 store offsets in the symbol table. This patch is similar to
3095 https://bugs.webkit.org/show_bug.cgi?id=128596.
3097 * Source/cmake/OptionsCommon.cmake:
3099 2015-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
3101 [GTK] [Wayland] Build by default the X11 and Wayland targets.
3102 https://bugs.webkit.org/show_bug.cgi?id=146057
3104 Reviewed by Carlos Garcia Campos.
3106 * Source/cmake/OptionsGTK.cmake:
3108 2015-07-10 Michael Catanzaro <mcatanzaro@igalia.com>
3110 [GTK] ar warning when linking static libraries
3111 https://bugs.webkit.org/show_bug.cgi?id=144988
3113 Reviewed by Carlos Garcia Campos.
3115 Do not use 'u' when calling ar. This argument conflicts with 'D' and is ignored if 'D' is
3116 used, and 'D' is used by default if binutils is built with --enable-deterministic-archives.
3117 Using 'u' with 'D' causes a warning to be printed when linking static libraries. At least
3118 Fedora and Debian have recently both chosen to use --enable-deterministic-archives, so we
3119 should either stop using 'u' or else add 'U' as well in order to disable deterministic
3120 archives. Using 'U' should result in a somewhat faster build (at least when using the
3121 Makefile generator), but it's unlikely that the difference is significant, so let's simply
3122 remove 'u' until someone determines otherwise. This seems like a better option than adding
3123 'U' so as not to foil distributions' attempts to perform deterministic builds. This also
3124 aligns us with the behavior of upstream CMake (which has never used 'u'). This is a minor
3125 behavior change on distributions that do not use --enable-deterministic-archives, notably
3128 * Source/cmake/OptionsCommon.cmake:
3130 2015-07-03 Emanuele Aina <emanuele.aina@collabora.com>
3132 [GTK] Forcefully disable gtk-doc and gobject-introspection when crossbuilding
3133 https://bugs.webkit.org/show_bug.cgi?id=146590
3135 Reviewed by Martin Robinson.
3137 * Source/PlatformGTK.cmake: override the cached variables to
3138 forcefully disable gtk-doc and gobject-introspection when
3140 * Source/cmake/OptionsGTK.cmake: avoid running gtk-doc to check the
3141 documentation syntax when cross-building.
3144 2015-07-02 Przemek Piorkowski <piorkowskiprzemyslaw@gmail.com>
3146 [EFL] test_ewk2_application_cache_manager has been failed since r185527
3147 https://bugs.webkit.org/show_bug.cgi?id=146016
3149 Reviewed by Gyuyoung Kim.
3151 In order to handle properly WebApplicationCacheManagerProxy implementation which use
3152 WebsiteDataRecord it is necessary to enable PUBLIC_SUFFIX_LIST for EFL.
3153 Implementation of PUBLIC_SUFFIX_LIST already exists for soup so EFL can use it as well.
3155 * Source/cmake/OptionsEfl.cmake: set ENABLE_PUBLIC_SUFFIX_LIST to ON for EFL.
3157 2015-06-30 Andy VanWagoner <thetalecrafter@gmail.com>
3159 Implement ECMAScript Internationalization API
3160 https://bugs.webkit.org/show_bug.cgi?id=90906
3162 Reviewed by Benjamin Poulain.
3164 Begin implementing the Intl apis behind ENABLE_INTL flag.
3165 Create the base Intl namespace object.
3167 * Source/cmake/WebKitFeatures.cmake: add ENABLE_INTL flag
3169 2015-06-30 Philippe Normand <pnormand@igalia.com>
3171 [CMake] Error when gst-plugins-base is missing is too confusing
3172 https://bugs.webkit.org/show_bug.cgi?id=145682
3174 Reviewed by Carlos Garcia Campos.
3176 * Source/cmake/OptionsGTK.cmake: Error out if the required
3177 GStreamer libraries are not found on the host.
3179 2015-06-28 Philip Chimento <philip.chimento@gmail.com>
3181 CairoGL should be checked unconditionally
3182 https://bugs.webkit.org/show_bug.cgi?id=146390
3184 Reviewed by Darin Adler.
3186 * Source/cmake/OptionsGTK.cmake: Move check for CairoGL so that
3187 it is run unconditionally; this is necessary because its result
3188 is used later on, outside of any conditions.
3190 2015-06-27 Carlos Garcia Campos <cgarcia@igalia.com>
3192 [GTK][SOUP] Implement WebCore::PublicSuffix for soup and enable PUBLIC_SUFFIX_LIST for GTK+
3193 https://bugs.webkit.org/show_bug.cgi?id=146318
3195 Reviewed by Sergio Villar Senin.
3197 Enable PUBLIC_SUFFIX_LIST for GTK+.
3199 * Source/cmake/OptionsGTK.cmake:
3201 2015-06-22 Carlos Garcia Campos <cgarcia@igalia.com>
3203 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.3 release.
3205 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3207 2015-06-22 Ryuan Choi <ryuan.choi@navercorp.com>
3209 [EFL] Hyphenation is not supported
3210 https://bugs.webkit.org/show_bug.cgi?id=89830
3212 Reviewed by Gyuyoung Kim.
3214 * Source/cmake/OptionsEfl.cmake: Added an option for LibHyphen.
3216 2015-06-22 Zan Dobersek <zdobersek@igalia.com>
3218 [CMake] Add support for building with various sanitizer tools
3219 https://bugs.webkit.org/show_bug.cgi?id=131941
3221 Reviewed by Martin Robinson.
3223 * Source/PlatformGTK.cmake: Don't generate any documentation
3224 when compiling with sanitizers enabled.
3225 * Source/cmake/OptionsCommon.cmake: Allow linking with
3226 undefined symbols when compiling with sanitizers enabled.
3228 2015-06-21 Philip Chimento <philip.chimento@gmail.com>
3230 libwebkit2gtk fails to link without opengl
3231 https://bugs.webkit.org/show_bug.cgi?id=138332
3233 Reviewed by Carlos Garcia Campos.
3235 * Source/cmake/OptionsGTK.cmake: USE(TEXTURE_MAPPER) must be
3236 enabled regardless of whether OpenGL is, because certain symbols
3237 such as WebCore::GraphicsLayer::create() need to be built.
3239 2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
3241 [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
3242 https://bugs.webkit.org/show_bug.cgi?id=146181
3244 Reviewed by Martin Robinson.
3246 Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
3248 * Source/cmake/OptionsGTK.cmake:
3250 2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
3252 [EFL] Do not consider test directories when DEVELOPER_MODE is OFF
3253 https://bugs.webkit.org/show_bug.cgi?id=146171
3255 Reviewed by Gyuyoung Kim.
3257 * Source/cmake/OptionsEfl.cmake:
3258 Exposed ENABLE_DEVELOPER_MODE to Compiler and CMake definition when DEVELOPER_MODE is ON.
3260 2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
3262 [CMake] FindGTK3.cmake should not modify the values of build options
3263 https://bugs.webkit.org/show_bug.cgi?id=144613
3265 Reviewed by Martin Robinson.
3267 * Source/cmake/FindGTK3.cmake: Do not check or set the value of ENABLE_X11_TARGET and
3268 ENABLE_WAYLAND_TARGET. Instead, simply define the variables GTK3_SUPPORTS_X11 and
3269 GTK3_SUPPORTS_WAYLAND as appropriate. Also, rename GTK_SUPPORTS_GESTURES to
3270 GTK3_SUPPORTS_GESTURES for consistency.
3271 * Source/cmake/OptionsGTK.cmake: Fail the build if the appropriate GTK+ backend is not
3272 available. It's not possible to automatically select a backend correctly anymore, since all
3273 options are set at the same time.
3275 2015-06-19 Csaba Osztrogonác <ossy@webkit.org>
3277 Remove unnecessary svn:executable flags
3278 https://bugs.webkit.org/show_bug.cgi?id=146107
3280 Reviewed by Alexey Proskuryakov.
3282 * ManualTests/iframe_notifications/iframe-reparenting-close-window-child.html: Removed property svn:executable.
3283 * ManualTests/iframe_notifications/iframe-reparenting-close-window-iframe.html: Removed property svn:executable.
3284 * ManualTests/iframe_notifications/iframe-reparenting-close-window.html: Removed property svn:executable.
3285 * ManualTests/select-menu-list-wrongly-positioned.html: Removed property svn:executable.
3286 * ManualTests/svg-text-float-not-removed-crash.html: Removed property svn:executable.
3288 2015-06-18 Ryuan Choi <ryuan.choi@navercorp.com>
3290 [EFL] Use SET_AND_EXPOSE_TO_BUILD instead of definitions
3291 https://bugs.webkit.org/show_bug.cgi?id=146108
3293 Reviewed by Gyuyoung Kim.
3295 * Source/cmake/OptionsEfl.cmake:
3297 2015-06-16 Ryuan Choi <ryuan.choi@navercorp.com>
3299 [EFL] Remove duplicated PUBLIC argument in OptionsEfl.cmake
3300 https://bugs.webkit.org/show_bug.cgi?id=146035
3302 Reviewed by Gyuyoung Kim.
3304 * Source/cmake/OptionsEfl.cmake:
3306 2015-06-16 Carlos Alberto Lopez Perez <clopez@igalia.com>
3308 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
3309 https://bugs.webkit.org/show_bug.cgi?id=145701
3311 Reviewed by Darin Adler.
3313 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
3315 2015-06-15 Jon Honeycutt <jhoneycutt@apple.com>
3317 [iOS] Crash long pressing on <input type=file>
3318 https://bugs.webkit.org/show_bug.cgi?id=146009
3319 <rdar://problem/21234453>
3321 Reviewed by Ryosuke Niwa.
3323 * ManualTests/ios/long-press-input-type-file-crash.html: Added.
3325 2015-06-16 Brent Fulgham <bfulgham@apple.com>
3327 Rollout accidental Xcode project change.
3329 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3331 2015-06-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
3333 [EFL] Bump EWebKit version from 1.11.0 to 1.14.0
3334 https://bugs.webkit.org/show_bug.cgi?id=145909
3336 Reviewed by Csaba Osztrogonác.
3338 Bump EWebKit version based on efl library version used by the EWebKit.
3340 * Source/cmake/OptionsEfl.cmake:
3342 2015-06-11 Commit Queue <commit-queue@webkit.org>
3344 Unreviewed, rolling out r185453.
3345 https://bugs.webkit.org/show_bug.cgi?id=145881
3347 it broke the 32-bit build (Requested by clopez on #webkit).
3351 "[GTK] [Wayland] Should be possible to build with support for
3352 both X11 and Wayland."
3353 https://bugs.webkit.org/show_bug.cgi?id=145701
3354 http://trac.webkit.org/changeset/185453
3356 2015-06-11 Carlos Alberto Lopez Perez <clopez@igalia.com>
3358 [GTK] [Wayland] Should be possible to build with support for both X11 and Wayland.
3359 https://bugs.webkit.org/show_bug.cgi?id=145701
3361 Reviewed by Žan Doberšek.
3363 * Source/cmake/OptionsGTK.cmake: Remove conflicting options.
3365 2015-06-03 Daniel Bates <dabates@apple.com>
3367 Caps lock indicator should not be shown in read-only or disabled field
3368 https://bugs.webkit.org/show_bug.cgi?id=145612
3369 <rdar://problem/21227454>
3371 Reviewed by Darin Adler.
3373 * ManualTests/password-caps-lock-should-not-show-in-read-only-field.html: Added.
3374 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-disabled.html: Added.
3375 * ManualTests/password-caps-lock-should-not-show-when-field-becomes-read-only.html: Added.
3377 2015-06-01 Csaba Osztrogonác <ossy@webkit.org>
3379 [cmake] Suppress parentheses-equality warnings
3380 https://bugs.webkit.org/show_bug.cgi?id=145126
3382 Reviewed by Darin Adler.
3384 * Source/cmake/WebKitHelpers.cmake:
3386 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com>
3388 [CMake] Improve detection and usage of GL/GLES/EGL libraries.
3389 https://bugs.webkit.org/show_bug.cgi?id=145408
3391 Reviewed by Carlos Garcia Campos.
3393 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries.
3394 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port.
3395 Remove it and make the EGL port use the improved FindOpenGLES2.cmake
3397 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL
3398 libraries. Detect also GLX libraries.
3399 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2
3400 libraries. Use find_path() to get the include path.
3401 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2
3403 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2
3404 depending on the libraries found on the system.
3405 Move the detection of GLX (and the include of CMakePushCheckState)
3406 to FindOpenGL.cmake.
3407 Ensure that we only define USE_GLX when we build with OpenGL
3408 (but not with GLESv2).
3410 2015-05-27 Dean Jackson <dino@apple.com>
3412 img.currentSrc problem in strict mode with old picturefill
3413 https://bugs.webkit.org/show_bug.cgi?id=144095
3414 <rdar://problem/21087013>
3416 Reviewed by Simon Fraser.
3418 Add a PICTURE_SIZES flag.
3420 * Source/cmake/OptionsEfl.cmake:
3421 * Source/cmake/OptionsGTK.cmake:
3422 * Source/cmake/OptionsMac.cmake:
3423 * Source/cmake/OptionsWindows.cmake:
3424 * Source/cmake/WebKitFeatures.cmake:
3426 2015-05-27 Carlos Garcia Campos <cgarcia@igalia.com>
3428 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release.
3430 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3432 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
3434 Unreviewed. Export DatabaseProcessMainUnix symbol.
3436 Add DatabaseProcessMainUnix symbol to gtksymbols.filter so that it
3437 is exported in production builds.
3439 * Source/cmake/gtksymbols.filter:
3441 2015-05-25 Carlos Garcia Campos <cgarcia@igalia.com>
3443 [GTK] Enable IndexedDB
3444 https://bugs.webkit.org/show_bug.cgi?id=98932
3446 Reviewed by Žan Doberšek.
3448 * Source/cmake/OptionsGTK.cmake: Enable DATABASE_PROCESS and INDEXED_DATABASE.
3449 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_DATABASE_PROCESS.
3451 2015-05-24 Carlos Garcia Campos <cgarcia@igalia.com>
3453 [GTK] Bump GCC requirements to 4.9.0
3454 https://bugs.webkit.org/show_bug.cgi?id=145211
3456 Reviewed by Žan Doberšek.
3458 It's required to build with IndexedDB support when using GCC,
3459 clang works just fine. See https://bugs.webkit.org/show_bug.cgi?id=98932.
3461 * Source/cmake/OptionsGTK.cmake:
3463 2015-05-18 Michael Catanzaro <mcatanzaro@igalia.com>
3465 [CMake] Ignore warnings in system headers
3466 https://bugs.webkit.org/show_bug.cgi?id=144747
3468 Reviewed by Darin Adler.
3470 Require CMake 2.8.12 when compiling the GTK+ port. This is because we use the
3471 target_include_directories command (added in 2.8.11) in GTK-specific cmake files, and also
3472 use the SYSTEM argument to the command (added in 2.8.12).
3476 2015-05-14 Michael Catanzaro <mcatanzaro@igalia.com>
3478 [CMake] Error out when ruby is too old
3479 https://bugs.webkit.org/show_bug.cgi?id=145014
3481 Reviewed by Martin Robinson.
3483 Error out immediately after checking for Ruby if the ruby executable is not found, or if it
3488 2015-05-14 Zan Dobersek <zdobersek@igalia.com>
3490 [GTK] Enable plugin-related CMake options and variables for the X11 target only
3491 https://bugs.webkit.org/show_bug.cgi?id=144995
3493 Reviewed by Carlos Garcia Campos.
3495 * Source/cmake/OptionsGTK.cmake: Plugins are only supported for
3496 the X11 windowing target at the moment, so the following options
3497 and variables should be enabled or disabled accordingly:
3498 - ENABLE_PLUGIN_PROCESS_GTK2
3499 - ENABLE_NETSCAPE_PLUGIN_API
3500 - ENABLE_PLUGIN_PROCESS
3502 2015-05-12 Ryuan Choi <ryuan.choi@navercorp.com>
3504 Linker fails without -DDEVELOPER_MODE=ON
3505 https://bugs.webkit.org/show_bug.cgi?id=144117
3507 Reviewed by Gyuyoung Kim.
3509 * Source/cmake/OptionsEfl.cmake:
3510 Remove fvisibility flags. linker script will cover the functionality for ewebkit2.so in release mode,
3511 * Source/cmake/eflsymbols.filter: Updated symbol patterns which should be exposed for ewebkit2.
3513 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
3515 CMake defines CAIROGL_FOUND, not CAIRO_GL_FOUND
3516 https://bugs.webkit.org/show_bug.cgi?id=144846
3518 Reviewed by Martin Robinson.
3520 * Source/cmake/FindCairoGL.cmake: Use CAIROGL_* instead of
3521 CAIRO_GL_* throughout, because find_package will define
3523 * Source/cmake/OptionsGTK.cmake: Ditto.
3525 2015-05-10 Philip Chimento <philip.chimento@gmail.com>
3527 [CMake] Some macros need to be defined/undefined, rather than ON/OFF
3528 https://bugs.webkit.org/show_bug.cgi?id=144845
3530 Reviewed by Martin Robinson.
3532 * Source/cmake/OptionsGTK.cmake: Only define MOZ_X11 and XP_UNIX
3533 if their corresponding WTF options are ON. The code in npapi.h
3534 relies on these being undefined if they are to be switched off.
3536 2015-05-09 Yoav Weiss <yoav@yoav.ws>
3538 Remove the PICTURE_SIZES build flag
3539 https://bugs.webkit.org/show_bug.cgi?id=144679
3541 Reviewed by Benjamin Poulain.
3543 Removed the PICTURE_SIZES build time flag.
3545 * Source/cmake/OptionsEfl.cmake:
3546 * Source/cmake/OptionsGTK.cmake:
3547 * Source/cmake/OptionsMac.cmake:
3548 * Source/cmake/OptionsWindows.cmake:
3549 * Source/cmake/WebKitFeatures.cmake:
3551 2015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>
3553 [GTK] [CMake] Check for required X libraries
3554 https://bugs.webkit.org/show_bug.cgi?id=144823
3556 Reviewed by Martin Robinson.
3558 Error out if missing libXcomposite, libXdamage, libXrender, or libXt.
3560 * Source/cmake/OptionsGTK.cmake:
3562 015-05-08 Michael Catanzaro <mcatanzaro@igalia.com>, Martin Robinson <mrobinson@igalia.com>
3564 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
3565 https://bugs.webkit.org/show_bug.cgi?id=144746
3567 Reviewed by Carlos Garcia Campos.
3569 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
3570 what it is defined to, so defining it to 0 effectively turned it on always. Instead set
3571 ENABLE_DEVELOPER_MODE so that we can use the ENABLE macro inside WebKit source code.
3573 * Source/cmake/OptionsGTK.cmake:
3575 2015-05-08 Daniel Bates <dabates@apple.com>
3577 [iOS] WebSQL operations are not performed after device is locked
3578 https://bugs.webkit.org/show_bug.cgi?id=137503
3579 <rdar://problem/20844952>
3581 Rubber-stamped by Alexey Proskuryakov.
3583 Add a manual test to help verify that we do not regress this issue.
3585 * ManualTests/ios/execute-sql-transaction-callback-after-locking-unlocking-device-in-earlier-transaction.html: Added.
3587 2015-05-08 Commit Queue <commit-queue@webkit.org>
3589 Unreviewed, rolling out r183945.
3590 https://bugs.webkit.org/show_bug.cgi?id=144789
3592 "It broke all the GTK+ tests" (Requested by KaL on #webkit).
3596 "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
3597 https://bugs.webkit.org/show_bug.cgi?id=144746
3598 http://trac.webkit.org/changeset/183945
3600 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com>
3602 Cleanup after r183940
3603 https://bugs.webkit.org/show_bug.cgi?id=144768
3607 Looks like the empty directories were not deleted.
3609 * Source/PAL: Removed.
3610 * Source/PAL/Configurations: Removed.
3611 * Source/PAL/PAL.xcodeproj: Removed.
3612 * Source/PAL/graphics: Removed.
3614 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com>
3616 [GTK] Checks for DEVELOPMENT_BUILD are all wrong
3617 https://bugs.webkit.org/show_bug.cgi?id=144746
3619 Reviewed by Martin Robinson.
3621 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not
3622 what it is defined to, so defining it to 0 effectively turned it on always.
3624 * Source/cmake/OptionsGTK.cmake:
3626 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
3628 Revert "Introducing the Platform Abstraction Layer (PAL)"
3629 https://bugs.webkit.org/show_bug.cgi?id=144751
3633 PAL should be a new target inside WebCore, rather than a top-level folder.
3635 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
3637 2015-05-07 Carlos Garcia Campos <cgarcia@igalia.com>
3639 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.1 release.
3641 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
3643 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com>
3645 Introducing the Platform Abstraction Layer (PAL)
3646 https://bugs.webkit.org/show_bug.cgi?id=143358
3648 Reviewed by Simon Fraser.
3650 * WebKit.xcworkspace/contents.xcworkspacedata: Add it to the workspace.
3652 2015-05-04 Csaba Osztrogonác <ossy@webkit.org>
3654 [cmake] Disable GNU Gold linker on Cortex A53
3655 https://bugs.webkit.org/show_bug.cgi?id=144382
3657 Reviewed by Carlos Garcia Campos.
3659 * Source/cmake/OptionsCommon.cmake:
3661 2015-05-01 Martin Robinson <mrobinson@igalia.com>
3663 USE(...) macro should expect unprefixed variables
3664 https://bugs.webkit.org/show_bug.cgi?id=144454
3666 Reviewed by Daniel Bates.
3668 * Source/cmake/OptionsAppleWin.cmake: Replace all occurrences WTF_USE with USE.
3669 * Source/cmake/OptionsEfl.cmake: Ditto.
3670 * Source/cmake/OptionsGTK.cmake: Ditto.
3671 * Source/cmake/OptionsMac.cmake: Ditto.
3672 * Source/cmake/OptionsWinCairo.cmake: Ditto.
3673 * Source/cmake/WebKitFeatures.cmake: No longer expose WTF_USE when encountering
3676 2015-04-30 Martin Robinson <mrobinson@igalia.com>
3678 [CMake] Automatically expose WTF_USE_FOO to the build when USE_FOO is exposed
3679 https://bugs.webkit.org/show_bug.cgi?id=144394
3681 Reviewed by Carlos Garcia Campos.
3683 Automatically expose WTF_USE_FOO when USE_FOO is exposed. A side-effect of this change
3684 is that it fixes the redirected XComposite window for GTK+, which was accidentally
3685 disabled in previous reworking of the CMake configuration.
3687 * Source/cmake/OptionsGTK.cmake: We no longer need to expose the WTF_ prefixed
3688 version of USE variables.
3689 * Source/cmake/WebKitFeatures.cmake: Automatically expose WTF_USE_FOO when USE_FOO
3690 is exposed to the build.
3692 2015-04-30 Carlos Garcia Campos <cgarcia@igalia.com>
3694 Unreviewed. Bump GTK+ version numbers.
3696 * Source/cmake/OptionsGTK.cmake:
3698 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
3700 [EFL] CMake should be failed if openwebrtc package does not exist but ENABLE_MEDIA_STREAM is ON
3701 https://bugs.webkit.org/show_bug.cgi?id=144435
3703 Reviewed by Gyuyoung Kim.
3705 This patch adds REQUIRED option for OpenWebRTC when ENABLE_MEDIA_STREAM is ON.
3706 In addition, this adds DEFAULT_PORT_VALUE for ENABLE_MEDIA_STREAM to match with FeatureList.pm
3708 * Source/cmake/OptionsEfl.cmake:
3710 2015-04-29 Joseph Pecoraro <pecoraro@apple.com>
3712 REGRESSION(183583): [Mac] make without SDKROOT has issues
3713 https://bugs.webkit.org/show_bug.cgi?id=144431
3715 Reviewed by Dan Bernstein.
3718 Assume an empty SDKROOT means an macosx variant, so only
3719 enable settings if the SDKROOT is not empty and does not
3722 2015-04-29 Martin Robinson <mrobinson@igalia.com>
3724 Fix the GTK+ build after r183584
3726 * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
3728 2015-04-29 Martin Robinson <mrobinson@igalia.com>
3730 [GTK] Add support for automatic hyphenation
3731 https://bugs.webkit.org/show_bug.cgi?id=44478
3733 Reviewed by Carlos Garcia Campos.
3735 * Source/cmake/FindHyphen.cmake: Added. A CMake module for finding libhyphen.
3736 * Source/cmake/OptionsGTK.cmake: Look for libhyphen and enable hyphenation if found.
3737 * Source/cmakeconfig.h.cmake: Pass through the whether libhyphen is enabled.
3739 2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
3741 Failure when building WebKit for appletvsimulator.
3742 https://bugs.webkit.org/show_bug.cgi?id=144356
3744 Reviewed by Alexey Proskuryakov.
3746 Changes Makefile logic to check for "not OS X" rather than "is iOS" to
3747 make TVOS and WatchOS behave correctly.
3751 2015-04-29 Martin Robinson <mrobinson@igalia.com>
3753 [CMake] [GTK] Organize and clean up unused CMake variables
3754 https://bugs.webkit.org/show_bug.cgi?id=144364
3756 Reviewed by Gyuyoung Kim.
3758 * Source/cmake/OptionsGTK.cmake: Remove unused variables and move variables
3759 specific to certain projects into their PlatformGTK.cmake files.
3761 2015-04-29 Ryuan Choi <ryuan.choi@navercorp.com>
3763 [EFL] Build failure to find gio-unix
3764 https://bugs.webkit.org/show_bug.cgi?id=144083
3766 Reviewed by Gyuyoung Kim.
3768 Original patch by Doug Newgard <scimma22@outlook.com>
3770 * Source/cmake/OptionsEfl.cmake: Moved geoclue block before find_package(GLIB...)
3772 2015-04-28 Ryuan Choi <ryuan.choi@navercorp.com>
3774 [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS
3775 https://bugs.webkit.org/show_bug.cgi?id=143001
3777 Reviewed by Gyuyoung Kim.
3779 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE definition.
3780 * Source/cmake/OptionsGTK.cmake: Ditto.
3782 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
3784 Unreviewed, fix typo in previous commit
3786 libsecretr -> libsecret in the error message.
3788 * Source/cmake/OptionsGTK.cmake:
3790 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
3792 [GTK] Clean up feature detection and make it hard to accidentally build without optional features
3793 https://bugs.webkit.org/show_bug.cgi?id=143546
3795 Reviewed by Martin Robinson.
3797 Add USE_GSTREAMER_MPEGTS option and turn it off by default. Turn off ENABLE_SUBTLE_CRYPTO
3798 by default. Turn on ENABLE_GEOLOCATION by default. Add USE_LIBNOTIFY and turn it on by
3799 default. Fail the build with an informative error message if an optional dependency required
3800 for an enabled feature is not present. Perform find_package commands only when necessary.
3801 Make ENABLE_API_TESTS private. Alphabetize the feature checks (yes, this is actually
3804 * Source/cmake/OptionsGTK.cmake:
3806 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
3808 [GTK] Make all options actually options
3809 https://bugs.webkit.org/show_bug.cgi?id=144106
3811 Reviewed by Martin Robinson.
3813 Use WEBKIT_OPTION_DEFINE to set ENABLE_GTKDOC, ENABLE_INTROSPECTION, ENABLE_X11_TARGET, and
3814 ENABLE_WAYLAND_TARGET.
3816 * Source/cmake/OptionsGTK.cmake:
3818 2015-04-28 Michael Catanzaro <mcatanzaro@igalia.com>
3820 Unreviewed, fix GTK build after r183452
3822 * Source/cmake/OptionsGTK.cmake:
3824 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
3826 [GTK] Add one single option to control all OpenGL-related options
3827 https://bugs.webkit.org/show_bug.cgi?id=144105
3829 Reviewed by Martin Robinson.
3831 Add public ENABLE_OPENGL option, which is mandatory for ENABLE_3D_TRANSFORMS,
3832 ENABLE_ACCELERATED_2D_CANVAS, ENABLE_GLES2, ENABLE_THREADED_COMPOSITOR, ENABLE_WEBGL,
3833 USE_REDIRECTED_XCOMPOSITE_WINDOW, and USE_GSTREAMER_GL. Make ENABLE_GLES2 a proper WebKit
3834 option and move code around accordingly. Use WEBKIT_OPTION_DEPEND and rely on it. Add a
3835 large comment to explain why default value of ENABLE_ACCELERATED_2D_CANVAS is based on the
3836 presence of CairoGL.
3838 * Source/cmake/OptionsGTK.cmake:
3840 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
3842 [GTK] ENABLE_SMOOTH_SCROLLING should be private
3843 https://bugs.webkit.org/show_bug.cgi?id=144306
3845 Reviewed by Martin Robinson.
3847 Make ENABLE_SMOOTH_SCROLLING private instead of public.
3849 * Source/cmake/OptionsGTK.cmake:
3851 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
3853 Rename WTF_USE_3D_GRAPHICS to ENABLE_GRAPHICS_CONTEXT_3D
3854 https://bugs.webkit.org/show_bug.cgi?id=144193
3856 Reviewed by Darin Adler.
3858 * Source/cmake/OptionsEfl.cmake:
3859 * Source/cmake/OptionsGTK.cmake:
3860 * Source/cmake/OptionsWinCairo.cmake:
3861 * Source/cmake/WebKitFeatures.cmake:
3863 2015-04-27 Michael Catanzaro <mcatanzaro@igalia.com>
3865 [CMake] Should be possible for an option to conflict with other options
3866 https://bugs.webkit.org/show_bug.cgi?id=143956
3868 Reviewed by Martin Robinson.
3870 Add WEBKIT_OPTION_CONFLICT macro, which fails the build if conflicting options are on.
3872 * Source/cmake/WebKitFeatures.cmake:
3874 2015-04-22 Martin Robinson <mrobinson@igalia.com>
3876 [CMake] Autogenerate cmakeconfig.h.cmake
3877 https://bugs.webkit.org/show_bug.cgi?id=143997
3879 Reviewed by Csaba Osztrogonác.
3881 * CMakeLists.txt: Create the configuration header as the last part of the cmake run.
3882 * Source/CMakeLists.txt: No longer use configure_file to create cmakeconfig.h.
3883 * Source/cmake/OptionsCommon.cmake: Expose WTF_CPU_ARM64_CORTEXA53 to the build explicitly.
3884 * Source/cmake/OptionsGTK.cmake: Expose variables to the build using SET_AND_EXPOSE_TO_BUILD.
3885 Do some other miscellaneous related cleanup.
3886 * Source/cmake/OptionsEFL.cmake: Expose HAVE_LLVM to the build.
3887 * Source/cmake/WebKitFeatures.cmake: Expose all WebKit features to the build. Add support for
3888 build exposed variables. Add a macro to generate a configuration from them.
3889 * Source/cmakeconfig.h.cmake: Removed.
3891 2015-04-24 Philippe Normand <pnormand@igalia.com>
3893 [JHBuild] Move to upstream OpenWebRTC
3894 https://bugs.webkit.org/show_bug.cgi?id=144145
3896 Reviewed by Carlos Garcia Campos.
3898 * Source/cmake/FindOpenWebRTC.cmake: Check the presence of the
3901 2015-04-26 Yusuke Suzuki <utatane.tea@gmail.com>
3903 [ES6] Implement ES6 template literals
3904 https://bugs.webkit.org/show_bug.cgi?id=142691
3906 Reviewed by Darin Adler.
3908 Add ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX compile time flag.
3910 * Source/cmake/WebKitFeatures.cmake:
3911 * Source/cmakeconfig.h.cmake:
3913 2015-04-25 Martin Robinson <mrobinson@igalia.com>
3915 Rename ENABLE_3D_RENDERING to ENABLE_3D_TRANSFORMS
3916 https://bugs.webkit.org/show_bug.cgi?id=144182
3918 Reviewed by Simon Fraser.
3920 * Source/cmake/OptionsEfl.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
3921 * Source/cmake/OptionsGTK.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
3922 * Source/cmake/OptionsMac.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
3923 * Source/cmake/WebKitFeatures.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
3924 * Source/cmakeconfig.h.cmake: Replace all instances of 3D_RENDERING with 3D_TRANSFORMS.
3926 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3928 [GTK] Add more public options
3929 https://bugs.webkit.org/show_bug.cgi?id=144116
3931 Reviewed by Martin Robinson.
3933 Add ENABLE_ICONDATABASE, ENABLE_JIT, and USE_SYSTEM_MALLOC as public options.
3935 * Source/cmake/OptionsGTK.cmake:
3937 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3939 [CMake] Some internal variables are not marked as advanced
3940 https://bugs.webkit.org/show_bug.cgi?id=143595
3942 Reviewed by Martin Robinson.
3944 * Source/cmake/FindFreetype2.cmake: Mark internal options as advanced.
3945 * Source/cmake/FindHarfBuzz.cmake: Mark HARFBUZZ_ICU_LIBRARIES as advanced.
3947 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3949 [GTK] Mark as advanced the build options we don't want to expose
3950 https://bugs.webkit.org/show_bug.cgi?id=143558
3952 Reviewed by Martin Robinson.
3954 Mark various options as private instead of public.
3956 * Source/cmake/OptionsGTK.cmake:
3958 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3960 [CMake] Should be possible for an option to depend on multiple options
3961 https://bugs.webkit.org/show_bug.cgi?id=143839
3963 Reviewed by Martin Robinson.
3965 Use a list instead of a single variable to track the dependencies of each option. Iterate
3966 over the list as many times as necessary to ensure all options are properly disabled.
3968 * Source/cmake/WebKitFeatures.cmake:
3970 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3972 [CMake] ENABLE_THREADED_COMPOSITOR should not be at the bottom of the options list
3973 https://bugs.webkit.org/show_bug.cgi?id=144103
3975 Reviewed by Martin Robinson.
3977 Just move ENABLE_THREADED_COMPOSITOR so it's alphabetized properly.
3979 * Source/cmake/WebKitFeatures.cmake:
3981 2015-04-23 Michael Catanzaro <mcatanzaro@igalia.com>
3983 [GTK] Fixups for ENABLE_CREDENTIAL_STORAGE
3984 https://bugs.webkit.org/show_bug.cgi?id=144102
3986 Reviewed by Martin Robinson.
3988 Use WEBKIT_OPTION_DEFAULT_PORT_VALUE to set ENABLE_CREDENTIAL_STORAGE instead of doing so
3989 manually. Fail the build if libsecret is not found but ENABLE_CREDENTIAL_STORAGE is set.
3990 Also, do not set ENABLE_CREDENTIAL_STORAGE redundantly.
3992 * Source/cmake/OptionsGTK.cmake:
3994 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
3996 [CMake] Clean up JSC JIT options
3997 https://bugs.webkit.org/show_bug.cgi?id=143998
3999 Reviewed by Filip Pizlo.
4001 * Source/cmake/OptionsEfl.cmake: Remove handling of ENABLE_LLINT_C_LOOP and preprocessor
4002 define for ENABLE_FTL_NATIVE_CALL_INLINING.
4003 * Source/cmake/OptionsMac.cmake: Remove override of ENABLE_LLINT_C_LOOP
4004 * Source/cmake/WebKitFeatures.cmake: Remove ENABLE_LLINT_C_LOOP. Add ENABLE_DFG_JIT and
4005 ENABLE_FTL_NATIVE_CALL_INLINING. Specify proper dependencies for these features.
4006 * Source/cmakeconfig.h.cmake: Remove ENABLE_LLINT_C_LOOP and add ENABLE_DFG_JIT.
4008 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
4010 [CMake] Use lowercase for local variables in macros
4011 https://bugs.webkit.org/show_bug.cgi?id=144059
4013 Reviewed by Martin Robinson.
4015 Convert some variable names to lowercase.
4017 * Source/cmake/WebKitFeatures.cmake:
4019 2015-04-22 Commit Queue <commit-queue@webkit.org>
4021 Unreviewed, rolling out r183116.
4022 https://bugs.webkit.org/show_bug.cgi?id=144060
4024 Inadvertently deleted a file... (Requested by mcatanzaro on
4029 "[CMake] Use lowercase for local variables in macros"
4030 https://bugs.webkit.org/show_bug.cgi?id=144059
4031 http://trac.webkit.org/changeset/183116
4033 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
4035 [CMake] Use lowercase for local variables in macros
4036 https://bugs.webkit.org/show_bug.cgi?id=144059
4038 Reviewed by Martin Robinson.
4040 Convert some variable names to lowercase.
4042 * Source/cmake/WebKitFeatures.cmake:
4044 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
4046 [CMake] Features list should print dots every other row
4047 https://bugs.webkit.org/show_bug.cgi?id=143832
4049 Reviewed by Martin Robinson.
4051 Discount private options when determining whether to print dots on a given row of the
4052 features list. Also, simplify the logic by using only one for loop, and fix a couple errors
4053 (inverted use of SHOULD_PRINT_DOTS, one use of the renamed variable SHOULD_PRINT_POINTS that
4054 wasn't noticed because it only affects the first line, and use of the variable name as a
4055 string in a conditional.)
4057 * Source/cmake/WebKitFeatures.cmake:
4059 2015-04-22 Michael Catanzaro <mcatanzaro@igalia.com>
4061 [CMake] Require specifying visibility of WebKit options
4062 https://bugs.webkit.org/show_bug.cgi?id=143831
4064 Reviewed by Alex Christensen.
4066 * Source/cmake/OptionsEfl.cmake: Specify all options as PUBLIC
4067 * Source/cmake/OptionsGTK.cmake: Specify all options as PUBLIC
4068 * Source/cmake/OptionsMac.cmake: Specify all options as PRIVATE
4069 * Source/cmake/OptionsWindows.cmake: Specify all options as PUBLIC
4070 * Source/cmake/WebKitFeatures.cmake: Require specifying options as PUBLIC or PRIVATE.
4071 Remove WEBKIT_OPTION_DEFINE_PUBLIC and WEBKIT_OPTION_PRIVATE_PORT_VALUE. Specify all
4072 cross-platform options as PRIVATE.
4074 2015-04-19 Gyuyoung Kim <gyuyoung.kim@webkit.org>
4076 [CMake] Synchronize variables between WebKitFeatures.cmake and cmakedonfig.h.cmake
4077 https://bugs.webkit.org/show_bug.cgi?id=143935
4079 Reviewed by Darin Adler.
4081 Some variables aren't defined in these files or unused variables aren't removed. This
4082 patch cleans up it as well as fix wrong alphabet order.
4084 * Source/cmake/WebKitFeatures.cmake:
4085 * Source/cmakeconfig.h.cmake:
4087 2015-04-19 Simon Fraser <simon.fraser@apple.com>
4089 Restore the WebKit.xcworkspace to the way it was before r182899,
4090 which inadvertently added the Source directory and a couple of source
4093 * WebKit.xcworkspace/contents.xcworkspacedata:
4095 2015-04-16 Basile Clement <basile_clement@apple.com>
4097 Extract the allocation profile from JSFunction into a rare object
4098 https://bugs.webkit.org/show_bug.cgi?id=143807
4100 Reviewed by Filip Pizlo.
4102 * WebKit.xcworkspace/contents.xcworkspacedata:
4104 2015-04-16 Csaba Osztrogonác <ossy@webkit.org>
4106 [EFL] Bump LLVM to version 3.6.0 on X86_64
4107 https://bugs.webkit.org/show_bug.cgi?id=143604
4109 Reviewed by Gyuyoung Kim.
4111 * Source/cmake/FindLLVM.cmake: Added version handling.
4112 * Source/cmake/OptionsEfl.cmake: Require LLVM 3.6.0 on X86_64 and patched LLVM 3.5.0 on AArch64.
4114 2015-04-15 Timothy Horton <timothy_horton@apple.com>
4116 Custom CSS cursors do not use -webkit-image-set on retina displays
4117 https://bugs.webkit.org/show_bug.cgi?id=120783
4119 Reviewed by Beth Dakin.
4120 Patch by Evan Wallace <evan.exe@gmail.com>.
4122 Add a manual test for custom CSS cursors on retina displays.
4124 * ManualTests/retina-cursors.html: Added.
4126 2015-04-15 Alex Christensen <achristensen@webkit.org>
4128 Progress towards CMake on Mac.
4129 https://bugs.webkit.org/show_bug.cgi?id=143785
4131 Reviewed by Csaba Osztrogonác.
4134 * Source/cmake/OptionsMac.cmake:
4135 * Source/cmake/WebKitFS.cmake:
4137 2015-04-10 Jon Honeycutt <jhoneycutt@apple.com>
4139 Cannot click "Next" button on Google two-factor auth setup page
4141 <https://bugs.webkit.org/show_bug.cgi?id=143624>
4142 <rdar://problem/19175714>
4144 Reviewed by Darin Adler.
4146 * ManualTests/button-that-focuses-itself-on-click.html: Added.
4148 2015-04-13 Michael Catanzaro <mcatanzaro@igalia.com>
4150 [cmake] REGRESSION(182663): It broke feature dependency handling
4151 https://bugs.webkit.org/show_bug.cgi?id=143665
4153 Reviewed by Csaba Osztrogonác.
4155 Don't try to check the value of options before defining the options.
4157 * Source/cmake/WebKitFeatures.cmake:
4159 2015-04-13 Csaba Osztrogonác <ossy@webkit.org>
4161 [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system
4162 https://bugs.webkit.org/show_bug.cgi?id=143664
4164 Reviewed by Gyuyoung Kim.
4166 * Source/cmake/OptionsEfl.cmake:
4167 * Source/cmake/OptionsGTK.cmake:
4168 * Source/cmake/WebKitFeatures.cmake:
4169 * Source/cmakeconfig.h.cmake:
4171 2015-04-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
4173 [EFL] Enable Media Source
4174 https://bugs.webkit.org/show_bug.cgi?id=143635
4176 Reviewed by Csaba Osztrogonác.
4178 * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
4180 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
4182 [CMake] Miscellaneous issues in WebKitFeatures.cmake
4183 https://bugs.webkit.org/show_bug.cgi?id=143636
4185 Reviewed by Martin Robinson.
4187 Rename _WEBKIT_AVAILABLE_OPTIONS_INITIALVALUE_ variables to
4188 _WEBKIT_AVAILABLE_OPTIONS_INITIAL_VALUE_
4190 Rename _WEBKIT_AVAILABLE_OPTIONS_ISPUBLIC_ variables to
4191 _WEBKIT_AVAILABLE_OPTIONS_IS_PUBLIC_
4193 Rename _SHOULD_PRINT_POINTS to _SHOULD_PRINT_DOTS
4195 Update USE_SYSTEM_MALLOC description to not mention TCmalloc
4197 Fix ENABLE_TOUCH_SLIDER so that it can be used
4201 * Source/cmake/WebKitFeatures.cmake:
4203 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
4205 [CMake] Print sorted feature list at the very end of the configure process
4206 https://bugs.webkit.org/show_bug.cgi?id=143596
4208 Reviewed by Martin Robinson.
4210 * CMakeLists.txt: Call PRINT_WEBKIT_OPTIONS at the bottom of the file.
4211 * Source/cmake/WebKitFeatures.cmake: Split option printing into PRINT_WEBKIT_OPTIONS macro,
4212 and sort the options before printing. Reorder some code so that features still get
4213 propagated to the bindings generators.
4215 2015-04-11 Michael Catanzaro <mcatanzaro@igalia.com>
4217 [CMake] Options should be marked as advanced by default
4218 https://bugs.webkit.org/show_bug.cgi?id=143572
4220 Reviewed by Gyuyoung Kim.
4222 Options defined with WEBKIT_OPTION_DEFINE are now advanced so that they are hidden from
4223 users by default, unless WEBKIT_OPTION_DEFAULT_PORT_VALUE is used. Add new macros
4224 WEBKIT_OPTION_DEFINE_PUBLIC to define an option that's not hidden by default, to be used
4225 for adding port-specific options, and WEBKIT_OPTION_PRIVATE_PORT_VALUE to override an
4226 option without making it public.
4228 * Source/cmake/WebKitFeatures.cmake:
4230 2015-04-10 Gyuyoung Kim <gyuyoung.kim@webkit.org>
4232 [CMake] Remove unnecessary ENABLE_WEBCORE switch
4233 https://bugs.webkit.org/show_bug.cgi?id=143584
4235 Reviewed by Csaba Osztrogonác.
4237 WebCore should be built for all ports. So ENABLE_WEBCORE switch looks be redundant.
4241 * Source/CMakeLists.txt:
4242 * Source/cmake/OptionsGTK.cmake:
4243 * Source/cmake/WebKitFS.cmake:
4245 2015-04-08 Filip Pizlo <fpizlo@apple.com>
4247 Unreviewed, revert accidental commit.
4251 2015-04-08 Alex Christensen <achristensen@webkit.org> and Patrick Gansterer <paroga@webkit.org>
4253 Add CMake build system for WinCairo port.
4254 https://bugs.webkit.org/show_bug.cgi?id=115944
4256 Reviewed by Chris Dumez.
4258 * Source/cmake/OptionsWindows.cmake:
4259 * Source/cmake/WebKitMacros.cmake:
4260 Make ADD_PRECOMPILED_HEADER more like http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
4262 2015-04-06 Alberto Garcia <berto@igalia.com>
4264 [GTK] Fix HPPA build
4265 https://bugs.webkit.org/show_bug.cgi?id=143453
4267 Reviewed by Darin Adler.
4269 Add HPPA to the list of supported CPUs.
4273 2015-04-03 Csaba Osztrogonác <ossy@webkit.org>
4275 Unreviewed, kick the GTK bots to fix an incremental build issue.
4277 * Source/cmake/OptionsGTK.cmake:
4279 2015-04-03 Zan Dobersek <zdobersek@igalia.com>
4281 Fix the EFL and GTK build after r182243
4282 https://bugs.webkit.org/show_bug.cgi?id=143361
4284 Reviewed by Csaba Osztrogonác.
4286 * Source/PlatformEfl.cmake: Add a custom command that copies
4287 the InspectorBackendCommands.js file into the proper directory
4288 under DerivedSources/WebInspectorUI/.
4290 2015-04-01 Alex Christensen <achristensen@webkit.org>
4292 Progress towards CMake on Windows and Mac.
4293 https://bugs.webkit.org/show_bug.cgi?id=143293
4295 Reviewed by Filip Pizlo.
4298 Set DERIVED_SOURCES_WTF_DIR for Windows.
4299 * Source/CMakeLists.txt:
4300 Don't compile bmalloc on Windows.
4301 * Source/cmake/OptionsCommon.cmake:
4302 Use the absolute path of the C preprocessor.
4303 * Source/cmake/OptionsWinCairo.cmake:
4304 Added needed definitions.
4305 * Source/cmake/OptionsWindows.cmake:
4306 Set some default values and removed support for old Visual Studio versions before /MP.
4307 * Source/cmake/WebKitFS.cmake:
4308 Make WTF DerivedSources directory.
4309 * Source/cmake/WebKitMacros.cmake:
4310 Added ADD_PRECOMPILED_HEADER macro based on
4311 http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake
4313 2015-04-01 Gwang Yoon Hwang <yoon@igalia.com>
4315 Use colored diagnostics when building with cmake + ninja + clang
4316 https://bugs.webkit.org/show_bug.cgi?id=143297
4318 Reviewed by Žan Doberšek.
4320 Because that ninja sets subprocess stdout/stderr to a pipe, clang
4321 disables colored output.
4322 This patch forces clang to use colored diagnostics when we are using
4325 * Source/cmake/OptionsCommon.cmake:
4327 2015-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>
4329 [CMake] Update old CMakeList.txt in gtest
4330 https://bugs.webkit.org/show_bug.cgi?id=143192
4332 Reviewed by Darin Adler.
4334 CMake ports have used cmake/gtest/CMakeLists.txt instead of ThirdParty/test/CMakeLists.txt
4335 in order to build gtest. However it looks ThirdParty/test/CMakeLists.txt won't be used anymore.
4336 So this patch moves cmake/gtest/CMakeLists.txt to ThirdPart/test/CMakeLists.txt, and use it.
4338 * Source/CMakeLists.txt:
4339 * Source/cmake/gtest/CMakeLists.txt: Removed.
4341 2015-03-27 Gyuyoung Kim <gyuyoung.kim@samsung.com>
4343 [CMake] Remove unnecessary INCLUDE_IF_EXISTS macro
4344 https://bugs.webkit.org/show_bug.cgi?id=143138
4346 Reviewed by Csaba Osztrogonác.
4348 INCLUDE_IF_EXISTS isn't used except for 2 places. However those uses can
4349 be replaced with WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS.
4351 * Source/cmake/OptionsWindows.cmake:
4352 Set "PORT" instead of "PORT_FALLBACK" because there is no benefit to define PORT_FALLBACK.
4353 * Source/cmake/WebKitMacros.cmake:
4355 2015-03-27 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
4357 [GStreamer] share GL context in pipeline, part 2
4358 https://bugs.webkit.org/show_bug.cgi?id=143049
4360 Reviewed by Carlos Garcia Campos.
4362 * Source/cmake/OptionsGTK.cmake: USE_GSTREAMER_GL is set only if
4363 OpenGL/ES2 is found and GLX/EGL is found too.
4365 2015-03-26 Alex Christensen <achristensen@webkit.org>
4367 Progress towards CMake on Mac.
4368 https://bugs.webkit.org/show_bug.cgi?id=143112
4370 Reviewed by Chris Dumez.
4372 * Source/cmake/OptionsMac.cmake:
4374 2015-03-24 Csaba Osztrogonác <ossy@webkit.org>
4376 [EFL] Add OpenWebRTC in jhbuild
4377 https://bugs.webkit.org/show_bug.cgi?id=142778
4379 Reviewed by Gyuyoung Kim.
4381 Original patch by Philippe Normand <pnormand@igalia.com>
4383 * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
4384 mediastream build is enabled.
4386 2015-03-23 Carlos Garcia Campos <cgarcia@igalia.com>
4388 [GTK] Add a configure option to build without Redirected XComposite Window
4389 https://bugs.webkit.org/show_bug.cgi?id=142865
4391 Reviewed by Žan Doberšek.
4393 The Redirected XComposite Window was added to support some
4394 features like GtkOverlay, but in cases where we don't need such
4395 features, it's more efficient to use the XID of the WebKitWebView
4396 window as the native surface handle for the accelerated
4397 compositing. This patch adds USE_REDIRECTED_XCOMPOSITE_WINDOW,
4398 that is enabled by default for X11 target when OpenGL is enabled.
4400 * Source/cmake/OptionsGTK.cmake:
4402 2015-03-20 Zan Dobersek <zdobersek@igalia.com>
4404 [GTK] Search for the Wayland dependency when enabling Wayland target
4405 https://bugs.webkit.org/show_bug.cgi?id=142876
4407 Reviewed by Carlos Garcia Campos.
4409 * Source/cmake/OptionsGTK.cmake: The Wayland dependency isn't a public
4410 requirement of either the GTK+ or GDK pkg-config files, so we have to
4411 search for it ourselves when WebKitGTK+ has been configured to support
4412 the Wayland windowing target.
4414 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
4416 Unreviewed, kick the GTK bots to regenerate makefile.
4417 https://bugs.webkit.org/show_bug.cgi?id=137394
4419 * Source/cmake/OptionsEfl.cmake: Revert my last accidenatal change.
4420 * Source/cmake/OptionsGTK.cmake: Really kick the GTK bots.
4422 2015-03-20 Csaba Osztrogonác <ossy@webkit.org>
4424 Unreviewed, kick the GTK bots to regenerate makefile.
4425 https://bugs.webkit.org/show_bug.cgi?id=137394
4427 * Source/cmake/OptionsEfl.cmake:
4429 2015-03-19 Csaba Osztrogonác <ossy@webkit.org>
4431 [GTK] Fix inspector userinterface related incremental build issue
4432 https://bugs.webkit.org/show_bug.cgi?id=142849
4434 Reviewed by Carlos Garcia Campos.
4436 * Source/cmake/OptionsGTK.cmake: Revert r181733.
4438 2015-03-18 Csaba Osztrogonác <ossy@webkit.org>
4440 Unreviewed, kick the GTK bots to regenerate makefile.
4442 * Source/cmake/OptionsGTK.cmake:
4444 2015-03-17 Ryuan Choi <ryuan.choi@navercorp.com>
4446 [EFL] Expose JavaScript binding interface through ewk_extension
4447 https://bugs.webkit.org/show_bug.cgi?id=142033
4449 Reviewed by Gyuyoung Kim.
4451 * Source/cmake/OptionsEfl.cmake: Added HEADER_INSTALL_DIR variable.
4453 2015-03-17 Philippe Normand <pnormand@igalia.com>
4455 [GTK] basic OpenWebRTC build support
4456 https://bugs.webkit.org/show_bug.cgi?id=142393
4458 Reviewed by Carlos Garcia Campos.
4460 * Source/cmake/FindOpenWebRTC.cmake: Added.
4461 * Source/cmake/OptionsGTK.cmake: Look for OpenWebRTC library if
4462 mediastream build is enabled.
4464 2015-03-17 Gyuyoung Kim <gyuyoung.kim@samsung.com>
4466 [CMake][EFL] Build test tools only for developer mode
4467 https://bugs.webkit.org/show_bug.cgi?id=142761
4469 Reviewed by Csaba Osztrogonác.
4471 Do not build EFL MiniBrowser, WebKitTestRunner, and ImageDiff on production mode.
4473 * Source/cmake/OptionsEfl.cmake:
4474 * Source/cmake/OptionsGTK.cmake: Move ENABLE_MINIBROWSER to common place.
4475 * Source/cmake/WebKitFeatures.cmake: Define ENABLE_MINIBROWSER variable.
4476 * Source/cmakeconfig.h.cmake:
4478 2015-03-16 Ryosuke Niwa <rniwa@webkit.org>
4480 Enable ES6 classes by default
4481 https://bugs.webkit.org/show_bug.cgi?id=142774
4483 Reviewed by Gavin Barraclough.
4485 * Source/cmake/WebKitFeatures.cmake:
4487 2015-03-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
4489 [CMake][EFL] Rearrange OptionEFL.cmake to improve readability
4490 https://bugs.webkit.org/show_bug.cgi?id=142722
4492 Reviewed by Csaba Osztrogonác.
4494 Categorize to define cmake variables, to find necessary packages,
4495 use upper case for "glib_conponents" cmake variable name, re-arrange
4496 wrong alphabet sorting, and so on.
4498 * CMakeLists.txt: Remove WinCE port.
4499 * Source/cmake/OptionsEfl.cmake:
4501 2015-03-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
4503 [GStreamer] share GL context in pipeline
4504 https://bugs.webkit.org/show_bug.cgi?id=142693
4506 Reviewed by Philippe Normand.
4508 Add search of gstreamer-gl library in the GStreamer installation. If
4509 it is found, WTF_USE_GSTREAMER_GL macro is defined.
4511 * Source/cmake/FindGStreamer.cmake:
4512 * Source/cmake/OptionsGTK.cmake:
4514 2015-03-13 Alex Christensen <achristensen@webkit.org>
4516 Progress towards CMake on Mac.
4517 https://bugs.webkit.org/show_bug.cgi?id=142680
4519 Reviewed by Gyuyoung Kim.
4522 * Source/PlatformMac.cmake: Added stub.
4523 * Source/cmake/OptionsMac.cmake:
4524 Change defines to get CMake working.
4526 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
4528 [GTK] Add an option to enable MiniBrowser for non developer builds and always install it
4529 https://bugs.webkit.org/show_bug.cgi?id=126688
4531 Reviewed by Gustavo Noronha Silva.
4533 Add ENABLE_MINIBROWSER option, enabled by default for development
4534 builds and disabled for production builds unless explicilty enabled.
4536 * Source/cmake/OptionsGTK.cmake:
4538 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com>
4540 [GTK] Do not look for child processes in the UI process binary path
4541 https://bugs.webkit.org/show_bug.cgi?id=135752
4543 Reviewed by Gustavo Noronha Silva.
4545 * Source/cmake/OptionsGTK.cmake: Add -DDEVELOPMENT_BUILD=1 to the
4546 build for development builds.
4548 2015-03-10 Carlos Garcia Campos <cgarcia@igalia.com> and José Dapena Paz <jdapena@igalia.com>
4550 [GTK] Add a configure option to build with OpenGL ES 2
4551 https://bugs.webkit.org/show_bug.cgi?id=142498
4553 Reviewed by Martin Robinson.
4555 Add ENABLE_GLES2 option. It's disabled by default, but if passed
4556 GLES2 is required and OpenGL is not even searched. Otherwise we
4557 search for OpenGL as usual, using it only if present.
4559 * Source/cmake/OptionsGTK.cmake:
4561 2015-03-10 Csaba Osztrogonác <ossy@webkit.org>
4563 [cmake] Handle unused parameter warnings as build errors except in WebKit2
4564 https://bugs.webkit.org/show_bug.cgi?id=142338
4566 Reviewed by Gyuyoung Kim.
4568 * Source/cmake/WebKitHelpers.cmake:
4570 2015-03-03 Daniel Bates <dabates@apple.com>
4572 Convert ManualTests/svg-tooltip.svg to a DRT test
4573 https://bugs.webkit.org/show_bug.cgi?id=140480
4575 Reviewed by Alex Christensen.
4577 * ManualTests/svg-tooltip.svg: Removed.
4579 2015-03-02 Debarshi Ray <debarshir@gnome.org>
4581 REGRESSION(r179409): [GTK] Undefined symbol prevents web extensions from being loaded
4582 https://bugs.webkit.org/show_bug.cgi?id=142165
4584 Reviewed by Carlos Garcia Campos.
4586 * Source/cmake/gtksymbols.filter:
4588 2015-02-26 Csaba Osztrogonác <ossy@webkit.org>
4590 [EFL] Remove unnecessary comment after r179110
4591 https://bugs.webkit.org/show_bug.cgi?id=142042
4593 Reviewed by Gyuyoung Kim.
4595 * Source/cmake/OptionsEfl.cmake:
4597 2015-02-23 Tomas Popela <tpopela@redhat.com>
4599 [GTK] Fails to compile with cmake 3.2.x
4600 https://bugs.webkit.org/show_bug.cgi?id=141796
4602 With cmake 3.2.x we have to explicitly ask for X11 otherwise the
4603 X11_X11_LIB variable won't be set thus the X11 linker flags won't be
4604 added and the build will fail.
4606 Reviewed by Martin Robinson.
4608 * Source/cmake/OptionsGTK.cmake:
4610 2015-02-20 Alexey Proskuryakov <ap@apple.com>
4612 Remove svn:keywords property.
4614 As far as I can tell, the property had no effect on any of these files, but also,
4615 when it has effect it's likely harmful.