2016-09-29 13:56:05 -07:00
|
|
|
// Copyright (C) 2016 The Android Open Source Project
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
cc_library_shared {
|
|
|
|
|
name: "android.hardware.power@1.0-impl",
|
2017-03-08 16:11:32 -08:00
|
|
|
defaults: ["hidl_defaults"],
|
2017-02-13 09:59:06 -08:00
|
|
|
proprietary: true,
|
2016-09-29 13:56:05 -07:00
|
|
|
relative_install_path: "hw",
|
|
|
|
|
srcs: ["Power.cpp"],
|
|
|
|
|
|
2017-02-10 19:36:53 -08:00
|
|
|
cflags: [
|
|
|
|
|
"-Wall",
|
|
|
|
|
"-Werror",
|
|
|
|
|
],
|
|
|
|
|
|
2016-09-29 13:56:05 -07:00
|
|
|
shared_libs: [
|
|
|
|
|
"liblog",
|
|
|
|
|
"libhardware",
|
2016-11-16 14:17:58 -08:00
|
|
|
"libhidlbase",
|
2016-09-29 13:56:05 -07:00
|
|
|
"libutils",
|
|
|
|
|
"android.hardware.power@1.0",
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
2016-09-29 17:46:57 -07:00
|
|
|
|
|
|
|
|
cc_binary {
|
2017-02-13 09:59:06 -08:00
|
|
|
proprietary: true,
|
2017-03-08 16:11:32 -08:00
|
|
|
defaults: ["hidl_defaults"],
|
2016-09-29 17:46:57 -07:00
|
|
|
relative_install_path: "hw",
|
|
|
|
|
name: "android.hardware.power@1.0-service",
|
2016-10-12 14:58:03 -07:00
|
|
|
init_rc: ["android.hardware.power@1.0-service.rc"],
|
2016-09-29 17:46:57 -07:00
|
|
|
srcs: ["service.cpp"],
|
|
|
|
|
|
2017-02-10 19:36:53 -08:00
|
|
|
cflags: [
|
|
|
|
|
"-Wall",
|
|
|
|
|
"-Werror",
|
|
|
|
|
],
|
|
|
|
|
|
2016-09-29 17:46:57 -07:00
|
|
|
shared_libs: [
|
|
|
|
|
"liblog",
|
|
|
|
|
"libdl",
|
|
|
|
|
"libutils",
|
|
|
|
|
"libhardware",
|
2016-11-16 14:17:58 -08:00
|
|
|
"libhidlbase",
|
2016-09-29 17:46:57 -07:00
|
|
|
"android.hardware.power@1.0",
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|