Files
hardware_interfaces/confirmationui/aidl/vts/functional/Android.bp
David Drysdale d84ca74a66 Link static version of KeyMint lib in VTS tests
Also add transitive `secureclock` dep.

Bug: 270492370
Bug: 270484471
Test: VtsHalConfirmationUITargetTest
Test: VtsHalGatekeeperTargetTest
Change-Id: I5fd7cba8af035fde6d24c076c4e1ed90abb15645
2023-02-27 14:26:24 +00:00

47 lines
1.3 KiB
Plaintext

//
// Copyright (C) 2022 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 {
// See: http://go/android-license-faq
default_applicable_licenses: ["hardware_interfaces_license"],
}
cc_test {
name: "VtsHalConfirmationUITargetTest",
defaults: [
"VtsHalTargetTestDefaults",
"keymint_use_latest_hal_aidl_ndk_static",
"use_libaidlvintf_gtest_helper_static",
],
srcs: [
"VtsHalConfirmationUITargetTest.cpp",
],
static_libs: [
"android.hardware.confirmationui-V1-ndk",
"android.hardware.confirmationui-support-lib",
"android.hardware.security.secureclock-V1-ndk",
"libcn-cbor",
],
shared_libs: [
"libbinder_ndk",
"libcrypto",
],
test_suites: [
"general-tests",
"vts",
],
}