2017-05-06 02:16:10 +02:00
|
|
|
// Copyright (C) 2015 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
// WARNING: Everything listed here will be built on ALL platforms,
|
|
|
|
// including x86, the emulator, and the SDK. Modules must be uniquely
|
|
|
|
// named (liblights.panda), and must build everywhere, or limit themselves
|
|
|
|
// to only building on ARM if they include assembly. Individual makefiles
|
|
|
|
// are responsible for having their own logic, for fine-grained control.
|
|
|
|
|
2021-02-17 04:02:14 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2019-06-07 07:05:41 +02:00
|
|
|
cc_binary {
|
2023-02-03 19:25:03 +01:00
|
|
|
name: "android.hardware.gatekeeper-service.trusty",
|
2017-07-28 13:09:33 +02:00
|
|
|
vendor: true,
|
2017-05-06 02:16:10 +02:00
|
|
|
relative_install_path: "hw",
|
2023-02-03 19:25:03 +01:00
|
|
|
init_rc: ["android.hardware.gatekeeper-service.trusty.rc"],
|
2017-05-06 02:16:10 +02:00
|
|
|
|
|
|
|
srcs: [
|
2019-06-07 07:05:41 +02:00
|
|
|
"service.cpp",
|
2017-05-06 02:16:10 +02:00
|
|
|
"trusty_gatekeeper_ipc.c",
|
|
|
|
"trusty_gatekeeper.cpp",
|
|
|
|
],
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-fvisibility=hidden",
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
|
2023-02-03 19:25:03 +01:00
|
|
|
static_libs: [
|
|
|
|
"libgflags",
|
|
|
|
],
|
|
|
|
|
2017-05-06 02:16:10 +02:00
|
|
|
shared_libs: [
|
2023-02-03 19:25:03 +01:00
|
|
|
"android.hardware.gatekeeper-V1-ndk",
|
2019-06-07 07:05:41 +02:00
|
|
|
"libbase",
|
2023-02-03 19:25:03 +01:00
|
|
|
"libbinder_ndk",
|
2017-05-06 02:16:10 +02:00
|
|
|
"libgatekeeper",
|
2023-02-03 19:25:03 +01:00
|
|
|
"libhardware",
|
2019-06-07 07:05:41 +02:00
|
|
|
"libutils",
|
2017-05-06 02:16:10 +02:00
|
|
|
"liblog",
|
|
|
|
"libcutils",
|
|
|
|
"libtrusty",
|
|
|
|
],
|
2019-06-07 07:05:41 +02:00
|
|
|
|
2023-02-03 19:25:03 +01:00
|
|
|
vintf_fragments: ["android.hardware.gatekeeper-service.trusty.xml"],
|
2017-05-06 02:16:10 +02:00
|
|
|
}
|