• Home
Name Date Size #Lines LOC

..--

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

fonts/03-May-2024-

tests/03-May-2024-149116

.gitignoreD03-May-202444 33

MakefileD03-May-20241.3 KiB3523

README.mdD03-May-2024744 3323

compile.shD03-May-20244.1 KiB146114

cpu.jsD03-May-20243.4 KiB8758

debugger_bindings.cppD03-May-202421 KiB524376

externs.jsD03-May-20241.4 KiB6141

gpu.jsD03-May-20242.9 KiB7554

helper.jsD03-May-20241 KiB2513

karma.conf.jsD03-May-20242.3 KiB7640

package.jsonD03-May-2024448 2221

ready.jsD03-May-2024486 1613

serve.pyD03-May-2024508 219

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`