xref: /aosp_15_r20/frameworks/base/ravenwood/tests/resapk_test/Android.bp (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_base_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_base_license"],
8}
9
10android_ravenwood_test {
11    name: "RavenwoodResApkTest",
12
13    resource_apk: "RavenwoodResApkTest-apk",
14
15    libs: [
16        // Normally, tests shouldn't directly access it, but we need to access RavenwoodCommonUtils
17        // in this test.
18        "ravenwood-runtime-common-ravenwood",
19    ],
20    static_libs: [
21        "androidx.annotation_annotation",
22        "androidx.test.ext.junit",
23        "androidx.test.rules",
24    ],
25    srcs: [
26        "test/**/*.java",
27    ],
28    sdk_version: "test_current",
29    auto_gen_config: true,
30}
31