blob: 2c5679356960b67a16a1cf5de8cebd43d74dfcdc [file] [log] [blame]
Kevin Lubick217056c2018-09-20 17:39:31 -04001#!/bin/bash
2# Copyright 2018 Google LLC
3#
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7set -ex
8
9BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd`
10# This expects the environment variable EMSDK to be set
11if [[ ! -d $EMSDK ]]; then
12 echo "Be sure to set the EMSDK environment variable."
13 exit 1
14fi
15
Kevin Lubick217056c2018-09-20 17:39:31 -040016# Navigate to SKIA_HOME from where this file is located.
17pushd $BASE_DIR/../..
18
19source $EMSDK/emsdk_env.sh
Kevin Lubick8e9750d2018-10-09 09:36:35 -040020EMCC=`which emcc`
21EMCXX=`which em++`
Kevin Lubick217056c2018-09-20 17:39:31 -040022
Kevin Lubicka96ec092018-12-17 11:08:36 -050023RELEASE_CONF="-Oz --closure 1 --llvm-lto 3 -DSK_RELEASE --pre-js $BASE_DIR/release.js \
24 -DGR_GL_CHECK_ALLOC_WITH_GET_ERROR=0"
25EXTRA_CFLAGS="\"-DSK_RELEASE\", \"-DGR_GL_CHECK_ALLOC_WITH_GET_ERROR=0\","
Kevin Lubick217056c2018-09-20 17:39:31 -040026if [[ $@ == *debug* ]]; then
27 echo "Building a Debug build"
Kevin Lubickd45c7812018-10-02 11:33:52 -040028 EXTRA_CFLAGS="\"-DSK_DEBUG\""
Kevin Lubicka96ec092018-12-17 11:08:36 -050029 RELEASE_CONF="-O0 --js-opts 0 -s DEMANGLE_SUPPORT=1 -s ASSERTIONS=1 -s GL_ASSERTIONS=1 -g4 \
30 --source-map-base /node_modules/canvaskit/bin/ -DSK_DEBUG --pre-js $BASE_DIR/debug.js"
Kevin Lubick3d99b1e2018-10-16 10:15:01 -040031 BUILD_DIR=${BUILD_DIR:="out/canvaskit_wasm_debug"}
Kevin Lubickf9910ea2018-12-03 14:49:15 -050032elif [[ $@ == *profiling* ]]; then
33 echo "Building a build for profiling"
Kevin Lubicka96ec092018-12-17 11:08:36 -050034 RELEASE_CONF="-O3 --source-map-base /node_modules/canvaskit/bin/ --profiling -g4 -DSK_RELEASE \
35 --pre-js $BASE_DIR/release.js -DGR_GL_CHECK_ALLOC_WITH_GET_ERROR=0"
Kevin Lubickf9910ea2018-12-03 14:49:15 -050036 BUILD_DIR=${BUILD_DIR:="out/canvaskit_wasm_profile"}
Kevin Lubick3d99b1e2018-10-16 10:15:01 -040037else
38 BUILD_DIR=${BUILD_DIR:="out/canvaskit_wasm"}
Kevin Lubick217056c2018-09-20 17:39:31 -040039fi
40
Kevin Lubick3d99b1e2018-10-16 10:15:01 -040041mkdir -p $BUILD_DIR
42
Kevin Lubick53965c92018-10-11 08:51:55 -040043GN_GPU="skia_enable_gpu=true"
Kevin Lubick2cf29ce2018-10-25 14:46:50 -040044GN_GPU_FLAGS="\"-DIS_WEBGL=1\", \"-DSK_DISABLE_LEGACY_SHADERCONTEXT\","
45WASM_GPU="-lEGL -lGLESv2 -DSK_SUPPORT_GPU=1 \
Kevin Lubickb07204a2018-11-20 14:07:42 -050046 -DSK_DISABLE_LEGACY_SHADERCONTEXT --pre-js $BASE_DIR/cpu.js --pre-js $BASE_DIR/gpu.js"
Kevin Lubick3d99b1e2018-10-16 10:15:01 -040047if [[ $@ == *cpu* ]]; then
48 echo "Using the CPU backend instead of the GPU backend"
Kevin Lubick53965c92018-10-11 08:51:55 -040049 GN_GPU="skia_enable_gpu=false"
Kevin Lubick3d99b1e2018-10-16 10:15:01 -040050 GN_GPU_FLAGS=""
Kevin Lubick5b90b842018-10-17 07:57:18 -040051 WASM_GPU="-DSK_SUPPORT_GPU=0 --pre-js $BASE_DIR/cpu.js"
Kevin Lubick53965c92018-10-11 08:51:55 -040052fi
53
Kevin Lubick46839422019-01-03 14:27:27 -050054WASM_SKOTTIE=" \
55 $BASE_DIR/skottie_bindings.cpp \
Kevin Lubick53965c92018-10-11 08:51:55 -040056 modules/skottie/src/Skottie.cpp \
57 modules/skottie/src/SkottieAdapter.cpp \
58 modules/skottie/src/SkottieAnimator.cpp \
59 modules/skottie/src/SkottieJson.cpp \
60 modules/skottie/src/SkottieLayer.cpp \
61 modules/skottie/src/SkottieLayerEffect.cpp \
62 modules/skottie/src/SkottiePrecompLayer.cpp \
63 modules/skottie/src/SkottieProperty.cpp \
64 modules/skottie/src/SkottieShapeLayer.cpp \
65 modules/skottie/src/SkottieTextLayer.cpp \
66 modules/skottie/src/SkottieValue.cpp \
67 modules/sksg/src/*.cpp \
Florin Malitae29d5792019-01-23 11:12:07 -050068 modules/skshaper/src/SkShaper.cpp \
69 modules/skshaper/src/SkShaper_primitive.cpp \
Kevin Lubick53965c92018-10-11 08:51:55 -040070 src/core/SkCubicMap.cpp \
71 src/core/SkTime.cpp \
72 src/pathops/SkOpBuilder.cpp \
73 src/utils/SkJSON.cpp \
74 src/utils/SkParse.cpp "
75if [[ $@ == *no_skottie* ]]; then
76 echo "Omitting Skottie"
Kevin Lubick46839422019-01-03 14:27:27 -050077 WASM_SKOTTIE=""
Kevin Lubick53965c92018-10-11 08:51:55 -040078fi
79
Florin Malitac2e85f92018-11-29 11:38:12 -050080WASM_MANAGED_SKOTTIE="\
81 -DSK_INCLUDE_MANAGED_SKOTTIE=1 \
82 modules/skottie/utils/SkottieUtils.cpp"
83if [[ $@ == *no_managed_skottie* ]]; then
84 echo "Omitting managed Skottie"
85 WASM_MANAGED_SKOTTIE="-DSK_INCLUDE_MANAGED_SKOTTIE=0"
86fi
87
Kevin Lubick53eabf62018-12-10 12:41:26 -050088HTML_CANVAS_API="--pre-js $BASE_DIR/htmlcanvas/preamble.js \
89--pre-js $BASE_DIR/htmlcanvas/util.js \
90--pre-js $BASE_DIR/htmlcanvas/color.js \
91--pre-js $BASE_DIR/htmlcanvas/font.js \
92--pre-js $BASE_DIR/htmlcanvas/canvas2dcontext.js \
93--pre-js $BASE_DIR/htmlcanvas/htmlcanvas.js \
94--pre-js $BASE_DIR/htmlcanvas/imagedata.js \
95--pre-js $BASE_DIR/htmlcanvas/lineargradient.js \
Kevin Lubicka40f8322018-12-17 16:01:36 -050096--pre-js $BASE_DIR/htmlcanvas/path2d.js \
Kevin Lubick53eabf62018-12-10 12:41:26 -050097--pre-js $BASE_DIR/htmlcanvas/pattern.js \
98--pre-js $BASE_DIR/htmlcanvas/radialgradient.js \
99--pre-js $BASE_DIR/htmlcanvas/postamble.js "
Kevin Lubick006a6f32018-10-19 14:34:34 -0400100if [[ $@ == *no_canvas* ]]; then
101 echo "Omitting bindings for HTML Canvas API"
102 HTML_CANVAS_API=""
103fi
104
Kevin Lubickddd0a332018-12-12 10:35:13 -0500105BUILTIN_FONT="$BASE_DIR/fonts/NotoMono-Regular.ttf.cpp"
106if [[ $@ == *no_font* ]]; then
107 echo "Omitting the built-in font(s)"
108 BUILTIN_FONT=""
109else
110 # Generate the font's binary file (which is covered by .gitignore)
111 python tools/embed_resources.py \
112 --name SK_EMBEDDED_FONTS \
113 --input $BASE_DIR/fonts/NotoMono-Regular.ttf \
114 --output $BASE_DIR/fonts/NotoMono-Regular.ttf.cpp \
115 --align 4
116fi
117
Kevin Lubick8e9750d2018-10-09 09:36:35 -0400118# Turn off exiting while we check for ninja (which may not be on PATH)
119set +e
120NINJA=`which ninja`
121if [[ -z $NINJA ]]; then
122 git clone "https://chromium.googlesource.com/chromium/tools/depot_tools.git" --depth 1 $BUILD_DIR/depot_tools
123 NINJA=$BUILD_DIR/depot_tools/ninja
124fi
125# Re-enable error checking
126set -e
Kevin Lubick217056c2018-09-20 17:39:31 -0400127
128echo "Compiling bitcode"
129
Kevin Lubick217056c2018-09-20 17:39:31 -0400130# Inspired by https://github.com/Zubnix/skia-wasm-port/blob/master/build_bindings.sh
131./bin/gn gen ${BUILD_DIR} \
132 --args="cc=\"${EMCC}\" \
133 cxx=\"${EMCXX}\" \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400134 extra_cflags_cc=[\"-frtti\"] \
Kevin Lubicke805b242018-10-10 14:55:01 -0400135 extra_cflags=[\"-s\",\"USE_FREETYPE=1\",\"-s\",\"USE_LIBPNG=1\", \"-s\", \"WARN_UNALIGNED=1\",
Kevin Lubick2cf29ce2018-10-25 14:46:50 -0400136 \"-DSKNX_NO_SIMD\", \"-DSK_DISABLE_AAA\", \"-DSK_DISABLE_DAA\", \"-DSK_DISABLE_READBUFFER\",
Mike Klein54378232018-11-08 12:08:05 +0000137 \"-DSK_DISABLE_EFFECT_DESERIALIZATION\",
Kevin Lubickf20c3492018-10-17 09:46:00 -0400138 ${GN_GPU_FLAGS}
Kevin Lubickd45c7812018-10-02 11:33:52 -0400139 ${EXTRA_CFLAGS}
140 ] \
Kevin Lubick217056c2018-09-20 17:39:31 -0400141 is_debug=false \
142 is_official_build=true \
143 is_component_build=false \
144 target_cpu=\"wasm\" \
145 \
Kevin Lubicke805b242018-10-10 14:55:01 -0400146 skia_use_angle = false \
Kevin Lubick217056c2018-09-20 17:39:31 -0400147 skia_use_dng_sdk=false \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400148 skia_use_egl=true \
Kevin Lubick217056c2018-09-20 17:39:31 -0400149 skia_use_expat=false \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400150 skia_use_fontconfig=false \
Kevin Lubick217056c2018-09-20 17:39:31 -0400151 skia_use_freetype=true \
152 skia_use_icu=false \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400153 skia_use_libheif=false \
Kevin Lubickb5ae3b52018-11-03 07:51:19 -0400154 skia_use_system_libjpeg_turbo = false \
155 skia_use_libjpeg_turbo=true \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400156 skia_use_libpng=true \
157 skia_use_libwebp=false \
158 skia_use_lua=false \
Kevin Lubick217056c2018-09-20 17:39:31 -0400159 skia_use_piex=false \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400160 skia_use_vulkan=false \
Kevin Lubick217056c2018-09-20 17:39:31 -0400161 skia_use_zlib=true \
162 \
Kevin Lubick93faa672018-10-10 15:54:53 -0400163 skia_enable_ccpr=false \
Kevin Lubick4bf2c262018-10-15 09:35:54 -0400164 skia_enable_nvpr=false \
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400165 skia_enable_skpicture=false \
Kevin Lubick53965c92018-10-11 08:51:55 -0400166 ${GN_GPU} \
Kevin Lubick217056c2018-09-20 17:39:31 -0400167 skia_enable_fontmgr_empty=false \
168 skia_enable_pdf=false"
169
Kevin Lubick8e9750d2018-10-09 09:36:35 -0400170${NINJA} -C ${BUILD_DIR} libskia.a
Kevin Lubick217056c2018-09-20 17:39:31 -0400171
172export EMCC_CLOSURE_ARGS="--externs $BASE_DIR/externs.js "
173
Kevin Lubick217056c2018-09-20 17:39:31 -0400174echo "Generating final wasm"
175
176# Skottie doesn't end up in libskia and is currently not its own library
177# so we just hack in the .cpp files we need for now.
Kevin Lubickb9d7fb92018-10-19 09:33:12 -0400178# Emscripten prefers that libskia.a goes last in order, otherwise, it
179# may drop symbols that it incorrectly thinks aren't used. One day,
180# Emscripten will use LLD, which may relax this requirement.
Kevin Lubicke805b242018-10-10 14:55:01 -0400181${EMCXX} \
Kevin Lubick217056c2018-09-20 17:39:31 -0400182 $RELEASE_CONF \
Kevin Lubick134be1d2018-10-30 15:05:04 -0400183 -Iexperimental \
Kevin Lubick217056c2018-09-20 17:39:31 -0400184 -Iinclude/c \
185 -Iinclude/codec \
186 -Iinclude/config \
187 -Iinclude/core \
188 -Iinclude/effects \
189 -Iinclude/gpu \
190 -Iinclude/gpu/gl \
191 -Iinclude/pathops \
192 -Iinclude/private \
193 -Iinclude/utils/ \
194 -Imodules/skottie/include \
Florin Malitac2e85f92018-11-29 11:38:12 -0500195 -Imodules/skottie/utils \
Kevin Lubick217056c2018-09-20 17:39:31 -0400196 -Imodules/sksg/include \
Florin Malitae29d5792019-01-23 11:12:07 -0500197 -Imodules/skshaper/include \
Kevin Lubick217056c2018-09-20 17:39:31 -0400198 -Isrc/core/ \
Kevin Lubickb5ae3b52018-11-03 07:51:19 -0400199 -Isrc/gpu/ \
Kevin Lubick217056c2018-09-20 17:39:31 -0400200 -Isrc/sfnt/ \
Kevin Lubickb5ae3b52018-11-03 07:51:19 -0400201 -Isrc/shaders/ \
Kevin Lubick134be1d2018-10-30 15:05:04 -0400202 -Isrc/utils/ \
Kevin Lubick217056c2018-09-20 17:39:31 -0400203 -Itools \
Kevin Lubick134be1d2018-10-30 15:05:04 -0400204 -Itools/fonts \
Kevin Lubick2cf29ce2018-10-25 14:46:50 -0400205 -DSK_DISABLE_READBUFFER \
206 -DSK_DISABLE_AAA \
207 -DSK_DISABLE_DAA \
Kevin Lubick53965c92018-10-11 08:51:55 -0400208 $WASM_GPU \
Kevin Lubicke805b242018-10-10 14:55:01 -0400209 -std=c++14 \
Kevin Lubick217056c2018-09-20 17:39:31 -0400210 --bind \
211 --pre-js $BASE_DIR/helper.js \
212 --pre-js $BASE_DIR/interface.js \
Kevin Lubick65846c02019-01-04 14:16:19 -0500213 --post-js $BASE_DIR/ready.js \
Kevin Lubick006a6f32018-10-19 14:34:34 -0400214 $HTML_CANVAS_API \
Kevin Lubickddd0a332018-12-12 10:35:13 -0500215 $BUILTIN_FONT \
Kevin Lubickd45c7812018-10-02 11:33:52 -0400216 $BASE_DIR/canvaskit_bindings.cpp \
Kevin Lubick53965c92018-10-11 08:51:55 -0400217 $WASM_SKOTTIE \
Florin Malitac2e85f92018-11-29 11:38:12 -0500218 $WASM_MANAGED_SKOTTIE \
Kevin Lubickb9d7fb92018-10-19 09:33:12 -0400219 $BUILD_DIR/libskia.a \
Kevin Lubick217056c2018-09-20 17:39:31 -0400220 -s ALLOW_MEMORY_GROWTH=1 \
Kevin Lubick217056c2018-09-20 17:39:31 -0400221 -s EXPORT_NAME="CanvasKitInit" \
222 -s FORCE_FILESYSTEM=0 \
223 -s MODULARIZE=1 \
224 -s NO_EXIT_RUNTIME=1 \
225 -s STRICT=1 \
Kevin Lubicke805b242018-10-10 14:55:01 -0400226 -s TOTAL_MEMORY=32MB \
Kevin Lubick217056c2018-09-20 17:39:31 -0400227 -s USE_FREETYPE=1 \
228 -s USE_LIBPNG=1 \
Kevin Lubicke805b242018-10-10 14:55:01 -0400229 -s WARN_UNALIGNED=1 \
Kevin Lubick217056c2018-09-20 17:39:31 -0400230 -s WASM=1 \
Kevin Lubick8e9750d2018-10-09 09:36:35 -0400231 -o $BUILD_DIR/canvaskit.js