1android_app {
2    name: "BlockedNumberProvider",
3
4    // Only compile source java files in this apk.
5    srcs: ["src/**/*.java"],
6    static_libs: [
7        "android-common",
8        "guava",
9    ],
10    jacoco: {
11        include_filter: ["com.android.providers.blockednumber.*"],
12    },
13    platform_apis: true,
14    certificate: "shared",
15    privileged: true,
16
17}
18