Bob Badour | b224b36 | 2021-02-12 20:13:01 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
| 3 | // A large-scale-change added 'default_applicable_licenses' to import |
| 4 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 8 | } |
| 9 | |
David Zeuthen | 8160315 | 2020-02-11 22:04:24 -0500 | [diff] [blame] | 10 | cc_test { |
| 11 | name: "VtsHalIdentityTargetTest", |
| 12 | defaults: [ |
| 13 | "VtsHalTargetTestDefaults", |
| 14 | "use_libaidlvintf_gtest_helper_static", |
| 15 | ], |
David Zeuthen | 49f2d25 | 2020-10-16 11:27:24 -0400 | [diff] [blame] | 16 | cflags: [ |
| 17 | "-Wno-deprecated-declarations", |
| 18 | ], |
Selene Huang | 92b61d6 | 2020-03-04 02:24:16 -0800 | [diff] [blame] | 19 | srcs: [ |
Selene Huang | 92b61d6 | 2020-03-04 02:24:16 -0800 | [diff] [blame] | 20 | "VtsIWritableIdentityCredentialTests.cpp", |
David Zeuthen | 49f2d25 | 2020-10-16 11:27:24 -0400 | [diff] [blame] | 21 | "Util.cpp", |
Selene Huang | cab019a | 2020-03-11 04:37:48 -0700 | [diff] [blame] | 22 | "VtsAttestationTests.cpp", |
David Zeuthen | ef73951 | 2020-06-03 13:24:52 -0400 | [diff] [blame] | 23 | "UserAuthTests.cpp", |
| 24 | "ReaderAuthTests.cpp", |
David Zeuthen | 49f2d25 | 2020-10-16 11:27:24 -0400 | [diff] [blame] | 25 | "DeleteCredentialTests.cpp", |
| 26 | "ProveOwnershipTests.cpp", |
| 27 | "UpdateCredentialTests.cpp", |
| 28 | "EndToEndTests.cpp", |
| 29 | "TestCredentialTests.cpp", |
| 30 | "AuthenticationKeyTests.cpp", |
Selene Huang | 92b61d6 | 2020-03-04 02:24:16 -0800 | [diff] [blame] | 31 | ], |
David Zeuthen | 8160315 | 2020-02-11 22:04:24 -0500 | [diff] [blame] | 32 | shared_libs: [ |
| 33 | "libbinder", |
David Zeuthen | 27cb4eb | 2020-03-02 10:24:23 -0500 | [diff] [blame] | 34 | "libcrypto", |
David Zeuthen | 8160315 | 2020-02-11 22:04:24 -0500 | [diff] [blame] | 35 | ], |
| 36 | static_libs: [ |
Max Bires | a3c7f4c | 2021-04-09 08:56:40 -0700 | [diff] [blame] | 37 | "libcppbor_external", |
Max Bires | 9704ff6 | 2021-04-07 11:12:01 -0700 | [diff] [blame] | 38 | "libcppcose_rkp", |
David Zeuthen | baa41d7 | 2020-06-12 14:50:21 -0400 | [diff] [blame] | 39 | "libkeymaster_portable", |
David Zeuthen | baa41d7 | 2020-06-12 14:50:21 -0400 | [diff] [blame] | 40 | "libpuresoftkeymasterdevice", |
David Zeuthen | 780f8c8 | 2020-06-18 09:44:51 -0400 | [diff] [blame] | 41 | "android.hardware.keymaster@4.0", |
David Zeuthen | 27cb4eb | 2020-03-02 10:24:23 -0500 | [diff] [blame] | 42 | "android.hardware.identity-support-lib", |
Jeongik Cha | 1674c13 | 2021-01-26 22:34:55 +0900 | [diff] [blame] | 43 | "android.hardware.identity-V3-cpp", |
| 44 | "android.hardware.keymaster-V3-cpp", |
Jiyong Park | 27f77fe | 2021-07-27 12:16:52 +0900 | [diff] [blame] | 45 | "android.hardware.keymaster-V3-ndk", |
David Zeuthen | 34abaae | 2020-10-26 20:26:36 -0400 | [diff] [blame] | 46 | "libkeymaster4support", |
| 47 | "libkeymaster4_1support", |
David Zeuthen | 8160315 | 2020-02-11 22:04:24 -0500 | [diff] [blame] | 48 | ], |
| 49 | test_suites: [ |
| 50 | "general-tests", |
Dan Shi | ba894f8 | 2020-03-26 00:06:39 -0700 | [diff] [blame] | 51 | "vts", |
David Zeuthen | 8160315 | 2020-02-11 22:04:24 -0500 | [diff] [blame] | 52 | ], |
| 53 | } |