platform_hardware_interfaces/memtrack/1.0/default/Android.bp
Ruchi Kandoi 67d5cc47c9 memtrack: Add init_rc file for the android.hardware.memtrack@1.0-service
Test: boots and starts service
Bug: 31180823
Change-Id: Ibbf34025b6acbd91fd52c84f784dd9a5bd4cb966
Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
2016-11-03 13:21:06 -07:00

49 lines
1.3 KiB
Text

// 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.memtrack@1.0-impl",
relative_install_path: "hw",
srcs: ["Memtrack.cpp"],
shared_libs: [
"libbase",
"liblog",
"libhidl",
"libhardware",
"libhwbinder",
"libutils",
"android.hardware.memtrack@1.0",
],
}
cc_binary {
relative_install_path: "hw",
name: "android.hardware.memtrack@1.0-service",
init_rc: ["android.hardware.memtrack@1.0-service.rc"],
srcs: ["service.cpp"],
shared_libs: [
"liblog",
"libbase",
"libdl",
"libutils",
"libhardware",
"libhidl",
"libhwbinder",
"android.hardware.memtrack@1.0",
],
}