Bug 740138 - [Skia] Use SkDebug_android for Android instead of SkDebug_stdio. r=mattwoodrow

This commit is contained in:
George Wright 2012-03-28 18:27:01 -04:00
parent c2463d6658
commit 23a3f54626

View File

@ -282,7 +282,6 @@ CPPSRCS = \
SkUtils.cpp \
SkWriter32.cpp \
SkXfermode.cpp \
SkDebug_stdio.cpp \
SkGlobals_global.cpp \
SkOSFile_stdio.cpp \
SkThread_none.cpp \
@ -309,6 +308,7 @@ endif
ifeq (android,$(MOZ_WIDGET_TOOLKIT))
CPPSRCS += \
SkDebug_android.cpp \
SkFontHost_FreeType.cpp \
SkFontHost_android.cpp \
SkFontHost_gamma.cpp \
@ -318,6 +318,10 @@ CPPSRCS += \
DEFINES += -DSK_BUILD_FOR_ANDROID_NDK
OS_CXXFLAGS += $(CAIRO_FT_CFLAGS)
else
CPPSRCS += \
SkDebug_stdio.cpp \
$(NULL)
endif
ifeq (gtk2,$(MOZ_WIDGET_TOOLKIT))