Title: [261713] trunk
Revision
261713
Author
dba...@webkit.org
Date
2020-05-14 15:28:10 -0700 (Thu, 14 May 2020)

Log Message

Include LocalOverrides.xcconfig in all Tools projects
https://bugs.webkit.org/show_bug.cgi?id=211789

Reviewed by Dan Bernstein.

Matches what is done for all Source projects so as to support local overriding of configs.
Source/ThirdParty:

Only allow overrides when building for Debug and Release. Again, this matches what is
being done for Source projects.

* gtest/xcode/Config/DebugProject.xcconfig:
* gtest/xcode/Config/ReleaseProject.xcconfig:

Tools:

* DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
* MiniBrowser/Configurations/DebugRelease.xcconfig:
* MobileMiniBrowser/Configurations/DebugRelease.xcconfig:
* TestWebKitAPI/Configurations/DebugRelease.xcconfig:
* WebKitTestRunner/Configurations/DebugRelease.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ChangeLog (261712 => 261713)


--- trunk/Source/ThirdParty/ChangeLog	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Source/ThirdParty/ChangeLog	2020-05-14 22:28:10 UTC (rev 261713)
@@ -1,3 +1,17 @@
+2020-05-14  Daniel Bates  <daba...@apple.com>
+
+        Include LocalOverrides.xcconfig in all Tools projects
+        https://bugs.webkit.org/show_bug.cgi?id=211789
+
+        Reviewed by Dan Bernstein.
+
+        Matches what is done for all Source projects so as to support local overriding of configs.
+        Only allow overrides when building for Debug and Release. Again, this matches what is
+        being done for Source projects.
+
+        * gtest/xcode/Config/DebugProject.xcconfig:
+        * gtest/xcode/Config/ReleaseProject.xcconfig:
+
 2020-04-25  Darin Adler  <da...@apple.com>
 
         [Cocoa] Deal with another round of Xcode upgrade checks

Modified: trunk/Source/ThirdParty/gtest/xcode/Config/DebugProject.xcconfig (261712 => 261713)


--- trunk/Source/ThirdParty/gtest/xcode/Config/DebugProject.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Source/ThirdParty/gtest/xcode/Config/DebugProject.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -9,6 +9,7 @@
 // 
 
 #include "General.xcconfig"
+#include? "../../../../../LocalOverrides.xcconfig"
 
 // No optimization
 GCC_OPTIMIZATION_LEVEL = 0

Modified: trunk/Source/ThirdParty/gtest/xcode/Config/ReleaseProject.xcconfig (261712 => 261713)


--- trunk/Source/ThirdParty/gtest/xcode/Config/ReleaseProject.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Source/ThirdParty/gtest/xcode/Config/ReleaseProject.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -9,6 +9,7 @@
 // 
 
 #include "General.xcconfig"
+#include? "../../../../../LocalOverrides.xcconfig"
 
 // subconfig/Release.xcconfig
 

Modified: trunk/Tools/ChangeLog (261712 => 261713)


--- trunk/Tools/ChangeLog	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/ChangeLog	2020-05-14 22:28:10 UTC (rev 261713)
@@ -1,3 +1,18 @@
+2020-05-14  Daniel Bates  <daba...@apple.com>
+
+        Include LocalOverrides.xcconfig in all Tools projects
+        https://bugs.webkit.org/show_bug.cgi?id=211789
+
+        Reviewed by Dan Bernstein.
+
+        Matches what is done for all Source projects so as to support local overriding of configs.
+
+        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
+        * MiniBrowser/Configurations/DebugRelease.xcconfig:
+        * MobileMiniBrowser/Configurations/DebugRelease.xcconfig:
+        * TestWebKitAPI/Configurations/DebugRelease.xcconfig:
+        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
+
 2020-05-14  Andres Gonzalez  <andresg...@apple.com>
 
         Fix for crashes in LayoutTests related to TextMarkers in isolated tree mode.

Modified: trunk/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig (261712 => 261713)


--- trunk/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -22,6 +22,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
 #include "Base.xcconfig"
+#include? "../../../../LocalOverrides.xcconfig"
 
 ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 

Modified: trunk/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig (261712 => 261713)


--- trunk/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -22,6 +22,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
 #include "Base.xcconfig"
+#include? "../../../LocalOverrides.xcconfig"
 
 ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 

Modified: trunk/Tools/MobileMiniBrowser/Configurations/DebugRelease.xcconfig (261712 => 261713)


--- trunk/Tools/MobileMiniBrowser/Configurations/DebugRelease.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/MobileMiniBrowser/Configurations/DebugRelease.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -22,6 +22,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
 #include "Base.xcconfig"
+#include? "../../../LocalOverrides.xcconfig"
 
 ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 

Modified: trunk/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig (261712 => 261713)


--- trunk/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -22,6 +22,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
 #include "Base.xcconfig"
+#include? "../../../LocalOverrides.xcconfig"
 
 ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 

Modified: trunk/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig (261712 => 261713)


--- trunk/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig	2020-05-14 22:01:50 UTC (rev 261712)
+++ trunk/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig	2020-05-14 22:28:10 UTC (rev 261713)
@@ -22,6 +22,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
 #include "Base.xcconfig"
+#include? "../../../LocalOverrides.xcconfig"
 
 ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to