forked from joejulian/gio-cmd
333b1df54a
This commit adds an end to end test for the custom rendering use-case. I confirmed that the new test failed when custom rendering frame lifecycle was broken, and succeeds now. However, the old X11 tests started failing when the new one started passing. I'm not sure how they interfere with one another, but I'm out of time to investigate. Signed-off-by: Chris Waldon <christopher.waldon.dev@gmail.com>
32 lines
1.2 KiB
Modula-2
32 lines
1.2 KiB
Modula-2
module gioui.org/cmd
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
gioui.org v0.0.0-20220628163331-e21c665e70ae
|
|
github.com/akavel/rsrc v0.10.1
|
|
github.com/chromedp/cdproto v0.0.0-20191114225735-6626966fbae4
|
|
github.com/chromedp/chromedp v0.5.2
|
|
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d
|
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
|
|
golang.org/x/text v0.3.7
|
|
golang.org/x/tools v0.1.0
|
|
)
|
|
|
|
require (
|
|
gioui.org/cpu v0.0.0-20210817075930-8d6a761490d2 // indirect
|
|
gioui.org/shader v1.0.6 // indirect
|
|
github.com/benoitkugler/textlayout v0.1.1 // indirect
|
|
github.com/gioui/uax v0.2.1-0.20220325163150-e3d987515a12 // indirect
|
|
github.com/go-text/typesetting v0.0.0-20220411150340-35994bc27a7b // indirect
|
|
github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee // indirect
|
|
github.com/gobwas/pool v0.2.0 // indirect
|
|
github.com/gobwas/ws v1.0.2 // indirect
|
|
github.com/knq/sysutil v0.0.0-20191005231841-15668db23d08 // indirect
|
|
github.com/mailru/easyjson v0.7.0 // indirect
|
|
golang.org/x/exp v0.0.0-20210722180016-6781d3edade3 // indirect
|
|
golang.org/x/mod v0.4.2 // indirect
|
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
)
|