summaryrefslogtreecommitdiff
path: root/legacy/Android.bp
blob: 498173ea20188627882e6100beb53cff4047b30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_app {
    name: "MediaProviderLegacy",
    manifest: "AndroidManifest.xml",

    static_libs: [
        "mediaprovider-database",
        "androidx.appcompat_appcompat",
        "androidx.core_core",
    ],

    libs: [
        "app-compat-annotations",
        "framework-mediaprovider.stubs.module_lib",
    ],

    srcs: [
        "src/**/*.aidl",
        "src/**/*.java",
    ],

    platform_apis: true,
    certificate: "media",
    privileged: true,
}