blob: 42a69db012f454f17925cc5cc96e85fc38afcaaf [file] [log] [blame]
Yifan Honge250fd82017-06-08 11:30:17 -07001// Copyright 2011 The Android Open Source Project
2
Bob Badourd69ad692021-02-16 19:02:14 -08003package {
4 default_applicable_licenses: ["Android-Apache-2.0"],
5}
6
Yifan Honge250fd82017-06-08 11:30:17 -07007cc_library_static {
8 name: "libqemu_pipe",
Yifan Hongfabe5492017-06-08 14:15:52 -07009 vendor_available: true,
Jiyong Parka0e75042018-05-24 14:11:00 +090010 recovery_available: true,
Jiyong Park697134d2020-03-23 14:40:50 +000011 apex_available: [
12 "com.android.adbd",
13 // TODO(b/151398197) remove the below
14 "//apex_available:platform",
15 ],
Yifan Honge250fd82017-06-08 11:30:17 -070016 sanitize: {
17 misc_undefined: ["integer"],
18 },
19 srcs: ["qemu_pipe.cpp"],
20 local_include_dirs: ["include"],
21 static_libs: ["libbase"],
22 export_include_dirs: ["include"],
23 cflags: ["-Werror"],
24}