| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkWindow_DEFINED | 8 #ifndef SkWindow_DEFINED |
| 9 #define SkWindow_DEFINED | 9 #define SkWindow_DEFINED |
| 10 | 10 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 //////////////////////////////////////////////////////////////////////////////// | 123 //////////////////////////////////////////////////////////////////////////////// |
| 124 | 124 |
| 125 #if defined(SK_USE_SDL) | 125 #if defined(SK_USE_SDL) |
| 126 #include "SkOSWindow_SDL.h" | 126 #include "SkOSWindow_SDL.h" |
| 127 #elif defined(SK_BUILD_FOR_MAC) | 127 #elif defined(SK_BUILD_FOR_MAC) |
| 128 #include "SkOSWindow_Mac.h" | 128 #include "SkOSWindow_Mac.h" |
| 129 #elif defined(SK_BUILD_FOR_WIN) | 129 #elif defined(SK_BUILD_FOR_WIN) |
| 130 #include "SkOSWindow_Win.h" | 130 #include "SkOSWindow_Win.h" |
| 131 #elif defined(SK_BUILD_FOR_ANDROID) | 131 #elif defined(SK_BUILD_FOR_ANDROID) |
| 132 #include "SkOSWindow_Android.h" | 132 #error Android does not support SkOSWindow and SampleApp. Please use Viewer
instead. |
| 133 #elif defined(SK_BUILD_FOR_UNIX) | 133 #elif defined(SK_BUILD_FOR_UNIX) |
| 134 #include "SkOSWindow_Unix.h" | 134 #include "SkOSWindow_Unix.h" |
| 135 #elif defined(SK_BUILD_FOR_IOS) | 135 #elif defined(SK_BUILD_FOR_IOS) |
| 136 #include "SkOSWindow_iOS.h" | 136 #include "SkOSWindow_iOS.h" |
| 137 #endif | 137 #endif |
| 138 | 138 |
| 139 #endif | 139 #endif |
| OLD | NEW |