bump product version to 7.6.3.2-android
[LibreOffice.git] / external / skia / source / skia_compiler.cxx
blob6339a4a4f900687deb3e9119f01bfe344d9047f8
1 /*
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
6 #include <skia_compiler.hxx>
8 // Get the type of compiler that Skia is compiled with.
9 const char* skia_compiler_name()
11 #if defined __clang__
12 return "Clang";
13 #elif defined __GNUC__
14 return "GCC";
15 #elif defined _MSC_VER
16 return "MSVC";
17 #else
18 return "?";
19 #endif