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

Commit 9933afb1 authored by Colin Cross's avatar Colin Cross Committed by android-build-merger
Browse files

Merge "Make services.core the final priorityboosted jar" am: a0c1780d am: 93de069e

am: ff6fcaec

Change-Id: I6ba33f829ed72ee799b4855021ba1f136ea49bd4
parents 7129b1ef ff6fcaec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ java_library {

    // The convention is to name each service module 'services.$(module_name)'
    static_libs: [
        "services.core.priorityboosted",
        "services.core",
        "services.accessibility",
        "services.appwidget",
        "services.autofill",
+7 −2
Original line number Diff line number Diff line
java_library_static {
    name: "services.core",
    name: "services.core.unboosted",

    aidl: {
        include_dirs: [
@@ -45,7 +45,7 @@ java_library_static {

java_genrule {
    name: "services.core.priorityboosted",
    srcs: [":services.core"],
    srcs: [":services.core.unboosted"],
    tools: ["lockedregioncodeinjection"],
    cmd: "$(location lockedregioncodeinjection) " +
        "  --targets \"Lcom/android/server/am/ActivityManagerService;,Lcom/android/server/wm/WindowHashMap;\" " +
@@ -55,3 +55,8 @@ java_genrule {
        "  -i $(in)",
    out: ["services.core.priorityboosted.jar"],
}

java_library {
    name: "services.core",
    static_libs: ["services.core.priorityboosted"],
}