Home | History | Annotate | Download | only in DeviceAdmin
      1 // Copyright (C) 2016 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 
     15 android_test_helper_app {
     16     name: "CtsDeviceAdminApp23",
     17     defaults: ["cts_defaults"],
     18     srcs: ["src/**/*.java"],
     19     resource_dirs: ["res"],
     20     static_libs: [
     21         "ctstestrunner-axt",
     22         "compatibility-device-util-axt",
     23     ],
     24     libs: [
     25         "android.test.runner.stubs",
     26         "android.test.base.stubs",
     27     ],
     28     sdk_version: "test_current",
     29     min_sdk_version: "23",
     30     // tag this module as a cts test artifact
     31     test_suites: [
     32         "cts",
     33         "vts",
     34         "general-tests",
     35     ],
     36     manifest: "api23/AndroidManifest.xml",
     37 }
     38 
     39 android_test_helper_app {
     40     name: "CtsDeviceAdminApp24",
     41     defaults: ["cts_defaults"],
     42     srcs: ["src/**/*.java"],
     43     resource_dirs: ["res"],
     44     static_libs: [
     45         "ctstestrunner-axt",
     46         "compatibility-device-util-axt",
     47     ],
     48     libs: [
     49         "android.test.runner.stubs",
     50         "android.test.base.stubs",
     51     ],
     52     sdk_version: "test_current",
     53     // TODO: should it be "24":
     54     min_sdk_version: "23",
     55     // tag this module as a cts test artifact
     56     test_suites: [
     57         "arcts",
     58         "cts",
     59         "vts",
     60         "general-tests",
     61     ],
     62     manifest: "api24/AndroidManifest.xml",
     63 }
     64 
     65 android_test_helper_app {
     66     name: "CtsDeviceAdminApp29",
     67     defaults: ["cts_defaults"],
     68     srcs: ["src/**/*.java"],
     69     resource_dirs: ["res"],
     70     static_libs: [
     71         "ctstestrunner-axt",
     72         "compatibility-device-util-axt",
     73     ],
     74     libs: [
     75         "android.test.runner.stubs",
     76         "android.test.base.stubs",
     77     ],
     78     sdk_version: "test_current",
     79     // tag this module as a cts test artifact
     80     test_suites: [
     81         "arcts",
     82         "cts",
     83         "vts",
     84         "general-tests",
     85     ],
     86     manifest: "api29/AndroidManifest.xml",
     87 }
     88