xref: /aosp_15_r20/external/mockftpserver/Android.bp (revision 876b9d758e92bb9ac60d09763a5f23a1c6322c5f)
1*876b9d75SXin Li//
2*876b9d75SXin Li// Copyright (C) 2017 The Android Open Source Project
3*876b9d75SXin Li//
4*876b9d75SXin Li// Licensed under the Apache License, Version 2.0 (the "License");
5*876b9d75SXin Li// you may not use this file except in compliance with the License.
6*876b9d75SXin Li// You may obtain a copy of the License at
7*876b9d75SXin Li//
8*876b9d75SXin Li//      http://www.apache.org/licenses/LICENSE-2.0
9*876b9d75SXin Li//
10*876b9d75SXin Li// Unless required by applicable law or agreed to in writing, software
11*876b9d75SXin Li// distributed under the License is distributed on an "AS IS" BASIS,
12*876b9d75SXin Li// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*876b9d75SXin Li// See the License for the specific language governing permissions and
14*876b9d75SXin Li// limitations under the License.
15*876b9d75SXin Li//
16*876b9d75SXin Li
17*876b9d75SXin Lipackage {
18*876b9d75SXin Li    default_applicable_licenses: ["external_mockftpserver_license"],
19*876b9d75SXin Li}
20*876b9d75SXin Li
21*876b9d75SXin Li// Added automatically by a large-scale-change
22*876b9d75SXin Li// See: http://go/android-license-faq
23*876b9d75SXin Lilicense {
24*876b9d75SXin Li    name: "external_mockftpserver_license",
25*876b9d75SXin Li    visibility: [":__subpackages__"],
26*876b9d75SXin Li    license_kinds: [
27*876b9d75SXin Li        "SPDX-license-identifier-Apache-2.0",
28*876b9d75SXin Li    ],
29*876b9d75SXin Li    license_text: [
30*876b9d75SXin Li        "NOTICE",
31*876b9d75SXin Li    ],
32*876b9d75SXin Li}
33*876b9d75SXin Li
34*876b9d75SXin Lijava_library {
35*876b9d75SXin Li    name: "mockftpserver",
36*876b9d75SXin Li    hostdex: true,
37*876b9d75SXin Li    srcs: ["MockFtpServer/src/main/java/**/*.java"],
38*876b9d75SXin Li    java_resource_dirs: ["MockFtpServer/src/main/resources"],
39*876b9d75SXin Li
40*876b9d75SXin Li    libs: ["slf4j-jdk14"],
41*876b9d75SXin Li
42*876b9d75SXin Li    sdk_version: "core_current",
43*876b9d75SXin Li}
44