tflite-micro/python/numpy_cc_targets.bzl
Esun Kim 807c35d6a9
Bazel Module (#3364)
* Work

* Review update

* Enabled tests

* Bazel: Suppress warnings from external repositories

* Fixed whl_test

* Formatted

* More format
2026-02-11 14:11:47 -08:00

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"],
)