mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_rosemary
synced 2026-01-27 13:35:09 +00:00
40 lines
707 B
Plaintext
40 lines
707 B
Plaintext
//
|
|
// Copyright (C) 2022 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_shared {
|
|
name: "libshim_audio",
|
|
srcs: [
|
|
"libshim_audio.cpp"
|
|
],
|
|
shared_libs: [
|
|
"libmedia_helper",
|
|
"libaudioutils"
|
|
],
|
|
vendor: true
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libshim_beanpod",
|
|
srcs: ["libshim_beanpod.cpp"],
|
|
vendor: true,
|
|
shared_libs: [
|
|
"libkeymaster_messages",
|
|
],
|
|
header_libs: [
|
|
"libhardware_headers",
|
|
],
|
|
include_dirs: [ "system/keymaster/include" ],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libshim_showlogo",
|
|
srcs: ["libshim_showlogo.cpp"],
|
|
shared_libs: [
|
|
"libgui",
|
|
"libutils",
|
|
],
|
|
}
|