• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

debugger/23-Nov-2023-148132

fonts/23-Nov-2023-

tests/23-Nov-2023-149116

.gitignoreD23-Nov-202344 33

MakefileD23-Nov-20231.3 KiB3424

README.mdD23-Nov-2023744 3323

compile.shD23-Nov-20234.5 KiB157123

cpu.jsD23-Nov-20233.4 KiB8758

debugger_bindings.cppD23-Nov-202325.9 KiB646458

externs.jsD23-Nov-20231.8 KiB7355

gpu.jsD23-Nov-20232.9 KiB7554

helper.jsD23-Nov-20231.1 KiB2816

karma.conf.jsD23-Nov-20232.3 KiB7640

package.jsonD23-Nov-2023448 2221

serve.pyD23-Nov-2023508 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`