1KEYWORD_BENCHMARK_SRCS := \ 2tensorflow/lite/micro/benchmarks/keyword_benchmark.cc \ 3tensorflow/lite/micro/benchmarks/keyword_scrambled_model_data.cc 4 5KEYWORD_BENCHMARK_HDRS := \ 6tensorflow/lite/micro/benchmarks/keyword_scrambled_model_data.h \ 7tensorflow/lite/micro/benchmarks/micro_benchmark.h 8 9PERSON_DETECTION_BENCHMARK_SRCS := \ 10tensorflow/lite/micro/benchmarks/person_detection_benchmark.cc \ 11$(MAKEFILE_DIR)/downloads/person_model_int8/no_person_image_data.cc \ 12$(MAKEFILE_DIR)/downloads/person_model_int8/person_detect_model_data.cc \ 13$(MAKEFILE_DIR)/downloads/person_model_int8/person_image_data.cc 14 15PERSON_DETECTION_BENCHMARK_HDRS := \ 16tensorflow/lite/micro/examples/person_detection/person_detect_model_data.h 17 18# Builds a standalone binary. 19$(eval $(call microlite_test,keyword_benchmark,\ 20$(KEYWORD_BENCHMARK_SRCS),$(KEYWORD_BENCHMARK_HDRS))) 21 22$(eval $(call microlite_test,person_detection_benchmark,\ 23$(PERSON_DETECTION_BENCHMARK_SRCS),$(PERSON_DETECTION_BENCHMARK_HDRS))) 24