Home | History | Annotate | Download | only in tests
      1 // Build the unit tests.
      2 cc_test {
      3     name: "camera_metadata_tests",
      4     srcs: ["camera_metadata_tests.cpp"],
      5 
      6     shared_libs: [
      7         "libutils",
      8         "libcamera_metadata",
      9     ],
     10 
     11     include_dirs: ["system/media/private/camera/include"],
     12 
     13     cflags: [
     14         "-Wall",
     15         "-Wextra",
     16         "-Werror",
     17     ],
     18 
     19     multilib: {
     20         lib32: {
     21             stem: "camera_metadata_tests",
     22         },
     23         lib64: {
     24             stem: "camera_metadata_tests64",
     25         },
     26     },
     27 }
     28