08fec49a3b
Bug: None Test: run with very low timeout and verify it logs Change-Id: I2818683f65c2191518373609c6171c056de55a9a
181 lines
4.5 KiB
Text
181 lines
4.5 KiB
Text
//
|
|
// 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.
|
|
//
|
|
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.keymaster@3.0-service.trusty",
|
|
defaults: ["hidl_defaults"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
init_rc: ["3.0/android.hardware.keymaster@3.0-service.trusty.rc"],
|
|
srcs: [
|
|
"3.0/service.cpp",
|
|
"3.0/TrustyKeymaster3Device.cpp",
|
|
"ipc/trusty_keymaster_ipc.cpp",
|
|
"TrustyKeymaster.cpp",
|
|
],
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libdl",
|
|
"libbase",
|
|
"libutils",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libtrusty",
|
|
"libkeymaster_messages",
|
|
"libkeymaster3device",
|
|
"android.hardware.keymaster@3.0"
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.keymaster@4.0-service.trusty",
|
|
defaults: ["hidl_defaults"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
init_rc: ["4.0/android.hardware.keymaster@4.0-service.trusty.rc"],
|
|
srcs: [
|
|
"4.0/service.cpp",
|
|
"4.0/TrustyKeymaster4Device.cpp",
|
|
"ipc/trusty_keymaster_ipc.cpp",
|
|
"TrustyKeymaster.cpp",
|
|
],
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libdl",
|
|
"libbase",
|
|
"libutils",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libtrusty",
|
|
"libkeymaster_messages",
|
|
"libkeymaster4",
|
|
"android.hardware.keymaster@4.0"
|
|
],
|
|
|
|
vintf_fragments: ["4.0/android.hardware.keymaster@4.0-service.trusty.xml"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.security.keymint-service.trusty",
|
|
relative_install_path: "hw",
|
|
init_rc: ["keymint/android.hardware.security.keymint-service.trusty.rc"],
|
|
vintf_fragments: [
|
|
"keymint/android.hardware.security.keymint-service.trusty.xml",
|
|
],
|
|
vendor: true,
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
],
|
|
local_include_dirs: [
|
|
"include",
|
|
],
|
|
srcs: [
|
|
"TrustyKeymaster.cpp",
|
|
"ipc/trusty_keymaster_ipc.cpp",
|
|
"keymint/TrustyKeyMintDevice.cpp",
|
|
"keymint/TrustyKeyMintOperation.cpp",
|
|
"keymint/TrustyRemotelyProvisionedComponentDevice.cpp",
|
|
"keymint/TrustySecureClock.cpp",
|
|
"keymint/TrustySharedSecret.cpp",
|
|
"keymint/service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.security.keymint-V1-ndk",
|
|
"android.hardware.security.secureclock-V1-ndk",
|
|
"android.hardware.security.sharedsecret-V1-ndk",
|
|
"lib_android_keymaster_keymint_utils",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libhardware",
|
|
"libkeymaster_messages",
|
|
"libkeymint",
|
|
"liblog",
|
|
"libtrusty",
|
|
"libutils",
|
|
],
|
|
required: [
|
|
"android.hardware.hardware_keystore.xml",
|
|
"RemoteProvisioner",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "keymaster_soft_attestation_keys.xml",
|
|
vendor: true,
|
|
src: "set_attestation_key/keymaster_soft_attestation_keys.xml",
|
|
}
|
|
|
|
cc_library {
|
|
name: "libtrusty_ipc",
|
|
vendor: true,
|
|
srcs: ["ipc/trusty_keymaster_ipc.cpp"],
|
|
local_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"libc",
|
|
"libcrypto",
|
|
"liblog",
|
|
"libtrusty",
|
|
"libhardware",
|
|
"libkeymaster_messages",
|
|
"libutils",
|
|
"libxml2",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "trusty_keymaster_set_attestation_key",
|
|
vendor: true,
|
|
|
|
srcs: [
|
|
"set_attestation_key/set_attestation_key.cpp",
|
|
"ipc/trusty_keymaster_ipc.cpp",
|
|
],
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"libc",
|
|
"libcrypto",
|
|
"liblog",
|
|
"libtrusty",
|
|
"libhardware",
|
|
"libkeymaster_messages",
|
|
"libutils",
|
|
"libxml2",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
}
|