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

Commit 06799864 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Define stubs_defaults for the new API surfaces"

parents 53748696 2afff6cc
Loading
Loading
Loading
Loading
+31 −1
Original line number Diff line number Diff line
@@ -37,6 +37,36 @@ stubs_defaults {

stubs_defaults {
    name: "framework-module-stubs-defaults-systemapi",
    args: mainline_stubs_args + " --show-annotation android.annotation.SystemApi\\(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS,process=android.annotation.SystemApi.Process.ALL\\) ",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}

stubs_defaults {
    name: "framework-module-stubs-defaults-module_apps_api",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}

stubs_defaults {
    name: "framework-module-stubs-defaults-module_libs_api",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_LIBRARIES," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}