Build refactoring

PiperOrigin-RevId: 253619303
This commit is contained in:
A. Unique TensorFlower 2019-06-17 11:14:31 -07:00 committed by TensorFlower Gardener
parent 1efa1e39c1
commit 700c5d8eb1
2 changed files with 2 additions and 7 deletions

View File

@ -426,7 +426,6 @@ cc_library(
"//tensorflow/lite/c:c_api_internal",
"//tensorflow/lite/kernels/internal:audio_utils",
"//tensorflow/lite/kernels/internal:common",
"//tensorflow/lite/kernels/internal:compatibility",
"//tensorflow/lite/kernels/internal:kernel_utils",
"//tensorflow/lite/kernels/internal:optimized",
"//tensorflow/lite/kernels/internal:optimized_base",
@ -434,6 +433,7 @@ cc_library(
"//tensorflow/lite/kernels/internal:reference_base",
"//tensorflow/lite/kernels/internal:tensor",
"//tensorflow/lite/kernels/internal:tensor_utils",
"//tensorflow/lite/kernels/internal:types",
"//third_party/eigen3",
"@farmhash_archive//:farmhash",
"@flatbuffers",

View File

@ -291,9 +291,6 @@ cc_library(
"optimized/eigen_spatial_convolutions.h",
"optimized/eigen_tensor_reduced_instantiations_oss.h",
"optimized/multithreaded_conv.h",
# FIXME(petewarden) - This should be removed, since it's a header from the
# :tensor dependency below.
"tensor.h",
],
deps = [
":common",
@ -498,7 +495,6 @@ cc_library(
"reference/portable_tensor_utils.h",
],
hdrs = [
"optimized/cpu_check.h",
"optimized/neon_tensor_utils.h",
"optimized/tensor_utils_impl.h",
],
@ -555,18 +551,17 @@ cc_library(
"tensor_utils.cc",
],
hdrs = [
"optimized/cpu_check.h",
"optimized/neon_tensor_utils.h",
"optimized/tensor_utils_impl.h",
"reference/portable_tensor_utils.h",
"tensor_utils.h",
"types.h",
],
copts = NEON_FLAGS_IF_APPLICABLE,
deps = [
":common",
":compatibility",
":cpu_check",
":types",
"//tensorflow/lite/c:c_api_internal",
"@arm_neon_2_x86_sse",
"//tensorflow/lite/kernels:cpu_backend_context",