Title: [192293] trunk/Tools
- Revision
- 192293
- Author
- dba...@webkit.org
- Date
- 2015-11-10 21:19:56 -0800 (Tue, 10 Nov 2015)
Log Message
Teach Makefile to build LayoutTestRelay when building for iOS Simulator
https://bugs.webkit.org/show_bug.cgi?id=150849
Reviewed by Alexey Proskuryakov.
Unless variable DO_NOT_BUILD_LAYOUT_TEST_RELAY is non-empty, build LayoutTestRelay when
building WebKit tools.
* Makefile:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (192292 => 192293)
--- trunk/Tools/ChangeLog 2015-11-11 05:10:43 UTC (rev 192292)
+++ trunk/Tools/ChangeLog 2015-11-11 05:19:56 UTC (rev 192293)
@@ -1,3 +1,15 @@
+2015-11-10 Daniel Bates <daba...@apple.com>
+
+ Teach Makefile to build LayoutTestRelay when building for iOS Simulator
+ https://bugs.webkit.org/show_bug.cgi?id=150849
+
+ Reviewed by Alexey Proskuryakov.
+
+ Unless variable DO_NOT_BUILD_LAYOUT_TEST_RELAY is non-empty, build LayoutTestRelay when
+ building WebKit tools.
+
+ * Makefile:
+
2015-11-10 David Kilzer <ddkil...@apple.com>
[check-webkit-style] False positive (readability/enum_casing) on CF-styled enum members
Modified: trunk/Tools/Makefile (192292 => 192293)
--- trunk/Tools/Makefile 2015-11-11 05:10:43 UTC (rev 192292)
+++ trunk/Tools/Makefile 2015-11-11 05:19:56 UTC (rev 192293)
@@ -4,6 +4,9 @@
ifeq (,$(findstring macosx,$(SDKROOT)))
MODULES = DumpRenderTree WebKitTestRunner ../Source/ThirdParty/gtest/xcode TestWebKitAPI
endif
+ ifeq (,$(DO_NOT_BUILD_LAYOUT_TEST_RELAY))
+ MODULES += LayoutTestRelay
+ endif
endif
all:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes