Convert sepolicy-analyze to Android.bp

The LOCAL_COMPATIBILITY_SUITES variable has been removed, as the users
are now embedding this binary the same way they do the rest of the
sepolicy tools.

Bug: 122331947
Bug: 130696912
Test: treehugger
Change-Id: Ia83025b18da87204d87684f2c0af025d9cecc824
This commit is contained in:
Dan Willemsen 2020-01-29 13:17:51 -08:00
parent 28dd9a1d53
commit fb12c6b8aa
2 changed files with 15 additions and 15 deletions

View File

@ -0,0 +1,15 @@
cc_binary_host {
name: "sepolicy-analyze",
defaults: ["sepolicy_tools_defaults"],
srcs: [
"sepolicy-analyze.c",
"dups.c",
"neverallow.c",
"perm.c",
"typecmp.c",
"booleans.c",
"attribute.c",
"utils.c",
],
}

View File

@ -1,15 +0,0 @@
LOCAL_PATH:= $(call my-dir)
###################################
include $(CLEAR_VARS)
LOCAL_MODULE := sepolicy-analyze
LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS := -Wall -Werror
LOCAL_SRC_FILES := sepolicy-analyze.c dups.c neverallow.c perm.c typecmp.c booleans.c attribute.c utils.c
LOCAL_STATIC_LIBRARIES := libsepol
LOCAL_CXX_STL := none
LOCAL_COMPATIBILITY_SUITE := ats cts gts vts sts
include $(BUILD_HOST_EXECUTABLE)