Title: [162476] trunk/Tools
- Revision
- 162476
- Author
- [email protected]
- Date
- 2014-01-21 14:45:36 -0800 (Tue, 21 Jan 2014)
Log Message
[iOS] Tools/Makefile shouldn't build modules DumpRenderTree, gtest, or TestWebKitAPI
https://bugs.webkit.org/show_bug.cgi?id=127368
Reviewed by Tim Horton.
Similar to the build-webkit change in <https://bugs.webkit.org/show_bug.cgi?id=127364>,
we don't want to build DumpRenderTree, gtest, or TestWebKitAPI when running make in
Tools.
* Makefile:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (162475 => 162476)
--- trunk/Tools/ChangeLog 2014-01-21 22:23:53 UTC (rev 162475)
+++ trunk/Tools/ChangeLog 2014-01-21 22:45:36 UTC (rev 162476)
@@ -1,5 +1,18 @@
2014-01-21 Daniel Bates <[email protected]>
+ [iOS] Tools/Makefile shouldn't build modules DumpRenderTree, gtest, or TestWebKitAPI
+ https://bugs.webkit.org/show_bug.cgi?id=127368
+
+ Reviewed by Tim Horton.
+
+ Similar to the build-webkit change in <https://bugs.webkit.org/show_bug.cgi?id=127364>,
+ we don't want to build DumpRenderTree, gtest, or TestWebKitAPI when running make in
+ Tools.
+
+ * Makefile:
+
+2014-01-21 Daniel Bates <[email protected]>
+
[iOS] Don't build DumpRenderTree, gtest, or TestWebKitAPI
https://bugs.webkit.org/show_bug.cgi?id=127364
Modified: trunk/Tools/Makefile (162475 => 162476)
--- trunk/Tools/Makefile 2014-01-21 22:23:53 UTC (rev 162475)
+++ trunk/Tools/Makefile 2014-01-21 22:45:36 UTC (rev 162476)
@@ -1,9 +1,9 @@
MODULES = DumpRenderTree WebKitTestRunner MiniBrowser ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-ifneq (,$(findstring iphoneos,$(SDKROOT)))
- MODULES = ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-else ifneq (,$(findstring iphonesimulator,$(SDKROOT)))
- MODULES = DumpRenderTree ../Source/ThirdParty/gtest/xcode TestWebKitAPI
+ifneq (,$(findstring iphone,$(SDKROOT)))
+ # FIXME: Build projects ../Source/ThirdParty/gtest/xcode, TestWebKitAPI for both device and simulator
+ # and build project DumpRenderTree for simulator.
+ MODULES =
endif
all:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes