Create BUILD files and corresponding targets for tensorflow/core/kernels/spectrogram_test_data/BUILD.

PiperOrigin-RevId: 340544018
Change-Id: Iccd00781d667e9d6c4f8759c84d580aac086843c
This commit is contained in:
Amit Patankar 2020-11-03 16:02:51 -08:00 committed by TensorFlower Gardener
parent 94d0a56fe3
commit 508ef034d8
2 changed files with 19 additions and 6 deletions

View File

@ -5492,13 +5492,9 @@ tf_cc_test(
],
)
filegroup(
alias(
name = "spectrogram_test_data",
srcs = [
"spectrogram_test_data/short_test_segment.wav",
"spectrogram_test_data/short_test_segment_spectrogram.csv.bin",
"spectrogram_test_data/short_test_segment_spectrogram_400_200.csv.bin",
],
actual = "//tensorflow/core/kernels/spectrogram_test_data:spectrogram_test_data",
visibility = ["//visibility:public"],
)

View File

@ -0,0 +1,17 @@
# Description:
# spectrogram test data packages.
load("//tensorflow:tensorflow.bzl", "filegroup")
package(
licenses = ["notice"], # Apache 2.0
)
filegroup(
name = "spectrogram_test_data",
srcs = [
"short_test_segment.wav",
"short_test_segment_spectrogram.csv.bin",
"short_test_segment_spectrogram_400_200.csv.bin",
],
visibility = ["//visibility:public"],
)