blob: 561373714e373a013147d8469a36307a303f1bc1 [file] [log] [blame]
Maxwell Hendersonf8c96892023-06-28 19:55:59 -07001load("@com_github_google_flatbuffers//:build_defs.bzl", "flatbuffer_cc_library")
2
Austin Schuhbcce26a2018-03-26 23:41:24 -07003package(default_visibility = ["//visibility:public"])
4
Austin Schuh044e18b2015-10-21 20:17:09 -07005cc_library(
Austin Schuhbcce26a2018-03-26 23:41:24 -07006 name = "shifter_hall_effect",
7 hdrs = [
8 "shifter_hall_effect.h",
9 ],
Austin Schuh044e18b2015-10-21 20:17:09 -070010)
11
12cc_library(
Austin Schuhbcce26a2018-03-26 23:41:24 -070013 name = "constants",
14 hdrs = [
15 "constants.h",
16 ],
Philipp Schraderdada1072020-11-24 11:34:46 -080017 target_compatible_with = ["@platforms//os:linux"],
Austin Schuh044e18b2015-10-21 20:17:09 -070018)
Brian Silverman6470f442018-08-05 12:08:16 -070019
20py_library(
21 name = "python_init",
22 srcs = ["__init__.py"],
Philipp Schraderdada1072020-11-24 11:34:46 -080023 target_compatible_with = ["@platforms//os:linux"],
Brian Silverman6470f442018-08-05 12:08:16 -070024 visibility = ["//visibility:public"],
25)
Maxwell Hendersonf8c96892023-06-28 19:55:59 -070026
27flatbuffer_cc_library(
28 name = "can_configuration_fbs",
29 srcs = [
30 ":can_configuration.fbs",
31 ],
32 gen_reflections = 1,
33 visibility = ["//visibility:public"],
34)