Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 1 | package(default_visibility = ["//visibility:public"]) |
| 2 | |
| 3 | load("//tools:environments.bzl", "mcu_cpus") |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 4 | |
| 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 | 972e47e | 2018-12-20 17:20:58 -0800 | [diff] [blame] | 10 | compatible_with = mcu_cpus, |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 11 | ) |
| 12 | |
| 13 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 14 | name = "constants", |
| 15 | hdrs = [ |
| 16 | "constants.h", |
| 17 | ], |
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"], |
| 23 | visibility = ["//visibility:public"], |
| 24 | ) |