Internal change

PiperOrigin-RevId: 532113907
This commit is contained in:
MediaPipe Team 2023-05-15 08:04:01 -07:00 committed by Copybara-Service
parent fc9538533c
commit e0eef9791e
4 changed files with 9 additions and 1 deletions

View File

@ -317,6 +317,7 @@ cc_library(
cc_test(
name = "image_cropping_calculator_test",
srcs = ["image_cropping_calculator_test.cc"],
tags = ["not_run:arm"],
deps = [
":image_cropping_calculator",
":image_cropping_calculator_cc_proto",
@ -650,6 +651,7 @@ cc_library(
cc_test(
name = "segmentation_smoothing_calculator_test",
srcs = ["segmentation_smoothing_calculator_test.cc"],
tags = ["not_run:arm"],
deps = [
":image_clone_calculator",
":image_clone_calculator_cc_proto",
@ -771,7 +773,10 @@ cc_test(
"//mediapipe/calculators/tensor:testdata/image_to_tensor/medium_sub_rect_with_rotation_border_zero_interp_cubic.png",
"//mediapipe/calculators/tensor:testdata/image_to_tensor/noop_except_range.png",
],
tags = ["desktop_only_test"],
tags = [
"desktop_only_test",
"not_run:arm",
],
deps = [
":affine_transformation",
":image_transformation_calculator",

View File

@ -1052,6 +1052,7 @@ cc_test(
"testdata/image_to_tensor/medium_sub_rect_with_rotation_border_zero.png",
"testdata/image_to_tensor/noop_except_range.png",
],
tags = ["not_run:arm"],
deps = [
":image_to_tensor_calculator",
":image_to_tensor_converter",

View File

@ -1405,6 +1405,7 @@ cc_test(
"calculator_graph_test.cc",
],
linkstatic = 1,
tags = ["not_run:arm"],
visibility = ["//visibility:public"],
deps = [
":calculator_framework",

View File

@ -481,6 +481,7 @@ cc_library(
cc_test(
name = "tensor_test",
srcs = ["tensor_test.cc"],
tags = ["not_run:arm"],
deps = [
":tensor",
"//mediapipe/framework/port:gtest_main",