File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
tensorflow/lite/micro/examples/person_detection Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,13 @@ tflm_cc_library(
2525 ],
2626)
2727
28+ filegroup (
29+ name = "testdata_files" ,
30+ srcs = glob (["testdata/**" ]),
31+ visibility = ["//visibility:public" ],
32+ )
33+
34+
2835generate_cc_arrays (
2936 name = "generated_no_person_bmp_cc" ,
3037 src = "testdata/no_person.bmp" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ py_library(
2525py_test (
2626 name = "raw_to_bitmap_test" ,
2727 srcs = ["raw_to_bitmap_test.py" ],
28- data = glob ([ "testdata/**" ]) ,
28+ data = [ "//tensorflow/lite/micro/examples/person_detection:testdata_files" ] ,
2929 tags = [
3030 "nomicro_static" , # TF dep incompatible w/ TF_LITE_STATIC_MEMORY.
3131 "notap" , # TODO(b/186679612)
You can’t perform that action at this time.
0 commit comments