ee37ee9252
Bug: 149908474 Test: atest android.security.identity.cts.AttestationTest Test: atest VtsHalIdentityCredentialTargetTest Test: atest android.hardware.identity-support-lib-test Merged-In: I18c5d05d806d4157c9dce42a398cc89421e26907 Change-Id: Ifaffef3606a6398613e33982ff5db81ade1af0b2
105 lines
2.3 KiB
Text
105 lines
2.3 KiB
Text
// Copyright (C) 2019 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 {
|
|
name: "android.hardware.identity-support-lib",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"src/IdentityCredentialSupport.cpp",
|
|
],
|
|
export_include_dirs: [
|
|
"include",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.keymaster@4.0",
|
|
"libcrypto",
|
|
"libbase",
|
|
"libhidlbase",
|
|
"libhardware",
|
|
"libkeymaster_portable",
|
|
"libsoft_attestation_cert",
|
|
"libpuresoftkeymasterdevice",
|
|
],
|
|
static_libs: [
|
|
"libcppbor",
|
|
],
|
|
}
|
|
|
|
cc_test {
|
|
name: "android.hardware.identity-support-lib-test",
|
|
srcs: [
|
|
"tests/IdentityCredentialSupportTest.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.identity-support-lib",
|
|
"libcrypto",
|
|
"libbase",
|
|
"libhidlbase",
|
|
"libhardware",
|
|
],
|
|
static_libs: [
|
|
"libcppbor",
|
|
"libgmock",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|
|
|
|
// --
|
|
|
|
cc_library {
|
|
name: "libcppbor",
|
|
vendor_available: true,
|
|
host_supported: true,
|
|
srcs: [
|
|
"src/cppbor.cpp",
|
|
"src/cppbor_parse.cpp",
|
|
],
|
|
export_include_dirs: [
|
|
"include/cppbor",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
],
|
|
}
|
|
|
|
cc_test {
|
|
name: "cppbor_test",
|
|
srcs: [
|
|
"tests/cppbor_test.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libcppbor",
|
|
"libbase",
|
|
],
|
|
static_libs: [
|
|
"libgmock",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|
|
|
|
cc_test_host {
|
|
name: "cppbor_host_test",
|
|
srcs: [
|
|
"tests/cppbor_test.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libcppbor",
|
|
"libbase",
|
|
],
|
|
static_libs: [
|
|
"libgmock",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|