Maxwell Henderson | f8c9689 | 2023-06-28 19:55:59 -0700 | [diff] [blame^] | 1 | load("@com_github_google_flatbuffers//:build_defs.bzl", "flatbuffer_cc_library") |
| 2 | |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 3 | package(default_visibility = ["//visibility:public"]) |
| 4 | |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 5 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 6 | name = "shifter_hall_effect", |
| 7 | hdrs = [ |
| 8 | "shifter_hall_effect.h", |
| 9 | ], |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 10 | ) |
| 11 | |
| 12 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 13 | name = "constants", |
| 14 | hdrs = [ |
| 15 | "constants.h", |
| 16 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 17 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 18 | ) |
Brian Silverman | 6470f44 | 2018-08-05 12:08:16 -0700 | [diff] [blame] | 19 | |
| 20 | py_library( |
| 21 | name = "python_init", |
| 22 | srcs = ["__init__.py"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 23 | target_compatible_with = ["@platforms//os:linux"], |
Brian Silverman | 6470f44 | 2018-08-05 12:08:16 -0700 | [diff] [blame] | 24 | visibility = ["//visibility:public"], |
| 25 | ) |
Maxwell Henderson | f8c9689 | 2023-06-28 19:55:59 -0700 | [diff] [blame^] | 26 | |
| 27 | flatbuffer_cc_library( |
| 28 | name = "can_configuration_fbs", |
| 29 | srcs = [ |
| 30 | ":can_configuration.fbs", |
| 31 | ], |
| 32 | gen_reflections = 1, |
| 33 | visibility = ["//visibility:public"], |
| 34 | ) |