9cb74e9079
PS 1 is re-generating existing BUILD.bazel files PS 2 is generating BUILD.bazel files for tests/gms PS 3+ makes modifications to build all of the gms and tests. It is recommended to view this CL with just a diff between PS 2 and the end, due to the large amount of generated changes in PS 1 and 2. We make a filegroup for the gms and tests because they need to be compiled as one large blob in order for the registries to work. Maybe in the future we will break these up, but at least for WASM/JS, the overhead of starting a browser for each new test would likely grind things to a halt, so we just group them all together for now. It's also the most similar to what we currently do. In gm/BUILD.bazel and tests/BUILD.bazel, we add a cc_library that encapsulates all of the deps of the tests, so we can easily include that the build. These were discovered via trial and error, not anything automatic or systematic. The is_skia_dev_build config_setting is very similar to the GN equivalent from which it was based. The list of gms and tests to skip (e.g. which are incompatible with WASM) was determined by building the wasm bundle: modules/canvaskit$ make bazel_gms_release tools/run-wasm-gm-tests$ make run_local_debug # Don't forget to click the button on the screen after the # browser loads This way of invoking the tests will be replace soon with `bazel test <something>`. As such, I didn't bother fully documenting the current way. Suggested review order: - modules/canvaskit/BUILD.bazel taking note that we always use profiling-funcs to make the stacktraces human readable. - gm/BUILD.bazel and tests/BUILD.bazel to see the lists of gms/tests. Notice the tests are roughly partitioned because we don't support things like vulkan/PDF in the wasm build and we will want a way to not build certain tests for certain configurations - tools/* noting some of the cc_libraries added to make dependencies easier to add when needed. - All other files. Change-Id: I43059cd93c28af1c4c12b93d6ebd9c46a12d381f Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/506256 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
160 lines
5.6 KiB
Makefile
160 lines
5.6 KiB
Makefile
clean:
|
|
- rm -rf ../../out/canvaskit_wasm
|
|
- rm -rf ./npm_build/bin
|
|
- rm -rf ./build/
|
|
$(MAKE) release
|
|
|
|
release:
|
|
# Does an incremental build where possible.
|
|
./compile.sh
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm/canvaskit.wasm ./build/
|
|
|
|
release_cpu:
|
|
# Does an incremental build where possible.
|
|
./compile.sh cpu_only
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm/canvaskit.wasm ./build/
|
|
|
|
release_viewer:
|
|
# Does an incremental build where possible.
|
|
./compile.sh viewer
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm/canvaskit.wasm ./build/
|
|
|
|
debug:
|
|
# Does an incremental build where possible.
|
|
./compile.sh debug
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.wasm ./build/
|
|
|
|
debug_cpu:
|
|
# Does an incremental build where possible.
|
|
./compile.sh debug cpu_only
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.wasm ./build/
|
|
|
|
debug_viewer:
|
|
# Does an incremental build where possible.
|
|
./compile.sh debug viewer
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm_debug/canvaskit.wasm ./build/
|
|
|
|
profile:
|
|
./compile.sh profiling
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../out/canvaskit_wasm_profile/canvaskit.js ./build/
|
|
cp ../../out/canvaskit_wasm_profile/canvaskit.wasm ./build/
|
|
|
|
npm:
|
|
rm -rf ./npm_build/bin
|
|
mkdir -p ./npm_build/bin
|
|
cp ./CHANGELOG.md ./npm_build/
|
|
|
|
mkdir -p ./npm_build/bin/full
|
|
./compile.sh release
|
|
cp ../../out/canvaskit_wasm/canvaskit.js ./npm_build/bin/full
|
|
cp ../../out/canvaskit_wasm/canvaskit.wasm ./npm_build/bin/full
|
|
|
|
# These features are turned off to keep code size smaller for the
|
|
# general use case.
|
|
./compile.sh release no_skottie no_particles no_rt_shader no_sksl_trace no_alias_font \
|
|
no_effects_deserialization no_encode_jpeg no_encode_webp
|
|
cp ../../out/canvaskit_wasm/canvaskit.js ./npm_build/bin
|
|
cp ../../out/canvaskit_wasm/canvaskit.wasm ./npm_build/bin
|
|
|
|
mkdir -p ./npm_build/bin/profiling
|
|
./compile.sh profiling
|
|
cp ../../out/canvaskit_wasm_profile/canvaskit.js ./npm_build/bin/profiling
|
|
cp ../../out/canvaskit_wasm_profile/canvaskit.wasm ./npm_build/bin/profiling
|
|
|
|
gm_tests_debug:
|
|
./compile_gm.sh debug
|
|
mkdir -p ./out
|
|
cp ../../out/wasm_gm_tests_debug/wasm_gm_tests.js ./out
|
|
cp ../../out/wasm_gm_tests_debug/wasm_gm_tests.wasm ./out
|
|
|
|
gm_tests:
|
|
./compile_gm.sh
|
|
mkdir -p ./out
|
|
cp ../../out/wasm_gm_tests/wasm_gm_tests.js ./out
|
|
cp ../../out/wasm_gm_tests/wasm_gm_tests.wasm ./out
|
|
|
|
local-example:
|
|
echo "Go check out http://localhost:8000/npm_build/example.html"
|
|
python3 ../../tools/serve_wasm.py
|
|
|
|
test-continuous:
|
|
echo "Assuming npm ci has been run by user"
|
|
echo "Also assuming make debug or release has also been run by a user (if needed)"
|
|
npx karma start ./karma.conf.js --no-single-run --watch-poll
|
|
|
|
test-continuous-headless:
|
|
npx karma start ./karma.conf.js --no-single-run --watch-poll --headless
|
|
|
|
node-example:
|
|
node ./npm_build/node.example.js --expose-wasm
|
|
|
|
docker-compile:
|
|
mkdir -p ${SKIA_ROOT}/out/canvaskit_wasm_docker
|
|
docker run --rm --volume ${SKIA_ROOT}:/SRC \
|
|
--volume ${SKIA_ROOT}/out/canvaskit_wasm_docker:/OUT \
|
|
gcr.io/skia-public/canvaskit-emsdk:2.0.0_v1 \
|
|
/SRC/infra/canvaskit/build_canvaskit.sh
|
|
|
|
typecheck:
|
|
echo "Make sure you've run cd npm_build && npm ci recently"
|
|
cd npm_build && npm run dtslint
|
|
|
|
bazel_gms_release:
|
|
# We use spawn_strategy=local for "everyday" builds because emscripten assumes there
|
|
# is a cache in the home directory that it needs to fill with compiled versions of libc etc.
|
|
# https://emscripten.org/docs/tools_reference/emcc.html
|
|
# By setting spawn_strategy=local, we can avoid recompiling all of this for every compilation
|
|
# unit, by letting the cache be used (and not dropped from the sandbox), which gets expensive.
|
|
# Local testing showed using the local strategy sped up a clean build from 9.5 minutes
|
|
# to 1 minute. https://docs.bazel.build/versions/main/user-manual.html#strategy-options
|
|
bazelisk build :wasm_gm_tests --compilation_mode opt --spawn_strategy=local
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../bazel-bin/modules/canvaskit/wasm_gm_tests/wasm_gm_tests.js build/wasm_gm_tests.js
|
|
cp ../../bazel-bin/modules/canvaskit/wasm_gm_tests/wasm_gm_tests.wasm build/wasm_gm_tests.wasm
|
|
|
|
bazel_gms_debug:
|
|
# See above note about spawn_strategy
|
|
bazelisk build :wasm_gm_tests --compilation_mode dbg --spawn_strategy=local
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../bazel-bin/modules/canvaskit/wasm_gm_tests/wasm_gm_tests.js build/wasm_gm_tests.js
|
|
cp ../../bazel-bin/modules/canvaskit/wasm_gm_tests/wasm_gm_tests.wasm build/wasm_gm_tests.wasm
|
|
|
|
bazel_canvaskit_debug:
|
|
# See above note about spawn_strategy
|
|
bazelisk build :canvaskit_wasm --compilation_mode dbg --spawn_strategy=local
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../bazel-bin/modules/canvaskit/canvaskit_wasm/canvaskit.js build/canvaskit.js
|
|
cp ../../bazel-bin/modules/canvaskit/canvaskit_wasm/canvaskit.wasm build/canvaskit.wasm
|
|
|
|
bazel_canvaskit_release:
|
|
# See above note about spawn_strategy
|
|
bazelisk build :canvaskit_wasm --compilation_mode opt --spawn_strategy=local
|
|
- rm -rf build/
|
|
mkdir build
|
|
cp ../../bazel-bin/modules/canvaskit/canvaskit_wasm/canvaskit.js build/canvaskit.js
|
|
cp ../../bazel-bin/modules/canvaskit/canvaskit_wasm/canvaskit.wasm build/canvaskit.wasm
|
|
ls -l build
|