3965825b97
With this change, the CMake build, which does not use DEPS to sync external projects, is able to build and use the same version of libpng that is used in other builds. This will allow all platforms (including Google3 CMake build) to test on the same version of libpng, so we do not need to make SkPngCodec support all versions of libpng. - Update CMakeLists.txt to use the checked in libpng. - Check in libpng version 1.6.22rc01 - Update README.google - Replace our old LICENSE file with the latest one from libpng GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2033063003 CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-x86_64-Release-CMake-Trybot,Build-Mac-Clang-x86_64-Release-CMake-Trybot Review-Url: https://codereview.chromium.org/2033063003
616 lines
17 KiB
Python
616 lines
17 KiB
Python
################################################################################
|
|
# Skylark macros
|
|
################################################################################
|
|
|
|
is_bazel = not hasattr(native, "genmpm")
|
|
|
|
def portable_select(select_dict, bazel_condition, default_condition):
|
|
"""Replaces select() with a Bazel-friendly wrapper.
|
|
|
|
Args:
|
|
select_dict: Dictionary in the same format as select().
|
|
Returns:
|
|
If Blaze platform, returns select() using select_dict.
|
|
If Bazel platform, returns dependencies for condition
|
|
bazel_condition, or empty list if none specified.
|
|
"""
|
|
if is_bazel:
|
|
return select_dict.get(bazel_condition, select_dict[default_condition])
|
|
else:
|
|
return select(select_dict)
|
|
|
|
def skia_select(conditions, results):
|
|
"""Replaces select() for conditions [UNIX, ANDROID, IOS]
|
|
|
|
Args:
|
|
conditions: [CONDITION_UNIX, CONDITION_ANDROID, CONDITION_IOS]
|
|
results: [RESULT_UNIX, RESULT_ANDROID, RESULT_IOS]
|
|
Returns:
|
|
The result matching the platform condition.
|
|
"""
|
|
if len(conditions) != 3 or len(results) != 3:
|
|
fail("Must provide exactly 3 conditions and 3 results")
|
|
|
|
selector = {}
|
|
for i in range(3):
|
|
selector[conditions[i]] = results[i]
|
|
return portable_select(selector, conditions[2], conditions[0])
|
|
|
|
def skia_glob(srcs):
|
|
"""Replaces glob() with a version that accepts a struct.
|
|
|
|
Args:
|
|
srcs: struct(include=[], exclude=[])
|
|
Returns:
|
|
Equivalent of glob(srcs.include, exclude=srcs.exclude)
|
|
"""
|
|
if hasattr(srcs, 'include'):
|
|
if hasattr(srcs, 'exclude'):
|
|
return native.glob(srcs.include, exclude=srcs.exclude)
|
|
else:
|
|
return native.glob(srcs.include)
|
|
return []
|
|
|
|
################################################################################
|
|
## PRIVATE_HDRS
|
|
################################################################################
|
|
|
|
PRIVATE_HDRS_LIST = [
|
|
"include/private/**/*",
|
|
"src/utils/SkWhitelistChecksums.cpp",
|
|
]
|
|
|
|
PRIVATE_HDRS = struct(
|
|
include = PRIVATE_HDRS_LIST,
|
|
)
|
|
|
|
################################################################################
|
|
## BASE_SRCS
|
|
################################################################################
|
|
|
|
# All platform-independent SRCS.
|
|
BASE_SRCS_ALL = struct(
|
|
include = [
|
|
"src/**/*.h",
|
|
"src/**/*.cpp",
|
|
|
|
# Third Party
|
|
"third_party/etc1/*.cpp",
|
|
"third_party/etc1/*.h",
|
|
"third_party/ktx/*.cpp",
|
|
"third_party/ktx/*.h",
|
|
|
|
"third_party/libpng/*.c",
|
|
"third_party/libpng/*.h",
|
|
],
|
|
exclude = PRIVATE_HDRS_LIST + [
|
|
# Exclude platform-dependent files.
|
|
"src/android/*",
|
|
"src/codec/*",
|
|
"src/device/xps/*", # Windows-only. Move to ports?
|
|
"src/doc/*_XPS.cpp", # Windows-only. Move to ports?
|
|
"src/fonts/SkFontMgr_fontconfig.cpp",
|
|
"src/gpu/gl/android/*",
|
|
"src/gpu/gl/egl/*",
|
|
"src/gpu/gl/glfw/*",
|
|
"src/gpu/gl/glx/*",
|
|
"src/gpu/gl/iOS/*",
|
|
"src/gpu/gl/mac/*",
|
|
"src/gpu/gl/win/*",
|
|
"src/images/*",
|
|
"src/opts/**/*",
|
|
"src/ports/**/*",
|
|
"src/utils/android/**/*",
|
|
"src/utils/mac/**/*",
|
|
"src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports?
|
|
"src/utils/win/**/*",
|
|
"src/views/sdl/*",
|
|
"src/views/win/*",
|
|
"src/views/unix/*",
|
|
|
|
# Exclude multiple definitions.
|
|
# TODO(mtklein): Move to opts?
|
|
"src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
|
|
"src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
|
|
"src/gpu/gl/GrGLDefaultInterface_native.cpp",
|
|
"src/gpu/gl/GrGLDefaultInterface_none.cpp",
|
|
|
|
# Exclude files that don't compile with the current DEFINES.
|
|
"src/gpu/gl/mesa/*", # Requires SK_MESA define.
|
|
"src/svg/parser/*", # Missing SkSVG.h.
|
|
|
|
# Conflicting dependencies among Lua versions. See cl/107087297.
|
|
"src/utils/SkLua*",
|
|
|
|
# Not used.
|
|
"src/animator/**/*",
|
|
"src/views/**/*",
|
|
"src/xml/SkBML_Verbs.h",
|
|
"src/xml/SkBML_XMLParser.cpp",
|
|
"src/xml/SkXMLPullParser.cpp",
|
|
|
|
# Currently exclude all vulkan specific files
|
|
"src/gpu/vk/*",
|
|
],
|
|
)
|
|
|
|
# Platform-dependent SRCS for google3-default platform.
|
|
BASE_SRCS_UNIX = struct(
|
|
include = [
|
|
"src/android/*",
|
|
"src/codec/*",
|
|
"src/fonts/SkFontMgr_fontconfig.cpp",
|
|
"src/gpu/gl/GrGLDefaultInterface_none.cpp",
|
|
"src/images/*",
|
|
"src/opts/**/*.cpp",
|
|
"src/opts/**/*.h",
|
|
"src/ports/**/*.cpp",
|
|
"src/ports/**/*.h",
|
|
],
|
|
exclude = [
|
|
"src/opts/*arm*",
|
|
"src/opts/*mips*",
|
|
"src/opts/*NEON*",
|
|
"src/opts/*neon*",
|
|
# Included in :opts_ssse3 library.
|
|
"src/opts/*SSSE3*",
|
|
"src/opts/*ssse3*",
|
|
# Included in :opts_sse4 library.
|
|
"src/opts/*SSE4*",
|
|
"src/opts/*sse4*",
|
|
# Included in :opts_avx or :opts_avx2
|
|
"src/opts/*avx*",
|
|
"src/opts/SkBitmapProcState_opts_none.cpp",
|
|
"src/opts/SkBlitMask_opts_none.cpp",
|
|
"src/opts/SkBlitRow_opts_none.cpp",
|
|
"src/ports/*CG*",
|
|
"src/ports/*WIC*",
|
|
"src/ports/*android*",
|
|
"src/ports/*chromium*",
|
|
"src/ports/*mac*",
|
|
"src/ports/*mozalloc*",
|
|
"src/ports/*nacl*",
|
|
"src/ports/*win*",
|
|
"src/ports/SkFontConfigInterface_direct_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_directory_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_embedded_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_empty_factory.cpp",
|
|
"src/ports/SkFontMgr_empty_factory.cpp",
|
|
"src/ports/SkFontMgr_fontconfig.cpp",
|
|
"src/ports/SkFontMgr_fontconfig_factory.cpp",
|
|
"src/ports/SkImageEncoder_none.cpp",
|
|
"src/ports/SkImageGenerator_none.cpp",
|
|
"src/ports/SkTLS_none.cpp",
|
|
],
|
|
)
|
|
|
|
# Platform-dependent SRCS for google3-default Android.
|
|
BASE_SRCS_ANDROID = struct(
|
|
include = [
|
|
"src/android/*",
|
|
"src/codec/*",
|
|
"src/gpu/gl/GrGLDefaultInterface_none.cpp",
|
|
"src/images/*",
|
|
# TODO(benjaminwagner): Figure out how to compile with EGL.
|
|
"src/opts/**/*.cpp",
|
|
"src/opts/**/*.h",
|
|
"src/ports/**/*.cpp",
|
|
"src/ports/**/*.h",
|
|
],
|
|
exclude = [
|
|
"src/opts/*mips*",
|
|
"src/opts/*SSE2*",
|
|
"src/opts/*SSSE3*",
|
|
"src/opts/*ssse3*",
|
|
"src/opts/*SSE4*",
|
|
"src/opts/*sse4*",
|
|
"src/opts/*avx*",
|
|
"src/opts/*x86*",
|
|
"src/opts/SkBitmapProcState_opts_none.cpp",
|
|
"src/opts/SkBlitMask_opts_none.cpp",
|
|
"src/opts/SkBlitRow_opts_none.cpp",
|
|
"src/ports/*CG*",
|
|
"src/ports/*FontConfig*",
|
|
"src/ports/*WIC*",
|
|
"src/ports/*chromium*",
|
|
"src/ports/*fontconfig*",
|
|
"src/ports/*mac*",
|
|
"src/ports/*mozalloc*",
|
|
"src/ports/*nacl*",
|
|
"src/ports/*win*",
|
|
"src/ports/SkDebug_stdio.cpp",
|
|
"src/ports/SkFontConfigInterface_direct_factory.cpp",
|
|
"src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_directory_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_embedded_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_empty_factory.cpp",
|
|
"src/ports/SkFontMgr_empty_factory.cpp",
|
|
"src/ports/SkImageEncoder_none.cpp",
|
|
"src/ports/SkImageGenerator_none.cpp",
|
|
"src/ports/SkTLS_none.cpp",
|
|
],
|
|
)
|
|
|
|
# Platform-dependent SRCS for google3-default iOS.
|
|
BASE_SRCS_IOS = struct(
|
|
include = [
|
|
"src/android/*",
|
|
"src/codec/*",
|
|
"src/gpu/gl/GrGLDefaultInterface_native.cpp",
|
|
"src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp",
|
|
"src/opts/**/*.cpp",
|
|
"src/opts/**/*.h",
|
|
"src/ports/**/*.cpp",
|
|
"src/ports/**/*.h",
|
|
"src/utils/mac/*.cpp",
|
|
],
|
|
exclude = [
|
|
"src/codec/*Gif*.cpp",
|
|
"src/codec/*Ico*.cpp",
|
|
"src/codec/*Jpeg*.cpp",
|
|
"src/codec/*Webp*.cpp",
|
|
"src/codec/*Png*",
|
|
"src/codec/*Raw*.cpp",
|
|
"src/opts/*mips*",
|
|
"src/opts/*NEON*",
|
|
"src/opts/*neon*",
|
|
"src/opts/*SSE2*",
|
|
"src/opts/*SSSE3*",
|
|
"src/opts/*ssse3*",
|
|
"src/opts/*SSE4*",
|
|
"src/opts/*sse4*",
|
|
"src/opts/*avx*",
|
|
"src/opts/*x86*",
|
|
"src/opts/SkBitmapProcState_opts_none.cpp",
|
|
"src/opts/SkBlitMask_opts_arm*.cpp",
|
|
"src/opts/SkBlitRow_opts_arm*.cpp",
|
|
"src/ports/*CG*",
|
|
"src/ports/*FontConfig*",
|
|
"src/ports/*FreeType*",
|
|
"src/ports/*WIC*",
|
|
"src/ports/*android*",
|
|
"src/ports/*chromium*",
|
|
"src/ports/*fontconfig*",
|
|
"src/ports/*mozalloc*",
|
|
"src/ports/*nacl*",
|
|
"src/ports/*win*",
|
|
"src/ports/SkFontMgr_custom.cpp",
|
|
"src/ports/SkFontConfigInterface_direct_factory.cpp",
|
|
"src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_directory_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_embedded_factory.cpp",
|
|
"src/ports/SkFontMgr_custom_empty_factory.cpp",
|
|
"src/ports/SkFontMgr_empty_factory.cpp",
|
|
"src/ports/SkImageGenerator_none.cpp",
|
|
"src/ports/SkTLS_none.cpp",
|
|
],
|
|
)
|
|
|
|
################################################################################
|
|
## SSSE3/SSE4/AVX/AVX2 SRCS
|
|
################################################################################
|
|
|
|
SSSE3_SRCS = struct(
|
|
include = [
|
|
"src/opts/*SSSE3*.cpp",
|
|
"src/opts/*ssse3*.cpp",
|
|
],
|
|
)
|
|
|
|
SSE4_SRCS = struct(
|
|
include = [
|
|
"src/opts/*SSE4*.cpp",
|
|
"src/opts/*sse4*.cpp",
|
|
],
|
|
)
|
|
|
|
AVX_SRCS = struct(
|
|
include = [
|
|
"src/opts/*_avx.cpp",
|
|
],
|
|
)
|
|
|
|
AVX2_SRCS = struct(
|
|
include = [
|
|
"src/opts/*_avx2.cpp",
|
|
],
|
|
)
|
|
|
|
################################################################################
|
|
## BASE_HDRS
|
|
################################################################################
|
|
|
|
BASE_HDRS = struct(
|
|
include = [
|
|
"include/**/*.h",
|
|
],
|
|
exclude = PRIVATE_HDRS_LIST + [
|
|
# Not used.
|
|
"include/animator/**/*",
|
|
"include/views/**/*",
|
|
"include/xml/SkBML_WXMLParser.h",
|
|
"include/xml/SkBML_XMLParser.h",
|
|
],
|
|
)
|
|
|
|
################################################################################
|
|
## BASE_DEPS
|
|
################################################################################
|
|
|
|
BASE_DEPS_ALL = []
|
|
|
|
BASE_DEPS_UNIX = [
|
|
":opts_ssse3",
|
|
":opts_sse4",
|
|
":opts_avx",
|
|
":opts_avx2",
|
|
]
|
|
|
|
BASE_DEPS_ANDROID = []
|
|
|
|
BASE_DEPS_IOS = []
|
|
|
|
################################################################################
|
|
## INCLUDES
|
|
################################################################################
|
|
|
|
# Includes needed by Skia implementation. Not public includes.
|
|
INCLUDES = [
|
|
"include/android",
|
|
"include/c",
|
|
"include/client/android",
|
|
"include/codec",
|
|
"include/config",
|
|
"include/core",
|
|
"include/effects",
|
|
"include/gpu",
|
|
"include/images",
|
|
"include/pathops",
|
|
"include/pipe",
|
|
"include/ports",
|
|
"include/private",
|
|
"include/utils",
|
|
"include/utils/mac",
|
|
"include/utils/win",
|
|
"include/svg",
|
|
"include/xml",
|
|
"src/codec",
|
|
"src/core",
|
|
"src/gpu",
|
|
"src/image",
|
|
"src/lazy",
|
|
"src/opts",
|
|
"src/ports",
|
|
"src/pdf",
|
|
"src/sfnt",
|
|
"src/utils",
|
|
"third_party/etc1",
|
|
"third_party/ktx",
|
|
"third_party/libpng",
|
|
]
|
|
|
|
################################################################################
|
|
## DM_SRCS
|
|
################################################################################
|
|
|
|
DM_SRCS_ALL = struct(
|
|
include = [
|
|
"dm/*.cpp",
|
|
"dm/*.h",
|
|
"gm/*.c",
|
|
"gm/*.cpp",
|
|
"gm/*.h",
|
|
"tests/*.cpp",
|
|
"tests/*.h",
|
|
"tools/CrashHandler.cpp",
|
|
"tools/CrashHandler.h",
|
|
"tools/ProcStats.cpp",
|
|
"tools/ProcStats.h",
|
|
"tools/Resources.cpp",
|
|
"tools/Resources.h",
|
|
"tools/flags/*.cpp",
|
|
"tools/flags/*.h",
|
|
"tools/gpu/**/*.cpp",
|
|
"tools/gpu/**/*.h",
|
|
"tools/picture_utils.cpp",
|
|
"tools/random_parse_path.cpp",
|
|
"tools/random_parse_path.h",
|
|
"tools/sk_tool_utils.cpp",
|
|
"tools/sk_tool_utils.h",
|
|
"tools/sk_tool_utils_font.cpp",
|
|
"tools/timer/*.cpp",
|
|
"tools/timer/*.h",
|
|
],
|
|
exclude = [
|
|
"dm/DMSrcSinkAndroid.cpp", # Android-only.
|
|
"tests/FontMgrAndroidParserTest.cpp", # Android-only.
|
|
"tests/PathOpsSkpClipTest.cpp", # Alternate main.
|
|
"tests/skia_test.cpp", # Old main.
|
|
"tests/SkpSkGrTest.cpp", # Alternate main.
|
|
"tools/gpu/gl/angle/*",
|
|
"tools/gpu/gl/command_buffer/*",
|
|
"tools/gpu/gl/egl/*",
|
|
"tools/gpu/gl/glx/*",
|
|
"tools/gpu/gl/iOS/*",
|
|
"tools/gpu/gl/mac/*",
|
|
"tools/gpu/gl/mesa/*",
|
|
"tools/gpu/gl/win/*",
|
|
"tools/timer/SysTimer_mach.cpp",
|
|
"tools/timer/SysTimer_windows.cpp",
|
|
],
|
|
)
|
|
|
|
DM_SRCS_UNIX = struct(
|
|
include = [
|
|
"tools/gpu/gl/CreatePlatformGLContext_none.cpp",
|
|
],
|
|
)
|
|
|
|
DM_SRCS_ANDROID = struct(
|
|
include = [
|
|
# Depends on Android HWUI library that is not available in google3.
|
|
#"dm/DMSrcSinkAndroid.cpp",
|
|
"tests/FontMgrAndroidParserTest.cpp",
|
|
# TODO(benjaminwagner): Figure out how to compile with EGL.
|
|
"tools/gpu/gl/CreatePlatformGLContext_none.cpp",
|
|
],
|
|
)
|
|
|
|
DM_SRCS_IOS = struct(
|
|
include = [
|
|
"tools/gpu/iOS/CreatePlatformGLContext_iOS.cpp",
|
|
],
|
|
)
|
|
|
|
################################################################################
|
|
## DM_INCLUDES
|
|
################################################################################
|
|
|
|
DM_INCLUDES = [
|
|
"dm",
|
|
"gm",
|
|
"src/codec",
|
|
"src/effects",
|
|
"src/effects/gradients",
|
|
"src/fonts",
|
|
"src/pathops",
|
|
"src/pipe/utils",
|
|
"src/ports",
|
|
"tools/debugger",
|
|
"tests",
|
|
"tools",
|
|
"tools/flags",
|
|
"tools/gpu",
|
|
"tools/timer",
|
|
]
|
|
|
|
################################################################################
|
|
## DM_ARGS
|
|
################################################################################
|
|
|
|
def DM_ARGS(base_dir, asan):
|
|
source = ["tests", "gm", "image"]
|
|
# TODO(benjaminwagner): f16 and serialize-8888 fail.
|
|
config = ["565", "8888", "pdf", "srgb", "tiles_rt", "pic"]
|
|
# TODO(mtklein): maybe investigate why these fail?
|
|
match = [
|
|
"~Canvas",
|
|
"~Codec",
|
|
"~Codec_Dimensions",
|
|
"~Codec_stripes",
|
|
"~FontMgr",
|
|
"~PaintBreakText",
|
|
"~RecordDraw_TextBounds",
|
|
"~Scalar",
|
|
"~skps",
|
|
"~Stream",
|
|
]
|
|
if asan:
|
|
# Running all sources and configs under ASAN causes the test to exceed
|
|
# "large" size and time out.
|
|
source = ["tests", "gm"]
|
|
config = ["8888"]
|
|
match += [
|
|
"~clippedcubic2",
|
|
"~conicpaths",
|
|
"~gradients_2pt_conical",
|
|
"~Math",
|
|
"~Matrix",
|
|
"~PathOpsCubic",
|
|
"~PathOpsOpLoopsThreaded",
|
|
"~PathOpsSimplify",
|
|
"~PathOpsTightBoundsQuads",
|
|
"~Point",
|
|
]
|
|
return [
|
|
"--src %s" % " ".join(source),
|
|
"--config %s" % " ".join(config),
|
|
"--verbose",
|
|
"--match %s" % " ".join(match),
|
|
"--resourcePath %s/resources" % base_dir,
|
|
"--images %s/resources" % base_dir,
|
|
]
|
|
|
|
################################################################################
|
|
## COPTS
|
|
################################################################################
|
|
|
|
COPTS_UNIX = [
|
|
"-Wno-implicit-fallthrough", # Some intentional fallthrough.
|
|
"-Wno-deprecated-declarations", # Internal use of deprecated methods. :(
|
|
]
|
|
|
|
COPTS_ANDROID = ["-mfpu=neon"]
|
|
|
|
COPTS_IOS = []
|
|
|
|
COPTS_ALL = []
|
|
|
|
################################################################################
|
|
## DEFINES
|
|
################################################################################
|
|
|
|
DEFINES_UNIX = [
|
|
"PNG_SKIP_SETJMP_CHECK",
|
|
"SK_BUILD_FOR_UNIX",
|
|
"SK_SAMPLES_FOR_X",
|
|
"SK_SFNTLY_SUBSETTER",
|
|
"SK_CODEC_DECODES_RAW",
|
|
"SK_HAS_GIF_LIBRARY",
|
|
"SK_HAS_JPEG_LIBRARY",
|
|
"SK_HAS_PNG_LIBRARY",
|
|
"SK_HAS_WEBP_LIBRARY",
|
|
]
|
|
|
|
DEFINES_ANDROID = [
|
|
"SK_BUILD_FOR_ANDROID",
|
|
"SK_CODEC_DECODES_RAW",
|
|
"SK_HAS_GIF_LIBRARY",
|
|
"SK_HAS_JPEG_LIBRARY",
|
|
"SK_HAS_PNG_LIBRARY",
|
|
"SK_HAS_WEBP_LIBRARY",
|
|
]
|
|
|
|
DEFINES_IOS = [
|
|
"SK_BUILD_FOR_IOS",
|
|
"SK_BUILD_NO_OPTS",
|
|
"SK_IGNORE_ETC1_SUPPORT",
|
|
"SKNX_NO_SIMD",
|
|
]
|
|
|
|
DEFINES_ALL = [
|
|
# Chrome DEFINES.
|
|
"SK_USE_FLOATBITS",
|
|
"SK_USE_FREETYPE_EMBOLDEN",
|
|
# Turn on a few Google3-specific build fixes.
|
|
"GOOGLE3",
|
|
# Staging flags for API changes
|
|
"SK_SUPPORT_LEGACY_COLORFILTER_PTR",
|
|
"SK_SUPPORT_LEGACY_CREATESHADER_PTR",
|
|
"SK_SUPPORT_LEGACY_IMAGEFILTER_PTR",
|
|
"SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
|
|
"SK_SUPPORT_LEGACY_NEW_SURFACE_API",
|
|
"SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
|
|
"SK_SUPPORT_LEGACY_PICTURE_PTR",
|
|
"SK_SUPPORT_LEGACY_MASKFILTER_PTR",
|
|
"SK_SUPPORT_LEGACY_IMAGEFACTORY",
|
|
"SK_SUPPORT_LEGACY_XFERMODE_PTR",
|
|
"SK_SUPPORT_LEGACY_TYPEFACE_PTR",
|
|
]
|
|
|
|
################################################################################
|
|
## LINKOPTS
|
|
################################################################################
|
|
|
|
LINKOPTS_UNIX = []
|
|
|
|
LINKOPTS_ANDROID = [
|
|
"-lEGL",
|
|
]
|
|
|
|
LINKOPTS_IOS = []
|
|
|
|
LINKOPTS_ALL = [
|
|
"-ldl",
|
|
]
|