aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/views
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2015-07-29 13:37:27 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-29 13:37:27 -0700
commit3ac6b7551dc7aa182018f96b32f6e516305333ee (patch)
treee2e169ba790548e3d240dfb2dae700effae4bded /include/views
parent0867943b9f91b800ad444dbebf2b7a8573a74b27 (diff)
Remove SK_BUILD_FOR SDL, BREW, and PALM.
SDL isn't an OS anyway, it's just a library views can use. Remaining support for Brew was removed some time ago, and there are currently no uses of SK_BUILD_FOR_PALM. Review URL: https://codereview.chromium.org/1268573002
Diffstat (limited to 'include/views')
-rw-r--r--include/views/SkWindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/views/SkWindow.h b/include/views/SkWindow.h
index 5fa3afcd11..70241b5ff6 100644
--- a/include/views/SkWindow.h
+++ b/include/views/SkWindow.h
@@ -118,7 +118,9 @@ private:
////////////////////////////////////////////////////////////////////////////////
-#if defined(SK_BUILD_FOR_MAC)
+#if defined(SK_USE_SDL)
+ #include "SkOSWindow_SDL.h"
+#elif defined(SK_BUILD_FOR_MAC)
#include "SkOSWindow_Mac.h"
#elif defined(SK_BUILD_FOR_WIN)
#include "SkOSWindow_Win.h"
@@ -126,8 +128,6 @@ private:
#include "SkOSWindow_Android.h"
#elif defined(SK_BUILD_FOR_UNIX)
#include "SkOSWindow_Unix.h"
-#elif defined(SK_BUILD_FOR_SDL)
- #include "SkOSWindow_SDL.h"
#elif defined(SK_BUILD_FOR_IOS)
#include "SkOSWindow_iOS.h"
#endif