https://bugs.webkit.org/show_bug.cgi?id=144356
Reviewed by Alexey Proskuryakov.
Changes Makefile logic to check for "not OS X" rather than "is iOS" to
make TVOS and WatchOS behave correctly.
.:
* Source/Makefile:
Tools:
* Makefile:
* WebKitTestRunner/Makefile:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@183583
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
+
+ Failure when building WebKit for appletvsimulator.
+ https://bugs.webkit.org/show_bug.cgi?id=144356
+
+ Reviewed by Alexey Proskuryakov.
+
+ Changes Makefile logic to check for "not OS X" rather than "is iOS" to
+ make TVOS and WatchOS behave correctly.
+
+ * Source/Makefile:
+
2015-04-29 Martin Robinson <mrobinson@igalia.com>
[CMake] [GTK] Organize and clean up unused CMake variables
MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE WebCore WebInspectorUI WebKit WebKit2
-ifneq (,$(findstring iphoneos,$(SDKROOT)))
- MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE WebCore WebKit WebKit2
-else ifneq (,$(findstring iphonesimulator,$(SDKROOT)))
+ifeq (,$(findstring macosx,$(SDKROOT)))
MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE WebCore WebKit WebKit2
endif
+2015-04-29 Jake Nielsen <jacob_nielsen@apple.com>
+
+ Failure when building WebKit for appletvsimulator.
+ https://bugs.webkit.org/show_bug.cgi?id=144356
+
+ Reviewed by Alexey Proskuryakov.
+
+ Changes Makefile logic to check for "not OS X" rather than "is iOS" to
+ make TVOS and WatchOS behave correctly.
+
+ * Makefile:
+ * WebKitTestRunner/Makefile:
+
2015-04-29 Alexey Proskuryakov <ap@apple.com>
Use-after-free when invalidating WKPageForceRepaint callback
MODULES = DumpRenderTree WebKitTestRunner MiniBrowser ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-ifneq (,$(findstring iphone,$(SDKROOT)))
+ifeq (,$(findstring macosx,$(SDKROOT)))
MODULES = DumpRenderTree WebKitTestRunner ../Source/ThirdParty/gtest/xcode TestWebKitAPI
endif
ifeq "$(BUILD_WEBKITTESTRUNNER)" "YES"
-ifneq (,$(findstring iphone,$(SDKROOT)))
+ifeq (,$(findstring macosx,$(SDKROOT)))
ifeq (,$(findstring clean,$(MAKECMDGOALS)))
OTHER_OPTIONS += -target WebKitTestRunnerApp
endif