Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

52 lines
1.3 KiB
Python

load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
load(
"//tensorflow/lite:build_def.bzl",
"tflite_cc_library_with_c_headers_test",
"tflite_copts",
)
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
exports_files(
srcs = [
"profiler.h",
"telemetry_setting.h",
],
visibility = [
"//tensorflow/lite:__subpackages__",
],
)
tflite_cc_library_with_c_headers_test(
name = "profiler",
hdrs = ["profiler.h"],
compatible_with = get_compatible_with_portable(),
copts = tflite_copts(),
deps = [":telemetry_setting"],
)
tflite_cc_library_with_c_headers_test(
name = "telemetry_setting",
hdrs = ["telemetry_setting.h"],
compatible_with = get_compatible_with_portable(),
copts = tflite_copts(),
deps = [
":telemetry_setting_internal",
"//tensorflow/lite/core/c:common",
],
)
cc_library(
name = "telemetry_setting_internal",
srcs = ["telemetry_setting_internal.cc"],
hdrs = ["telemetry_setting_internal.h"],
compatible_with = get_compatible_with_portable(),
copts = tflite_copts(),
deps = ["//tensorflow/lite/core/c:common"],
)