-
Notifications
You must be signed in to change notification settings - Fork 9.7k
/
BUILD
45 lines (38 loc) · 1023 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
load("//tools/proto:proto.bzl", "apollo_py_binary", "apollo_py_library")
# load("//tools/install:install.bzl", "install")
load("//tools:apollo_package.bzl", "apollo_package")
package(default_visibility = ["//visibility:public"])
apollo_py_library(
name = "item",
srcs = ["item.py"],
)
apollo_py_binary(
name = "realtime_plot",
srcs = ["realtime_plot.py"],
deps = [
":item",
":stitem",
":xyitem",
"//cyber/python/cyber_py3:cyber",
"//modules/common_msgs/chassis_msgs:chassis_py_pb2",
"//modules/common_msgs/localization_msgs:localization_py_pb2",
"//modules/common_msgs/planning_msgs:planning_py_pb2",
"//modules/tools/common:proto_utils",
],
)
apollo_py_library(
name = "stitem",
srcs = ["stitem.py"],
)
apollo_py_library(
name = "xyitem",
srcs = ["xyitem.py"],
)
# install(
# name = "install",
# py_dest = "tools/realtime_plot",
# targets = [
# ":realtime_plot",
# ]
# )
apollo_package()