3605a9c720
Change-Id: If335a7b83289edf4759d0195a8b065c8dac6631b
43 lines
1,016 B
Text
43 lines
1,016 B
Text
//
|
|
// Copyright (C) 2018 The Android Open Source Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_library {
|
|
name: "libdisppower",
|
|
proprietary: true,
|
|
srcs: [
|
|
"disp-power/InteractionHandler.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"liblog",
|
|
"libperfmgr",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.power-service.xiaomi_sdm660-libperfmgr",
|
|
relative_install_path: "hw",
|
|
init_rc: ["aidl/android.hardware.power-service.xiaomi_sdm660-libperfmgr.rc"],
|
|
vintf_fragments: ["aidl/android.hardware.power-service.xiaomi_sdm660.xml"],
|
|
vendor: true,
|
|
shared_libs: [
|
|
"android.hardware.power-ndk_platform",
|
|
"libbase",
|
|
"libcutils",
|
|
"liblog",
|
|
"libutils",
|
|
"libbinder_ndk",
|
|
"libdisppower",
|
|
"libperfmgr",
|
|
"pixel-power-ext-ndk_platform",
|
|
],
|
|
srcs: [
|
|
"aidl/service.cpp",
|
|
"aidl/Power.cpp",
|
|
"aidl/PowerExt.cpp",
|
|
],
|
|
}
|