blob: a89007f72defd945d14213584c2aa17b51d40ad7 [file] [log] [blame]
//
// Copyright (C) 2017 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_defaults {
name: "android.hardware.vibrator@1.3-defaults.coral",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
shared_libs: [
"libhidlbase",
"libcutils",
"libhidltransport",
"liblog",
"libhwbinder",
"libutils",
"libhardware",
"android.hardware.vibrator@1.0",
"android.hardware.vibrator@1.1",
"android.hardware.vibrator@1.2",
"android.hardware.vibrator@1.3",
],
}
cc_defaults {
name: "PtsVibratorHalFloralDefaults",
defaults: ["android.hardware.vibrator@1.3-defaults.coral"],
static_libs: ["android.hardware.vibrator@1.3-impl.coral"],
test_suites: [
"general-tests",
"pts",
],
multilib: {
lib32: {
suffix: "32",
},
lib64: {
suffix: "64",
},
},
}
cc_library {
name: "android.hardware.vibrator@1.3-impl.coral",
defaults: ["android.hardware.vibrator@1.3-defaults.coral"],
srcs: [
"Hardware.cpp",
"Vibrator.cpp",
],
export_include_dirs: ["."],
vendor_available: true,
}
cc_binary {
name: "android.hardware.vibrator@1.3-service.coral",
defaults: ["android.hardware.vibrator@1.3-defaults.coral"],
init_rc: ["android.hardware.vibrator@1.3-service.coral.rc"],
vintf_fragments: ["android.hardware.vibrator@1.3-service.coral.xml"],
srcs: ["service.cpp"],
static_libs: ["android.hardware.vibrator@1.3-impl.coral"],
proprietary: true,
}