summaryrefslogtreecommitdiff
path: root/qemu_pipe/Android.bp
blob: ad86a4e6d607737b555daf702fada64ad2fff807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2011 The Android Open Source Project

cc_library_static {
    name: "libqemu_pipe",
    vendor_available: true,
    recovery_available: true,
    apex_available: [
        "com.android.adbd",
        // TODO(b/151398197) remove the below
        "//apex_available:platform",
    ],
    sanitize: {
        misc_undefined: ["integer"],
    },
    srcs: ["qemu_pipe.cpp"],
    local_include_dirs: ["include"],
    static_libs: ["libbase"],
    export_include_dirs: ["include"],
    cflags: ["-Werror"],
}