• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2021 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    // See: http://go/android-license-faq
17    default_applicable_licenses: [
18        "Android-Apache-2.0",
19    ],
20}
21
22android_test {
23    name: "CtsAmbientContextServiceTestCases",
24    defaults: ["cts_defaults"],
25    dex_preopt: {
26        enabled: false,
27    },
28    optimize: {
29        enabled: false,
30    },
31    static_libs: [
32        "androidx.test.rules",
33        "androidx.test.ext.junit",
34        "compatibility-device-util-axt",
35        "platform-test-annotations",
36        "compatibility-device-util-axt",
37        "cts-wm-util",
38        "android-common",
39        "android-support-v4",
40    ],
41    libs: [
42        "android.test.base",
43        "android.test.runner",
44    ],
45    srcs: ["src/**/*.java"],
46    // Tag this module as a cts test artifact
47    test_suites: [
48        "cts",
49        "general-tests",
50    ],
51    sdk_version: "test_current",
52}
53