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
10java_binary_host {
11    name: "lockedregioncodeinjection",
12    manifest: "manifest.txt",
13    srcs: ["src/**/*.java"],
14    static_libs: [
15        "guava",
16        "ow2-asm",
17        "ow2-asm-analysis",
18        "ow2-asm-commons",
19        "ow2-asm-tree",
20    ],
21}
22
23java_library_host {
24   name: "lockedregioncodeinjection_input",
25   manifest: "test/manifest.txt",
26   srcs: ["test/*/*.java"],
27   static_libs: [
28        "guava",
29        "ow2-asm",
30        "ow2-asm-analysis",
31        "ow2-asm-commons",
32        "ow2-asm-tree",
33        "hamcrest-library",
34        "hamcrest",
35        "platform-test-annotations",
36        "junit",
37    ],
38}
39