• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package {
6    // See: http://go/android-license-faq
7    // A large-scale-change added 'default_applicable_licenses' to import
8    // all of the 'license_kinds' from "external_skqp_license"
9    // to get the below license kinds:
10    //   SPDX-license-identifier-Apache-2.0
11    //   SPDX-license-identifier-BSD
12    //   SPDX-license-identifier-CC0-1.0
13    //   SPDX-license-identifier-MIT
14    //   legacy_unencumbered
15    default_applicable_licenses: ["external_skqp_license"],
16}
17
18android_test {
19    name: "CtsSkQPTestCases",
20    defaults: ["cts_defaults"],
21
22    libs: ["android.test.runner.stubs"],
23    jni_libs: ["libskqp_app"],
24    compile_multilib: "both",
25
26    static_libs: [
27        "android-support-design",
28        "ctstestrunner-axt",
29    ],
30    srcs: ["java/**/*.java"],
31    sdk_version: "test_current",
32}
33