xref: /aosp_15_r20/external/replicaisland/Android.bp (revision 5eae8ebb3c5756e41e77a1f7201fcf94b0eade1f)
1*5eae8ebbSCole Faust// Copyright (C) 2012 The Android Open Source Project
2*5eae8ebbSCole Faust//
3*5eae8ebbSCole Faust// Licensed under the Apache License, Version 2.0 (the "License");
4*5eae8ebbSCole Faust// you may not use this file except in compliance with the License.
5*5eae8ebbSCole Faust// You may obtain a copy of the License at
6*5eae8ebbSCole Faust//
7*5eae8ebbSCole Faust//      http://www.apache.org/licenses/LICENSE-2.0
8*5eae8ebbSCole Faust//
9*5eae8ebbSCole Faust// Unless required by applicable law or agreed to in writing, software
10*5eae8ebbSCole Faust// distributed under the License is distributed on an "AS IS" BASIS,
11*5eae8ebbSCole Faust// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*5eae8ebbSCole Faust// See the License for the specific language governing permissions and
13*5eae8ebbSCole Faust// limitations under the License.
14*5eae8ebbSCole Faust
15*5eae8ebbSCole Faustpackage {
16*5eae8ebbSCole Faust    default_applicable_licenses: ["external_replicaisland_license"],
17*5eae8ebbSCole Faust}
18*5eae8ebbSCole Faust
19*5eae8ebbSCole Faust// Added automatically by a large-scale-change
20*5eae8ebbSCole Faust//
21*5eae8ebbSCole Faust// large-scale-change included anything that looked like it might be a license
22*5eae8ebbSCole Faust// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
23*5eae8ebbSCole Faust//
24*5eae8ebbSCole Faust// Please consider removing redundant or irrelevant files from 'license_text:'.
25*5eae8ebbSCole Faust// See: http://go/android-license-faq
26*5eae8ebbSCole Faustlicense {
27*5eae8ebbSCole Faust    name: "external_replicaisland_license",
28*5eae8ebbSCole Faust    visibility: [":__subpackages__"],
29*5eae8ebbSCole Faust    license_kinds: [
30*5eae8ebbSCole Faust        "SPDX-license-identifier-Apache-2.0",
31*5eae8ebbSCole Faust    ],
32*5eae8ebbSCole Faust    license_text: [
33*5eae8ebbSCole Faust        "COPYING",
34*5eae8ebbSCole Faust        "NOTICE",
35*5eae8ebbSCole Faust    ],
36*5eae8ebbSCole Faust}
37*5eae8ebbSCole Faust
38*5eae8ebbSCole Faustandroid_test_helper_app {
39*5eae8ebbSCole Faust    name: "com.replica.replicaisland",
40*5eae8ebbSCole Faust    // and because it is in data, do not strip classes.dex
41*5eae8ebbSCole Faust    dex_preopt: {
42*5eae8ebbSCole Faust        enabled: false,
43*5eae8ebbSCole Faust    },
44*5eae8ebbSCole Faust    srcs: ["src/**/*.java"],
45*5eae8ebbSCole Faust    static_libs: ["junit"],
46*5eae8ebbSCole Faust    // Tag this module as a cts test artifact
47*5eae8ebbSCole Faust    test_suites: [
48*5eae8ebbSCole Faust        "cts",
49*5eae8ebbSCole Faust        "vts",
50*5eae8ebbSCole Faust        "vts10",
51*5eae8ebbSCole Faust    ],
52*5eae8ebbSCole Faust    sdk_version: "current",
53*5eae8ebbSCole Faust    errorprone: {
54*5eae8ebbSCole Faust        enabled: false,
55*5eae8ebbSCole Faust    },
56*5eae8ebbSCole Faust}
57