xref: /aosp_15_r20/external/mobly-snippet-lib/Android.bp (revision ae5b1ec8a57d9cd6259556f14d3f2bb4f9fb3a85)
1*ae5b1ec8SZiwei Zhang// Copyright (C) 2022 The Android Open Source Project
2*ae5b1ec8SZiwei Zhang//
3*ae5b1ec8SZiwei Zhang// Licensed under the Apache License, Version 2.0 (the "License");
4*ae5b1ec8SZiwei Zhang// you may not use this file except in compliance with the License.
5*ae5b1ec8SZiwei Zhang// You may obtain a copy of the License at
6*ae5b1ec8SZiwei Zhang//
7*ae5b1ec8SZiwei Zhang// http://www.apache.org/licenses/LICENSE-2.0
8*ae5b1ec8SZiwei Zhang//
9*ae5b1ec8SZiwei Zhang// Unless required by applicable law or agreed to in writing, software
10*ae5b1ec8SZiwei Zhang// distributed under the License is distributed on an "AS IS" BASIS,
11*ae5b1ec8SZiwei Zhang// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*ae5b1ec8SZiwei Zhang// See the License for the specific language governing permissions and
13*ae5b1ec8SZiwei Zhang// limitations under the License.
14*ae5b1ec8SZiwei Zhang
15*ae5b1ec8SZiwei Zhangpackage {
16*ae5b1ec8SZiwei Zhang    default_applicable_licenses: ["Android-Apache-2.0"],
17*ae5b1ec8SZiwei Zhang}
18*ae5b1ec8SZiwei Zhang
19*ae5b1ec8SZiwei Zhangandroid_library {
20*ae5b1ec8SZiwei Zhang    name: "mobly-snippet-lib",
21*ae5b1ec8SZiwei Zhang    static_libs: [
22*ae5b1ec8SZiwei Zhang        "androidx.test.runner",
23*ae5b1ec8SZiwei Zhang    ],
24*ae5b1ec8SZiwei Zhang    srcs: [
25*ae5b1ec8SZiwei Zhang        "third_party/sl4a/src/main/**/*.java",
26*ae5b1ec8SZiwei Zhang    ],
27*ae5b1ec8SZiwei Zhang    manifest: "third_party/sl4a/src/main/AndroidManifest.xml",
28*ae5b1ec8SZiwei Zhang    sdk_version: "current",
29*ae5b1ec8SZiwei Zhang    min_sdk_version: "30",
30*ae5b1ec8SZiwei Zhang}
31