1cc_library {
2    name: "android.hardware.tests.safeunion@1.0-impl",
3    defaults: ["hidl_defaults"],
4    relative_install_path: "hw",
5    srcs: [
6        "SafeUnion.cpp",
7    ],
8    shared_libs: [
9        "libbase",
10        "libcutils",
11        "libhidlbase",
12        "liblog",
13        "libutils",
14    ],
15
16    // These are static libs only for testing purposes and portability. Shared
17    // libs should be used on device.
18    static_libs: ["android.hardware.tests.safeunion@1.0"],
19}
20