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
17 lines
528 B
Python
17 lines
528 B
Python
def extra_tensorflow_targets():
|
|
native.cc_library(
|
|
name = "cc_headers",
|
|
hdrs = native.glob(
|
|
["site-packages/tensorflow/include/**"],
|
|
allow_empty = True,
|
|
),
|
|
includes = ["site-packages/tensorflow/include"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
native.cc_library(
|
|
name = "cc_library",
|
|
srcs = ["site-packages/tensorflow/libtensorflow_framework.so.2"],
|
|
deps = [":cc_headers"],
|
|
visibility = ["//visibility:public"],
|
|
)
|