aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/internal/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/kernels/internal/BUILD')
-rw-r--r--tensorflow/contrib/lite/kernels/internal/BUILD22
1 files changed, 19 insertions, 3 deletions
diff --git a/tensorflow/contrib/lite/kernels/internal/BUILD b/tensorflow/contrib/lite/kernels/internal/BUILD
index 7962fcbc9d..3a855fe3dd 100644
--- a/tensorflow/contrib/lite/kernels/internal/BUILD
+++ b/tensorflow/contrib/lite/kernels/internal/BUILD
@@ -232,6 +232,7 @@ cc_library(
cc_test(
name = "tensor_test",
srcs = ["tensor_test.cc"],
+ tags = ["no_oss"],
deps = [
":reference",
"@com_google_googletest//:gtest",
@@ -260,6 +261,7 @@ cc_library(
cc_test(
name = "quantization_util_test",
srcs = ["quantization_util_test.cc"],
+ tags = ["no_oss"],
deps = [
":quantization_util",
"@com_google_googletest//:gtest",
@@ -505,7 +507,10 @@ cc_test(
"//conditions:default": [],
}),
linkstatic = 1,
- tags = ["tflite_not_portable_ios"],
+ tags = [
+ "no_oss",
+ "tflite_not_portable_ios",
+ ],
deps = [
":tensor_utils",
"//tensorflow/contrib/lite:builtin_op_data",
@@ -517,6 +522,7 @@ cc_test(
cc_test(
name = "depthwiseconv_float_test",
srcs = ["depthwiseconv_float_test.cc"],
+ tags = ["no_oss"],
deps = [
":optimized_base",
":reference_base",
@@ -529,6 +535,7 @@ cc_test(
cc_test(
name = "depthwiseconv_quantized_test",
srcs = ["depthwiseconv_quantized_test.cc"],
+ tags = ["no_oss"],
deps = [
":optimized_base",
":reference_base",
@@ -541,7 +548,10 @@ cc_test(
cc_test(
name = "resize_bilinear_test",
srcs = ["resize_bilinear_test.cc"],
- tags = ["tflite_not_portable"],
+ tags = [
+ "no_oss",
+ "tflite_not_portable",
+ ],
deps = [
":optimized_base",
":reference_base",
@@ -557,6 +567,7 @@ cc_test(
srcs = [
"softmax_quantized_test.cc",
],
+ tags = ["no_oss"],
deps = [
":optimized_base",
":quantization_util",
@@ -572,7 +583,10 @@ cc_test(
srcs = [
"logsoftmax_quantized_test.cc",
],
- tags = ["tflite_not_portable"],
+ tags = [
+ "no_oss",
+ "tflite_not_portable",
+ ],
deps = [
":optimized_base",
":quantization_util",
@@ -585,6 +599,7 @@ cc_test(
cc_test(
name = "log_quantized_test",
srcs = ["log_quantized_test.cc"],
+ tags = ["no_oss"],
deps = [
":optimized_base",
":reference_base",
@@ -611,6 +626,7 @@ cc_library(
cc_test(
name = "batch_to_space_nd_test",
srcs = ["batch_to_space_nd_test.cc"],
+ tags = ["no_oss"],
deps = [
":optimized_base",
"@com_google_googletest//:gtest_main",