blob: 4a2c96f9cd35fb6640989c36c8aa6836985f1ec5 [file] [log] [blame]
Dan Willemsena2b50fb2016-09-22 16:05:13 -07001subdirs = ["tests"]
2
3cc_library_shared {
4 name: "libcamera_metadata",
Steven Moreland4c5e9d12017-04-11 21:04:34 -07005 vendor_available: true,
Dan Willemsena2b50fb2016-09-22 16:05:13 -07006 srcs: ["src/camera_metadata.c"],
7
8 include_dirs: ["system/media/private/camera/include"],
9 local_include_dirs: ["include"],
10 export_include_dirs: ["include"],
11
12 shared_libs: [
13 "libcutils",
14 "liblog",
15 ],
16
17 cflags: [
18 "-Wall",
19 "-Wextra",
20 "-Werror",
21 "-fvisibility=hidden",
22 "-std=c99",
23 ],
24
25 product_variables: {
26 debuggable: {
27 // Enable assert()
28 cflags: [
29 "-UNDEBUG",
30 "-DLOG_NDEBUG=1",
31 ],
32 },
33 },
34}