1cc_library_static {
2    name: "android.hardware.camera.common@1.0-helper",
3    vendor_available: true,
4    defaults: ["hidl_defaults"],
5    srcs: [
6        "CameraModule.cpp",
7        "CameraMetadata.cpp",
8        "CameraParameters.cpp",
9        "VendorTagDescriptor.cpp",
10        "HandleImporter.cpp",
11        "Exif.cpp"
12    ],
13    cflags: [
14        "-Werror",
15        "-Wextra",
16        "-Wall",
17    ],
18    shared_libs: [
19        "liblog",
20        "libhardware",
21        "libcamera_metadata",
22        "android.hardware.graphics.mapper@2.0",
23        "libexif",
24    ],
25    include_dirs: ["system/media/private/camera/include"],
26    export_include_dirs : ["include"]
27}
28
29