• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    static_libs: [
18        "dx",
19    ],
20    libs: [
21        "junit-host",
22    ],
23    test_options: {
24        unit_test: true,
25    },
26}
27