a1bde7d2e1
It's only used by a couple unit tests. We have other ways of getting the same quality testing of our ref-count code now (e.g. TSAN). BUG=skia: CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-x86_64-Release-CMake-Trybot,Build-Mac10.9-Clang-x86_64-Release-CMake-Trybot Review URL: https://codereview.chromium.org/1408213005
289 lines
7.3 KiB
Plaintext
289 lines
7.3 KiB
Plaintext
# Description:
|
|
# Skia graphics library.
|
|
#
|
|
# Definitions for Google BUILD file.
|
|
|
|
exports_files(["BUILD.public"])
|
|
|
|
# Platform-independent SRCS
|
|
SRCS = glob(
|
|
[
|
|
"include/private/*.h",
|
|
"src/**/*.h",
|
|
"src/**/*.cpp",
|
|
"src/**/*.c",
|
|
|
|
# Third Party
|
|
"third_party/etc1/*.cpp",
|
|
"third_party/etc1/*.h",
|
|
"third_party/ktx/*.cpp",
|
|
"third_party/ktx/*.h",
|
|
],
|
|
exclude = [
|
|
# Exclude platform-dependent files.
|
|
"src/device/xps/*", # Windows-only. Move to ports?
|
|
"src/doc/*_XPS.cpp", # Windows-only. Move to ports?
|
|
"src/gpu/gl/android/*",
|
|
"src/gpu/gl/iOS/*",
|
|
"src/gpu/gl/mac/*",
|
|
"src/gpu/gl/win/*",
|
|
"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/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp.
|
|
"src/fonts/*fontconfig*",
|
|
"src/gpu/gl/egl/*", # Conflicts with gpu/gl/glx.
|
|
"src/gpu/gl/nacl/*", # Conflicts with gpu/gl/glx.
|
|
"src/gpu/gl/GrGLDefaultInterface_none.cpp", # Conflicts with src/gpu/gl/GrGLDefaultInterface_native.cpp
|
|
"src/gpu/gl/GrGLCreateNativeInterface_none.cpp", # Conflicts with src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp
|
|
|
|
# Exclude files that don't compile with the current DEFINES.
|
|
"src/gpu/gl/angle/*", # Requires SK_ANGLE define.
|
|
"src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE'
|
|
"src/gpu/gl/mesa/*", # Requires SK_MESA define.
|
|
"src/svg/parser/*", # Missing SkSVG.h.
|
|
|
|
# Dependency on files outside src.
|
|
"src/svg/skp2svg.cpp", # Depends on tools/LazyDecodeBitmap.h.
|
|
|
|
# Not used.
|
|
"src/animator/**/*",
|
|
"src/views/**/*",
|
|
"src/xml/SkBML_Verbs.h",
|
|
"src/xml/SkBML_XMLParser.cpp",
|
|
"src/xml/SkXMLPullParser.cpp",
|
|
],
|
|
)
|
|
|
|
# Platform-dependent SRCS for google3-default platform.
|
|
PLATFORM_SRCS = glob(
|
|
[
|
|
"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*",
|
|
"src/opts/*SSSE3*",
|
|
"src/opts/*ssse3*",
|
|
"src/opts/*SSE4*",
|
|
"src/opts/*sse4*",
|
|
"src/opts/SkBlitMask_opts_none.cpp",
|
|
"src/opts/SkBitmapProcState_opts_none.cpp",
|
|
"src/opts/SkBlitRow_opts_none.cpp",
|
|
"src/ports/*android*",
|
|
"src/ports/*chromium*",
|
|
"src/ports/*CG*",
|
|
"src/ports/*fontconfig*",
|
|
"src/ports/*FontConfig*",
|
|
"src/ports/*mac*",
|
|
"src/ports/*mozalloc*",
|
|
"src/ports/*nacl*",
|
|
"src/ports/*win*",
|
|
"src/ports/SkFontMgr_custom_embedded_factory.cpp",
|
|
"src/ports/SkFontMgr_empty_factory.cpp",
|
|
"src/ports/SkImageDecoder_WIC.cpp",
|
|
"src/ports/SkImageDecoder_empty.cpp",
|
|
"src/ports/SkImageGenerator_none.cpp",
|
|
"src/ports/SkTLS_none.cpp",
|
|
],
|
|
)
|
|
|
|
SRCS_SSSE3 = glob(
|
|
[
|
|
"src/opts/*SSSE3*.cpp",
|
|
"src/opts/*ssse3*.cpp",
|
|
],
|
|
)
|
|
|
|
SRCS_SSE4 = glob(
|
|
[
|
|
"src/opts/*SSE4*.cpp",
|
|
"src/opts/*sse4*.cpp",
|
|
],
|
|
)
|
|
|
|
HDRS = glob(
|
|
[
|
|
"include/**/*.h",
|
|
],
|
|
exclude = [
|
|
"include/private/**/*",
|
|
|
|
# Not used.
|
|
"include/animator/**/*",
|
|
"include/views/**/*",
|
|
"include/xml/SkBML_WXMLParser.h",
|
|
"include/xml/SkBML_XMLParser.h",
|
|
],
|
|
)
|
|
|
|
# Includes needed by Skia implementation. Not public includes.
|
|
INCLUDES = [
|
|
"include/c",
|
|
"include/codec",
|
|
"include/config",
|
|
"include/core",
|
|
"include/effects",
|
|
"include/gpu",
|
|
"include/images",
|
|
"include/pathops",
|
|
"include/pipe",
|
|
"include/ports",
|
|
"include/private",
|
|
"include/utils",
|
|
"include/svg",
|
|
"include/xml",
|
|
"src/core",
|
|
"src/gpu",
|
|
"src/image",
|
|
"src/lazy",
|
|
"src/opts",
|
|
"src/pdf",
|
|
"src/sfnt",
|
|
"src/utils",
|
|
"third_party/etc1",
|
|
"third_party/ktx",
|
|
]
|
|
|
|
DM_SRCS = glob(
|
|
[
|
|
"dm/*.cpp",
|
|
"dm/*.h",
|
|
"gm/*.c",
|
|
"gm/*.cpp",
|
|
"gm/*.h",
|
|
"tests/*.cpp",
|
|
"tests/*.h",
|
|
"tools/CrashHandler.cpp",
|
|
"tools/CrashHandler.h",
|
|
"tools/LazyDecodeBitmap.cpp",
|
|
"tools/LazyDecodeBitmap.h",
|
|
"tools/ProcStats.cpp",
|
|
"tools/ProcStats.h",
|
|
"tools/Resources.cpp",
|
|
"tools/Resources.h",
|
|
"tools/SkBitmapRegionDecoderInterface.cpp",
|
|
"tools/SkBitmapRegionDecoderInterface.h",
|
|
"tools/SkBitmapRegionSampler.cpp",
|
|
"tools/SkBitmapRegionSampler.h",
|
|
"tools/SkBitmapRegionCanvas.cpp",
|
|
"tools/SkBitmapRegionCanvas.h",
|
|
"tools/flags/*.cpp",
|
|
"tools/flags/*.h",
|
|
"tools/timer/*.cpp",
|
|
"tools/timer/*.h",
|
|
"tools/sk_tool_utils.cpp",
|
|
"tools/sk_tool_utils_font.cpp",
|
|
"tools/sk_tool_utils.h",
|
|
],
|
|
exclude = [
|
|
"tests/skia_test.cpp", # Old main.
|
|
"tests/SkpSkGrTest.cpp", # Alternate main.
|
|
"tests/PathOpsSkpClipTest.cpp", # Alternate main.
|
|
"tests/FontMgrAndroidParserTest.cpp", # Android-only.
|
|
"dm/DMSrcSinkAndroid.cpp", # Android-only.
|
|
"tools/timer/SysTimer_windows.cpp",
|
|
"tools/timer/SysTimer_mach.cpp",
|
|
],
|
|
)
|
|
|
|
DM_INCLUDES = [
|
|
"gm",
|
|
"src/codec",
|
|
"src/effects",
|
|
"src/fonts",
|
|
"src/pathops",
|
|
"src/pipe/utils",
|
|
"src/utils/debugger",
|
|
"tests",
|
|
"tools",
|
|
"tools/flags",
|
|
"tools/timer",
|
|
]
|
|
|
|
COPTS = [
|
|
"-Wno-implicit-fallthrough", # Some intentional fallthrough.
|
|
"-Wno-deprecated-declarations", # Internal use of deprecated methods. :(
|
|
]
|
|
|
|
DEFINES = [
|
|
# It'd be nice for fastbuild, dbg -> SK_DEBUG, opt -> SK_RELEASE.
|
|
"SK_RELEASE",
|
|
# Chrome DEFINES.
|
|
"SK_USE_FLOATBITS",
|
|
"SK_USE_FREETYPE_EMBOLDEN",
|
|
# Turn on a few Google3-specific build fixes.
|
|
"GOOGLE3",
|
|
"SK_BUILD_FOR_UNIX",
|
|
"SK_SAMPLES_FOR_X",
|
|
]
|
|
|
|
LINKOPTS = ["-ldl"]
|
|
|
|
cc_library(
|
|
name = "opts_ssse3",
|
|
srcs = SRCS_SSSE3,
|
|
copts = COPTS + ["-mssse3"],
|
|
defines = DEFINES,
|
|
includes = INCLUDES,
|
|
)
|
|
|
|
cc_library(
|
|
name = "opts_sse4",
|
|
srcs = SRCS_SSE4,
|
|
copts = COPTS + ["-msse4"],
|
|
defines = DEFINES,
|
|
includes = INCLUDES,
|
|
)
|
|
|
|
cc_library(
|
|
name = "skia",
|
|
srcs = SRCS + PLATFORM_SRCS,
|
|
hdrs = HDRS,
|
|
copts = COPTS,
|
|
defines = DEFINES,
|
|
includes = INCLUDES,
|
|
linkopts = LINKOPTS,
|
|
visibility = [":skia_clients"],
|
|
deps = EXTERNAL_DEPS + [
|
|
":opts_sse4",
|
|
":opts_ssse3",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "dm",
|
|
size = "large",
|
|
srcs = DM_SRCS,
|
|
args = [
|
|
"--nogpu",
|
|
"--verbose",
|
|
# TODO(mtklein): maybe investigate why these fail?
|
|
"--match ~FontMgr ~Gif ~Scalar ~Canvas ~Codec_stripes ~Stream ~skps",
|
|
# TODO(benjaminwagner): dm can't find resources when running on TAP.
|
|
"--resourcePath %s/resources" % BASE_DIR,
|
|
"--images %s/resources" % BASE_DIR,
|
|
],
|
|
copts = COPTS,
|
|
data = glob(["resources/*"]),
|
|
defines = DEFINES,
|
|
includes = DM_INCLUDES,
|
|
deps = DM_EXTERNAL_DEPS + [
|
|
":skia",
|
|
],
|
|
)
|