Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[Win][JSCOnly] Make jsconly build testapi and dlls and copy dlls when…
… running tests https://bugs.webkit.org/show_bug.cgi?id=177279 Patch by Stephan Szabo <stephan.szabo@sony.com> on 2017-10-24 Reviewed by Yusuke Suzuki. .: * Source/cmake/OptionsJSCOnly.cmake: Source/JavaScriptCore: * shell/PlatformJSCOnly.cmake: Added. Tools: * Scripts/build-jsc: * Scripts/run-jsc-stress-tests: Canonical link: https://commits.webkit.org/194900@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@223904 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
55 additions
and 1 deletion.
- +9 −0 ChangeLog
- +9 −0 Source/JavaScriptCore/ChangeLog
- +9 −0 Source/JavaScriptCore/shell/PlatformJSCOnly.cmake
- +9 −0 Source/cmake/OptionsJSCOnly.cmake
- +10 −0 Tools/ChangeLog
- +1 −1 Tools/Scripts/build-jsc
- +8 −0 Tools/Scripts/run-jsc-stress-tests
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,9 @@ | ||
# FIXME: https://bugs.webkit.org/show_bug.cgi?id=178730 | ||
# Make the Windows build and other builds work more similarly | ||
# rather than having a very different build process with | ||
# library/launcher on Windows and build directly into | ||
# executable elsewhere | ||
if (WIN32) | ||
include(PlatformWin.cmake) | ||
add_definitions(-DWIN_CAIRO) | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters