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

Commit fdd0e761 authored by Paul Duffin's avatar Paul Duffin Committed by Automerger Merge Worker
Browse files

Add framework-module-defaults for java_sdk_library am: bee7404d

Change-Id: I2df67be4741d7720dc62390f5d68ce7aec670652
parents 204307bb bee7404d
Loading
Loading
Loading
Loading
+54 −0
Original line number Original line Diff line number Diff line
@@ -63,6 +63,60 @@ mainline_service_stubs_args =
    "--hide-annotation android.annotation.Hide " +
    "--hide-annotation android.annotation.Hide " +
    "--hide InternalClasses " // com.android.* classes are okay in this interface
    "--hide InternalClasses " // com.android.* classes are okay in this interface


// Defaults for mainline module provided java_sdk_library instances.
java_defaults {
    name: "framework-module-defaults",

    // Additional annotations used for compiling both the implementation and the
    // stubs libraries.
    libs: ["framework-annotations-lib"],

    // Enable api lint. This will eventually become the default for java_sdk_library
    // but it cannot yet be turned on because some usages have not been cleaned up.
    // TODO(b/156126315) - Remove when no longer needed.
    api_lint: {
        enabled: true,
    },

    // The API scope specific properties.
    public: {
        enabled: true,
        sdk_version: "module_current",
    },
    system: {
        enabled: true,
        sdk_version: "module_current",
    },
    module_lib: {
        enabled: true,
        sdk_version: "module_current",
    },

    // The stub libraries must be visible to frameworks/base so they can be combined
    // into API specific libraries.
    stubs_library_visibility: [
        "//frameworks/base", // Framework
    ],

    // Set the visibility of the modules creating the stubs source.
    stubs_source_visibility: [
        // Ignore any visibility rules specified on the java_sdk_library when
        // setting the visibility of the stubs source modules.
        "//visibility:override",

        // Currently, the stub source is not required for anything other than building
        // the stubs library so is private to avoid misuse.
        "//visibility:private",
    ],

    // Collates API usages from each module for further analysis.
    plugins: ["java_api_finder"],

    // Mainline modules should only rely on 'module_lib' APIs provided by other modules
    // and the non updatable parts of the platform.
    sdk_version: "module_current",
}

stubs_defaults {
stubs_defaults {
    name: "framework-module-stubs-defaults-publicapi",
    name: "framework-module-stubs-defaults-publicapi",
    args: mainline_framework_stubs_args,
    args: mainline_framework_stubs_args,