1android_test {
2    name: "CodegenTests",
3    srcs: [
4        "**/*.java",
5    ],
6
7    platform_apis: true,
8    test_suites: ["device-tests"],
9    certificate: "platform",
10
11    optimize: {
12        enabled: false,
13    },
14
15    plugins: [
16        "staledataclass-annotation-processor",
17    ],
18    static_libs: [
19        "junit",
20        "hamcrest",
21        "hamcrest-library",
22        "androidx.test.runner",
23        "androidx.test.rules",
24    ],
25}
26