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 | ], |
Brian Silverman | 7a7c24d | 2018-09-01 17:49:09 -0700 | [diff] [blame] | 10 | compatible_with = mcu_cpus + [ |
| 11 | "//tools:armhf-debian", |
| 12 | ], |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 13 | ) |
| 14 | |
| 15 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 16 | name = "constants", |
| 17 | hdrs = [ |
| 18 | "constants.h", |
| 19 | ], |
Brian Silverman | 7a7c24d | 2018-09-01 17:49:09 -0700 | [diff] [blame] | 20 | compatible_with = [ |
| 21 | "//tools:armhf-debian", |
| 22 | ], |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 23 | ) |
Brian Silverman | 6470f44 | 2018-08-05 12:08:16 -0700 | [diff] [blame] | 24 | |
| 25 | py_library( |
| 26 | name = "python_init", |
| 27 | srcs = ["__init__.py"], |
| 28 | visibility = ["//visibility:public"], |
| 29 | ) |