1// Build the unit tests. 2package { 3 // http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // the below license kinds from "system_media_license": 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["system_media_license"], 8} 9 10cc_test { 11 name: "camera_metadata_tests", 12 srcs: ["camera_metadata_tests.cpp"], 13 test_suites: ["device-tests"], 14 15 shared_libs: [ 16 "libutils", 17 "libcamera_metadata", 18 ], 19 20 include_dirs: ["system/media/private/camera/include"], 21 22 cflags: [ 23 "-Wall", 24 "-Wextra", 25 "-Werror", 26 ], 27 28 multilib: { 29 lib32: { 30 stem: "camera_metadata_tests", 31 }, 32 lib64: { 33 stem: "camera_metadata_tests64", 34 }, 35 }, 36} 37