2016-09-29 22:55:10 +02: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.memtrack@1.0-impl",
|
2017-03-09 01:11:32 +01:00
|
|
|
defaults: ["hidl_defaults"],
|
2017-02-13 18:59:06 +01:00
|
|
|
proprietary: true,
|
2016-09-29 22:55:10 +02:00
|
|
|
relative_install_path: "hw",
|
|
|
|
srcs: ["Memtrack.cpp"],
|
|
|
|
|
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
"liblog",
|
2016-11-16 23:17:58 +01:00
|
|
|
"libhidlbase",
|
|
|
|
"libhidltransport",
|
2016-09-29 22:55:10 +02:00
|
|
|
"libhardware",
|
|
|
|
"libutils",
|
|
|
|
"android.hardware.memtrack@1.0",
|
|
|
|
],
|
|
|
|
|
|
|
|
}
|
2016-09-30 02:51:52 +02:00
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
relative_install_path: "hw",
|
2017-03-09 01:11:32 +01:00
|
|
|
defaults: ["hidl_defaults"],
|
2017-02-13 18:59:06 +01:00
|
|
|
proprietary: true,
|
2016-09-30 02:51:52 +02:00
|
|
|
name: "android.hardware.memtrack@1.0-service",
|
2016-10-12 23:49:10 +02:00
|
|
|
init_rc: ["android.hardware.memtrack@1.0-service.rc"],
|
2016-09-30 02:51:52 +02:00
|
|
|
srcs: ["service.cpp"],
|
|
|
|
|
|
|
|
shared_libs: [
|
|
|
|
"liblog",
|
|
|
|
"libbase",
|
|
|
|
"libdl",
|
|
|
|
"libutils",
|
|
|
|
"libhardware",
|
2016-11-16 23:17:58 +01:00
|
|
|
"libhidlbase",
|
|
|
|
"libhidltransport",
|
2016-09-30 02:51:52 +02:00
|
|
|
"android.hardware.memtrack@1.0",
|
|
|
|
],
|
|
|
|
|
|
|
|
}
|