mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
* Work * Review update * Enabled tests * Bazel: Suppress warnings from external repositories * Fixed whl_test * Formatted * More format
16 lines
471 B
Python
16 lines
471 B
Python
def extra_numpy_targets():
|
|
native.cc_library(
|
|
name = "cc_headers",
|
|
hdrs = native.glob(
|
|
[
|
|
"site-packages/numpy/_core/include/**",
|
|
"site-packages/numpy/core/include/**",
|
|
],
|
|
allow_empty = True,
|
|
),
|
|
includes = [
|
|
"site-packages/numpy/_core/include",
|
|
"site-packages/numpy/core/include",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|