Skip to content

Commit 19fad29

Browse files
Mark delegate_provider_hdr and its dependencies compatible with non_prod.
PiperOrigin-RevId: 734745087
1 parent f9da95d commit 19fad29

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tensorflow/lite/tools/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ cc_library(
246246
name = "tool_params",
247247
srcs = ["tool_params.cc"],
248248
hdrs = ["tool_params.h"],
249+
compatible_with = get_compatible_with_portable(),
249250
copts = tflite_copts(),
250251
deps = [":logging"],
251252
)
@@ -265,6 +266,7 @@ cc_library(
265266
name = "command_line_flags",
266267
srcs = ["command_line_flags.cc"],
267268
hdrs = ["command_line_flags.h"],
269+
compatible_with = get_compatible_with_portable(),
268270
copts = tflite_copts(),
269271
deps = [
270272
":logging",

tensorflow/lite/tools/delegates/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
12
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_copts_warnings")
23
load("//tensorflow/lite/core/shims:cc_library_with_tflite.bzl", "cc_library_with_tflite", "cc_test_with_tflite")
34

@@ -16,6 +17,7 @@ cc_library_with_tflite(
1617
hdrs = [
1718
"delegate_provider.h",
1819
],
20+
compatible_with = get_compatible_with_portable(),
1921
copts = common_copts,
2022
tflite_deps = [
2123
"//tensorflow/lite/c:common",

0 commit comments

Comments
 (0)