Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[CMake] Make PAL headers copies
https://bugs.webkit.org/show_bug.cgi?id=182645 Reviewed by Alex Christensen. Source/WebCore: No new tests. No change in behavior. * CMakeLists.txt: Source/WebCore/PAL: * pal/CMakeLists.txt: * pal/PlatformAppleWin.cmake: * pal/PlatformGTK.cmake: * pal/PlatformMac.cmake: * pal/PlatformWPE.cmake: * pal/PlatformWin.cmake: * pal/PlatformWinCairo.cmake: Tools: * TestWebKitAPI/CMakeLists.txt: Canonical link: https://commits.webkit.org/198475@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@228347 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
204 additions
and 26 deletions.
- +0 −1 Source/WebCore/CMakeLists.txt
- +11 −0 Source/WebCore/ChangeLog
- +15 −0 Source/WebCore/PAL/ChangeLog
- +27 −4 Source/WebCore/PAL/pal/CMakeLists.txt
- +23 −4 Source/WebCore/PAL/pal/PlatformAppleWin.cmake
- +12 −0 Source/WebCore/PAL/pal/PlatformGTK.cmake
- +94 −0 Source/WebCore/PAL/pal/PlatformMac.cmake
- +12 −0 Source/WebCore/PAL/pal/PlatformWPE.cmake
- +0 −14 Source/WebCore/PAL/pal/PlatformWin.cmake
- +1 −1 Source/WebCore/PAL/pal/PlatformWinCairo.cmake
- +0 −1 Source/WebKit/PlatformMac.cmake
- +9 −0 Tools/ChangeLog
- +0 −1 Tools/TestWebKitAPI/CMakeLists.txt
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
@@ -142,7 +142,6 @@ set(WebCore_INCLUDE_DIRECTORIES | ||
"${WEBCORE_DIR}/xml" | ||
"${WEBCORE_DIR}/xml/parser" | ||
"${DERIVED_SOURCES_WEBCORE_DIR}" | ||
) | ||
|
||
set(WebCore_SYSTEM_INCLUDE_DIRECTORIES | ||
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
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
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
@@ -1,2 +1,2 @@ | ||
list(APPEND PAL_HEADERS | ||
) |
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
@@ -389,7 +389,6 @@ list(APPEND WebKit_SOURCES | ||
) | ||
|
||
list(APPEND WebKit_INCLUDE_DIRECTORIES | ||
"${WEBKIT_DIR}/NetworkProcess/cocoa" | ||
"${WEBKIT_DIR}/NetworkProcess/mac" | ||
"${WEBKIT_DIR}/PluginProcess/mac" | ||
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
@@ -169,7 +169,6 @@ include_directories( | ||
${CMAKE_BINARY_DIR} | ||
${CMAKE_SOURCE_DIR}/Source | ||
${JAVASCRIPTCORE_DIR} | ||
${THIRDPARTY_DIR}/gtest/include | ||
${WEBKIT_DIR}/Platform/IPC | ||
${WEBKIT_DIR}/Shared | ||