summaryrefslogtreecommitdiff
path: root/fsverity_init/Android.bp
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-07-06 16:54:39 +0000
committerEric Biggers <ebiggers@google.com>2023-07-06 18:18:32 +0000
commit5024ce5b46f4b80f9a184e158f25446bef5686f2 (patch)
treebe40371be8debbc2b7a935adfcbd2cbe6cab0b17 /fsverity_init/Android.bp
parent6055d11ab9fb8db148041479b5ad2c359934a6f6 (diff)
downloadsecurity-5024ce5b46f4b80f9a184e158f25446bef5686f2.tar.gz
Revert "fsverity_init: refactor into library + binary"
This reverts commit 3fc82ead6b16445aa6417ff666b1c19d3ad4cbd5 because the only user of libfsverity_init other than fsverity_init has been removed. (Don't add "liblogwrap" back to shared_libs, as it isn't needed.) Bug: 290064770 Test: presubmit Change-Id: Ia5a0e60a16c1f88974ceb4500084b0c3773d3e43
Diffstat (limited to 'fsverity_init/Android.bp')
-rw-r--r--fsverity_init/Android.bp20
1 files changed, 1 insertions, 19 deletions
diff --git a/fsverity_init/Android.bp b/fsverity_init/Android.bp
index 83c59457..07eaf6a2 100644
--- a/fsverity_init/Android.bp
+++ b/fsverity_init/Android.bp
@@ -10,11 +10,10 @@ package {
cc_binary {
name: "fsverity_init",
srcs: [
- "main.cpp",
+ "fsverity_init.cpp",
],
static_libs: [
"libc++fs",
- "libfsverity_init",
"libmini_keyctl_static",
],
shared_libs: [
@@ -24,20 +23,3 @@ cc_binary {
],
cflags: ["-Werror", "-Wall", "-Wextra"],
}
-
-cc_library {
- name: "libfsverity_init",
- srcs: ["fsverity_init.cpp"],
- static_libs: [
- "libc++fs",
- "libmini_keyctl_static",
- ],
- shared_libs: [
- "libbase",
- "libkeyutils",
- "liblog",
- ],
- cflags: ["-Werror", "-Wall", "-Wextra"],
- export_include_dirs: ["include"],
- recovery_available: true,
-}