8ca88e41aa
- Build our own: freetype. - Avoid using: fontconfig, expat, GPU drivers. - Lie about safety: libjpeg (only from src/images... need to in src/codec?) To run: $ tools/xsan_build memory dm $ out/Debug/dm -v --match ~Codec ~BlurLargeImage ~FontMgrAndroidParser Notes: - Codec triggers issues in piex. - BlurLargeImage probably has bugs in the GM only. - FontMgrAndroidParser uses expat. BUG=skia:4550 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1665823002 NOTREECHECKS=true Review URL: https://codereview.chromium.org/1665823002
26 lines
575 B
Bash
Executable File
26 lines
575 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build Skia with one of Clang's many sanitizers.
|
|
#
|
|
# $ tools/xsan_build {address,thread,undefined,etc.} [any other flags to pass to make...]
|
|
#
|
|
# This script assumes the use of Clang >=3.2.
|
|
#
|
|
# For more information, see:
|
|
# http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export CC=clang
|
|
export CXX=clang++
|
|
$CC --version
|
|
|
|
if [[ "$1" == "memory" ]]; then
|
|
export GYP_DEFINES="skia_gpu=0 skia_no_fontconfig=1 skia_freetype_static=1 ${GYP_DEFINES}"
|
|
fi
|
|
export GYP_DEFINES="skia_sanitizer=$1 ${GYP_DEFINES}"
|
|
|
|
shift
|
|
make $@
|