1 /*
2  * Copyright 2006 The Android Open Source Project
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #include "SkTypes.h"
9 
10 #if defined(SK_BUILD_FOR_GOOGLE3)
SkDebugfForDumpStackTrace(const char * data,void * unused)11 void SkDebugfForDumpStackTrace(const char* data, void* unused) {
12     SkDebugf("%s", data);
13 }
14 #endif
15