• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-res",
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        ":RavenwoodResApkTest-res{.aapt.srcjar}",
28    ],
29    sdk_version: "test_current",
30    auto_gen_config: true,
31}
32