diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-05 15:10:31 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-06 12:15:24 +0200 |
commit | af08db027b6214306683c8cbf9980798c5f85977 (patch) | |
tree | 97211afd7b11bace6ce508984d110ddf10dc41f2 /verity_tool/Android.bp | |
parent | dc5051ce0272ddb572aaa72ecd0e1d00ad9b0f83 (diff) | |
download | external_wget-replicant-11.tar.gz external_wget-replicant-11.tar.bz2 external_wget-replicant-11.zip |
This way:
- We can rebase more easily if needed
- We don't have to bring in the other part of vendor/lineage that
is potentially incompatible with what we have
wget was also moved in the top directory along the way.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'verity_tool/Android.bp')
-rw-r--r-- | verity_tool/Android.bp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/verity_tool/Android.bp b/verity_tool/Android.bp deleted file mode 100644 index 0a2ecd88..00000000 --- a/verity_tool/Android.bp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2018 The LineageOS Project - -cc_library { - name: "libveritytool", - srcs: ["verity_tool.cpp"], - local_include_dirs: ["include"], - export_include_dirs: ["include"], - cflags: ["-Werror"], - shared_libs: [ - "libbase", - "libcrypto", - "libcrypto_utils", - "libfec", - ], - static_libs: [ - "libfs_mgr", - ], - whole_static_libs: [ - "libavb_user", - ], -} - -cc_binary { - name: "veritytool", - srcs: ["main.cpp"], - shared_libs: ["libveritytool"], - cflags: ["-Werror"], -} |