forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xcode] Clean up and modernize some build setting definitions
https://bugs.webkit.org/show_bug.cgi?id=186463 Reviewed by Sam Weinig. Source/bmalloc: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. Source/JavaScriptCore: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. Simplified the definition of WK_PRIVATE_FRAMEWORK_STUBS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. * Configurations/DebugRelease.xcconfig: Removed definition for macOS 10.11. * Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * Configurations/Version.xcconfig: Removed definition for macOS 10.11. * Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. Source/ThirdParty/ANGLE: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. Source/ThirdParty/libwebrtc: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. * Configurations/Version.xcconfig: Removed definitions for macOS 10.10 and 10.11, and added definitions for later versions. * Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. * Configurations/opus.xcconfig: Simplified the definition of SSE4_FLAG now that macOS 10.12 is the earliest supported version. Source/WebCore: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. * Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * Configurations/Version.xcconfig: Removed definition for macOS 10.11. * Configurations/WebCore.xcconfig: Simplified the definition of WK_PRIVATE_FRAMEWORKS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. * Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. Source/WebCore/PAL: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. * Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * Configurations/PAL.xcconfig: Removed WK_PRIVATE_FRAMEWORKS_DIR, because the private framework stubs aren’t used when linking PAL. * Configurations/Version.xcconfig: Removed definition for macOS 10.11. * Configurations/WebKitTargetConditionals.xcconfig: Ditto. Source/WebInspectorUI: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. * Configurations/Version.xcconfig: Ditto. Source/WebKit: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/BaseTarget.xcconfig: Simplified the definition of WK_PRIVATE_FRAMEWORKS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. * Configurations/DebugRelease.xcconfig: Removed definition for macOS 10.11. * Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * Configurations/Version.xcconfig: Removed definition for macOS 10.11. * Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. Source/WebKitLegacy/mac: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. * Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * Configurations/Version.xcconfig: Removed definition for macOS 10.11. * Configurations/WebKitLegacy.xcconfig: Simplified the definition of WK_PRIVATE_FRAMEWORKS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. * Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. Source/WTF: * Configurations/Base.xcconfig: Removed definition for macOS 10.11. * Configurations/DebugRelease.xcconfig: Ditto. Tools: * DumpRenderTree/mac/Configurations/Base.xcconfig: Removed definition for macOS 10.11. Simplified the definition of WK_PRIVATE_FRAMEWORK_STUBS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig: Removed definition for macOS 10.11. * MiniBrowser/Configurations/Base.xcconfig: Ditto. * MiniBrowser/Configurations/DebugRelease.xcconfig: Ditto. * TestWebKitAPI/Configurations/Base.xcconfig: Ditto. * TestWebKitAPI/Configurations/DebugRelease.xcconfig: Ditto. * TestWebKitAPI/Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. * TestWebKitAPI/Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. * WebKitTestRunner/Configurations/Base.xcconfig: Ditto. Also simplified the definition of WK_PRIVATE_FRAMEWORK_STUBS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions * WebKitTestRunner/Configurations/DebugRelease.xcconfig: Removed definition for macOS 10.11. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@232665 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
95eb323
commit 564e7c3
Showing
64 changed files
with
188 additions
and
292 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
[Xcode] Clean up and modernize some build setting definitions | ||
https://bugs.webkit.org/show_bug.cgi?id=186463 | ||
|
||
Reviewed by Sam Weinig. | ||
|
||
* Configurations/Base.xcconfig: Removed definition for macOS 10.11. Simplified the | ||
definition of WK_PRIVATE_FRAMEWORK_STUBS_DIR now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS | ||
is true for all supported Xcode versions. | ||
* Configurations/DebugRelease.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and | ||
ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. | ||
* Configurations/Version.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. | ||
|
||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
Added missing file references to the Configuration group. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
[Xcode] Clean up and modernize some build setting definitions | ||
https://bugs.webkit.org/show_bug.cgi?id=186463 | ||
|
||
Reviewed by Sam Weinig. | ||
|
||
* Configurations/Base.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/DebugRelease.xcconfig: Ditto. | ||
|
||
2018-05-30 David Kilzer <[email protected]> | ||
|
||
ANGLE: Fix clang static analyzer issues in GetExecutablePath() and GetExecutableDirectory() | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
[Xcode] Clean up and modernize some build setting definitions | ||
https://bugs.webkit.org/show_bug.cgi?id=186463 | ||
|
||
Reviewed by Sam Weinig. | ||
|
||
* Configurations/Base.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/DebugRelease.xcconfig: Ditto. | ||
* Configurations/Version.xcconfig: Removed definitions for macOS 10.10 and 10.11, and added | ||
definitions for later versions. | ||
* Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. | ||
* Configurations/opus.xcconfig: Simplified the definition of SSE4_FLAG now that macOS 10.12 | ||
is the earliest supported version. | ||
|
||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
Added missing file references to the Configuration group. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
[Xcode] Clean up and modernize some build setting definitions | ||
https://bugs.webkit.org/show_bug.cgi?id=186463 | ||
|
||
Reviewed by Sam Weinig. | ||
|
||
* Configurations/Base.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/DebugRelease.xcconfig: Ditto. | ||
|
||
2018-06-08 Darin Adler <[email protected]> | ||
|
||
[Cocoa] Remove all uses of NSAutoreleasePool as part of preparation for ARC | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
[Xcode] Clean up and modernize some build setting definitions | ||
https://bugs.webkit.org/show_bug.cgi?id=186463 | ||
|
||
Reviewed by Sam Weinig. | ||
|
||
* Configurations/Base.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/DebugRelease.xcconfig: Ditto. | ||
* Configurations/FeatureDefines.xcconfig: Simplified the definitions of ENABLE_APPLE_PAY and | ||
ENABLE_VIDEO_PRESENTATION_MODE now macOS 10.12 is the earliest supported version. | ||
* Configurations/Version.xcconfig: Removed definition for macOS 10.11. | ||
* Configurations/WebCore.xcconfig: Simplified the definition of WK_PRIVATE_FRAMEWORKS_DIR | ||
now that WK_XCODE_SUPPORTS_TEXT_BASED_STUBS is true for all supported Xcode versions. | ||
* Configurations/WebKitTargetConditionals.xcconfig: Removed definitions for macOS 10.11. | ||
|
||
2018-06-09 Dan Bernstein <[email protected]> | ||
|
||
Added missing file references to the Configuration group. | ||
|
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
Oops, something went wrong.