• Home
Name Date Size #Lines LOC

..--

debugger/12-May-2024-68,49867,102

fonts/12-May-2024-

tests/12-May-2024-149116

.gitignoreD12-May-202444 33

MakefileD12-May-20241.3 KiB3424

README.mdD12-May-2024744 3323

compile.shD12-May-20244.4 KiB155121

cpu.jsD12-May-20243.4 KiB8758

debugger_bindings.cppD12-May-202425.9 KiB646458

externs.jsD12-May-20241.8 KiB7355

gpu.jsD12-May-20242.9 KiB7554

helper.jsD12-May-20241.1 KiB2816

karma.conf.jsD12-May-20242.3 KiB7640

package.jsonD12-May-2024448 2221

README.md

1WASM SKP Debugger
2=================
3
4The wasm skp debugger is a wasm binary that uses DebugCanvas to show SKP and MSKP files. It is
5embedded in the javascript code in debugger-assets from the infra buildbot repository.
6
7The live version is available at debugger.skia.org
8
9Build
10-----
11
12```
13make debug
14make move-assets
15```
16
17note that make move-assets just copies the two output files over to the infra repo where they can
18be served locally. This requires SKIA_INFRA_ROOT to be set to the root of your checkout of that
19repo.
20
21For more information on running the debugger locally, see infra/debugger-assets/README.md in the
22buildbot repo.
23
24Test
25----
26
27tests are run with
28
29```
30make test-continuous
31```
32
33tests are defined by files in `tests/*.spec.js`