19 lines
287 B
Text
19 lines
287 B
Text
|
// Copyright 2006 The Android Open Source Project
|
||
|
|
||
|
cc_library_shared {
|
||
|
name: "libhardware",
|
||
|
|
||
|
srcs: ["hardware.c"],
|
||
|
shared_libs: [
|
||
|
"libcutils",
|
||
|
"liblog",
|
||
|
"libdl",
|
||
|
],
|
||
|
cflags: ["-DQEMU_HARDWARE"],
|
||
|
}
|
||
|
|
||
|
subdirs = [
|
||
|
"modules/*",
|
||
|
"tests/*",
|
||
|
]
|