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

Commit 93de069e 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

Change-Id: I4969cd15085ab460a112547e63362bf8c2bc1602
parents afa15b08 a0c1780d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -14,7 +14,7 @@ java_library {


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


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


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

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