skia2/BUILD.public
benjaminwagner 6f6bef84a3 Add dm target to BUILD and refactor BUILD file. The corresponding google3 BUILD file changes are in google3 cl/105413829.
Fix blaze compilation errors. The default compilation options for blaze require that the initialization list must list fields in initialization order. Also deal with differing versions of libjpeg.

The BUILD changes were started by melanielc in google3 cl/102860957.

BUG=skia:

Review URL: https://codereview.chromium.org/1401883005
2015-10-15 08:09:45 -07:00

290 lines
7.4 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_pthread_mach.cpp", # Mac-only. Move to ports?
"src/utils/SkThreadUtils_pthread_other.cpp", # Non-Mac-non-Linux. Move to ports?
"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.
]
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",
],
)