1// Copyright 2011 The Android Open Source Project
2
3package {
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "dalvik_dx_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-Apache-2.0
9    default_applicable_licenses: ["dalvik_dx_license"],
10}
11
12java_test_host {
13    name: "dx-tests",
14    srcs: ["**/*.java"],
15    // Avoid anything depending on this target
16    visibility: ["//visibility:private"],
17    java_version: "1.9",
18    static_libs: [
19        "dx",
20    ],
21    libs: [
22        "junit-host",
23    ],
24    test_options: {
25        unit_test: true,
26    },
27}
28