blob: 93c347bebcacd4220489733e45ca0372677eca14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2011 The Android Open Source Project
cc_library_static {
name: "libqemu_pipe",
vendor_available: true,
sanitize: {
misc_undefined: ["integer"],
},
srcs: ["qemu_pipe.cpp"],
local_include_dirs: ["include"],
static_libs: ["libbase"],
export_include_dirs: ["include"],
cflags: ["-Werror"],
}
|