aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorPrashant Patil <patilprashant@google.com>2023-01-23 14:03:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-01-23 14:03:25 +0000
commit58ff10ea490a3c58af1269872c3c15efdf2a4db6 (patch)
tree04f0446811140b8ac7c3cdaf8fb38946f0d61c45 /Android.bp
parentf419652265efe93574702033dbf41681e5129aff (diff)
parentb7f16699271ff203d8a08a21227cd5665555cf31 (diff)
downloadandroid-key-attestation-58ff10ea490a3c58af1269872c3c15efdf2a4db6.tar.gz
Keystore:Build file for android-key-attestation am: 57d4260173 am: ff45cd50d1 am: b7f1669927
Original change: https://android-review.googlesource.com/c/platform/external/android-key-attestation/+/2391572 Change-Id: I26b9fbcf66f96599d6b20ddbb913ed6ccdf1c12f Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp34
1 files changed, 34 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..c8802a6
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,34 @@
+//
+// Copyright (C) 2023 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_visibility: ["//visibility:private"],
+}
+
+java_library_static {
+ name: "android-key-attestation",
+ visibility: [
+ "//cts/tests/tests/keystore",
+ ],
+ srcs: ["server/src/main/java/**/*.java"],
+ exclude_srcs: ["server/src/main/java/**/KeyAttestationExample.java"],
+ sdk_version: "current",
+ libs: [
+ "bouncycastle-unbundled",
+ "wycheproof-gson",
+ ],
+}
+