blob: a21901fb659e7e921d8c04d75d3576508e68e995 [file] [log] [blame]
// Copyright (C) 2021 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.
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
genrule {
name: "com.android.hardware.power.rc-srcs",
srcs: [
":android.hardware.power.rc",
":android.hardware.power.stats.rc",
],
out: ["com.android.hardware.power.rc"],
cmd: "sed -E 's@/vendor/bin/@/apex/com.android.hardware.power/bin/@' $(in) > $(out)",
}
prebuilt_etc {
name: "com.android.hardware.power.rc",
src: ":com.android.hardware.power.rc-srcs",
installable: false,
}
apex {
name: "com.android.hardware.power",
manifest: "apex_manifest.json",
key: "com.android.hardware.key",
certificate: ":com.android.hardware.certificate",
file_contexts: "file_contexts",
updatable: false,
vendor: true,
// Bundle the Power and PowerStats HALs into this one APEX.
binaries: [
"android.hardware.power-service.example",
"android.hardware.power.stats-service.example",
],
prebuilts: [
"com.android.hardware.power.rc",
"android.hardware.power.xml",
"android.hardware.power.stats.xml",
],
overrides: [
// Shared lib installed by default but unused by the AIDL implementation.
"power.default",
],
}