blob: fc896166ce3981e7b14b62e98c08088823eb0b18 [file] [log] [blame]
Austin Schuhe9ae4562023-04-25 22:18:18 -07001cc_library(
2 name = "convex",
3 hdrs = ["convex.h"],
4 target_compatible_with = ["@platforms//os:linux"],
5 visibility = ["//visibility:public"],
6 deps = [
7 "@com_github_google_glog//:glog",
8 "@org_tuxfamily_eigen//:eigen",
9 ],
10)
11
12cc_test(
13 name = "convex_test",
14 srcs = [
15 "convex_test.cc",
16 ],
17 target_compatible_with = ["@platforms//os:linux"],
18 deps = [
19 ":convex",
20 "//aos/testing:googletest",
21 ],
22)