Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a12eab69 authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge changes from topic "keystorebp"

* changes:
  Convert lockregioncodeinjection to Android.bp
  Export AIDL for keystore Android.bp.
parents 61e3189e a218b561
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ cc_library {

subdirs = [
    "cmds/*",
    "core/jni",
    "core/*",
    "libs/*",
    "media/*",
    "tools/*",

core/java/Android.bp

0 → 100644
+4 −0
Original line number Diff line number Diff line
filegroup {
    name: "IKeyAttestationApplicationIdProvider.aidl",
    srcs: ["android/security/keymaster/IKeyAttestationApplicationIdProvider.aidl"],
}
+12 −0
Original line number Diff line number Diff line
java_library_host {
    name: "lockedregioncodeinjection",
    manifest: "manifest.txt",
    srcs: ["src/**/*.java"],
    static_libs: [
        "asm-6.0",
        "asm-commons-6.0",
        "asm-tree-6.0",
        "asm-analysis-6.0",
        "guava-21.0",
    ],
}
+0 −15
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_JAR_MANIFEST := manifest.txt
LOCAL_MODULE := lockedregioncodeinjection
LOCAL_SRC_FILES := $(call all-java-files-under,src)
LOCAL_STATIC_JAVA_LIBRARIES := \
    asm-6.0 \
    asm-commons-6.0 \
    asm-tree-6.0 \
    asm-analysis-6.0 \
    guava-21.0 \

include $(BUILD_HOST_JAVA_LIBRARY)