forked from UBC-Thunderbots/Software
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
19 lines (17 loc) · 725 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package(default_visibility = ["//visibility:public"])
load("@thunderscope_deps//:requirements.bzl", "requirement")
py_library(
name = "gl_widget",
srcs = ["gl_widget.py"],
deps = [
"//software/thunderscope:proto_unix_io",
"//software/thunderscope/common:toast_msg_helper",
"//software/thunderscope/gl/helpers:extended_gl_view_widget",
"//software/thunderscope/gl/layers:gl_layer",
"//software/thunderscope/gl/layers:gl_measure_layer",
"//software/thunderscope/gl/widgets:gl_field_toolbar",
"//software/thunderscope/gl/widgets:gl_gamecontroller_toolbar",
"//software/thunderscope/replay:replay_controls",
requirement("pyqtgraph"),
],
)