Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(927)

Unified Diff: src/ports/SkDebug_android.cpp

Issue 1411283005: Start making all .cpp files compile-able on all platforms. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: conditional on expat Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/ports/SkDebug_android.cpp
diff --git a/src/ports/SkDebug_android.cpp b/src/ports/SkDebug_android.cpp
index 4ab9ad24d3f1f1edc06fbc7c5699394286bed991..0a1b59a2cd0a2cba4f27b6607d4712925a0a3345 100644
--- a/src/ports/SkDebug_android.cpp
+++ b/src/ports/SkDebug_android.cpp
@@ -6,6 +6,8 @@
*/
#include "SkTypes.h"
+#if defined(SK_BUILD_FOR_ANDROID)
+
#include <stdio.h>
#define LOG_TAG "skia"
@@ -30,3 +32,5 @@ void SkDebugf(const char format[], ...) {
va_end(args1);
}
+
+#endif//defined(SK_BUILD_FOR_ANDROID)

Powered by Google App Engine
This is Rietveld 408576698