Home | History | Annotate | Download | only in DeviceAdminService
      1 // Copyright (C) 2017 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: "CtsDeviceAdminService1",
     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: ["android.test.base.stubs"],
     25     sdk_version: "test_current",
     26     // tag this module as a cts test artifact
     27     test_suites: [
     28         "cts",
     29         "vts",
     30         "general-tests",
     31     ],
     32     manifest: "package1/AndroidManifest.xml",
     33 }
     34 
     35 android_test_helper_app {
     36     name: "CtsDeviceAdminService2",
     37     defaults: ["cts_defaults"],
     38     srcs: ["src/**/*.java"],
     39     resource_dirs: ["res"],
     40     static_libs: [
     41         "ctstestrunner-axt",
     42         "compatibility-device-util-axt",
     43     ],
     44     libs: ["android.test.base.stubs"],
     45     sdk_version: "test_current",
     46     // tag this module as a cts test artifact
     47     test_suites: [
     48         "cts",
     49         "vts",
     50         "general-tests",
     51     ],
     52     manifest: "package2/AndroidManifest.xml",
     53 }
     54 
     55 android_test_helper_app {
     56     name: "CtsDeviceAdminService3",
     57     defaults: ["cts_defaults"],
     58     srcs: ["src/**/*.java"],
     59     resource_dirs: ["res"],
     60     static_libs: [
     61         "ctstestrunner-axt",
     62         "compatibility-device-util-axt",
     63     ],
     64     libs: ["android.test.base.stubs"],
     65     sdk_version: "test_current",
     66     // tag this module as a cts test artifact
     67     test_suites: [
     68         "cts",
     69         "vts",
     70         "general-tests",
     71     ],
     72     manifest: "package3/AndroidManifest.xml",
     73 }
     74 
     75 android_test_helper_app {
     76     name: "CtsDeviceAdminService4",
     77     defaults: ["cts_defaults"],
     78     srcs: ["src/**/*.java"],
     79     resource_dirs: ["res"],
     80     static_libs: [
     81         "ctstestrunner-axt",
     82         "compatibility-device-util-axt",
     83     ],
     84     libs: ["android.test.base.stubs"],
     85     sdk_version: "test_current",
     86     // tag this module as a cts test artifact
     87     test_suites: [
     88         "cts",
     89         "vts",
     90         "general-tests",
     91     ],
     92     manifest: "package4/AndroidManifest.xml",
     93 }
     94 
     95 android_test_helper_app {
     96     name: "CtsDeviceAdminServiceB",
     97     defaults: ["cts_defaults"],
     98     srcs: ["src/**/*.java"],
     99     resource_dirs: ["res"],
    100     static_libs: [
    101         "ctstestrunner-axt",
    102         "compatibility-device-util-axt",
    103     ],
    104     libs: ["android.test.base.stubs"],
    105     sdk_version: "test_current",
    106     // tag this module as a cts test artifact
    107     test_suites: [
    108         "cts",
    109         "vts",
    110         "general-tests",
    111     ],
    112     manifest: "packageb/AndroidManifest.xml",
    113 }
    114