Index: src/ports/SkOSFile_win.cpp |
diff --git a/src/ports/SkOSFile_win.cpp b/src/ports/SkOSFile_win.cpp |
index 14af458a44a0a90bd76d6fd893744e006454a586..395a3c80a9a8dd2a0144e9995521a92354859055 100644 |
--- a/src/ports/SkOSFile_win.cpp |
+++ b/src/ports/SkOSFile_win.cpp |
@@ -5,6 +5,9 @@ |
* found in the LICENSE file. |
*/ |
+#include "SkTypes.h" |
+#if defined(SK_BUILD_FOR_WIN32) |
+ |
#include "SkOSFile.h" |
#include "SkTFitsIn.h" |
@@ -240,3 +243,5 @@ bool SkOSFile::Iter::next(SkString* name, bool getDir) { |
} |
return self.fHandle != (HANDLE)~0 && get_the_file(self.fHandle, name, dataPtr, getDir); |
} |
+ |
+#endif//defined(SK_BUILD_FOR_WIN32) |