xref: /aosp_15_r20/external/universal-tween-engine/Android.bp (revision 8902066f0ab086c4576182314a6ddb0fb1f2a3be)
1*8902066fSBob Badour// Copyright (C) 2016 The Android Open Source Project
2*8902066fSBob Badour//
3*8902066fSBob Badour// Licensed under the Apache License, Version 2.0 (the "License");
4*8902066fSBob Badour// you may not use this file except in compliance with the License.
5*8902066fSBob Badour// You may obtain a copy of the License at
6*8902066fSBob Badour//
7*8902066fSBob Badour//      http://www.apache.org/licenses/LICENSE-2.0
8*8902066fSBob Badour//
9*8902066fSBob Badour// Unless required by applicable law or agreed to in writing, software
10*8902066fSBob Badour// distributed under the License is distributed on an "AS IS" BASIS,
11*8902066fSBob Badour// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*8902066fSBob Badour// See the License for the specific language governing permissions and
13*8902066fSBob Badour// limitations under the License.
14*8902066fSBob Badour
15*8902066fSBob Badourpackage {
16*8902066fSBob Badour    default_applicable_licenses: ["external_universal-tween-engine_license"],
17*8902066fSBob Badour}
18*8902066fSBob Badour
19*8902066fSBob Badour// Added automatically by a large-scale-change
20*8902066fSBob Badour// See: http://go/android-license-faq
21*8902066fSBob Badourlicense {
22*8902066fSBob Badour    name: "external_universal-tween-engine_license",
23*8902066fSBob Badour    visibility: [":__subpackages__"],
24*8902066fSBob Badour    license_kinds: [
25*8902066fSBob Badour        "SPDX-license-identifier-Apache-2.0",
26*8902066fSBob Badour    ],
27*8902066fSBob Badour    license_text: [
28*8902066fSBob Badour        "LICENSE",
29*8902066fSBob Badour    ],
30*8902066fSBob Badour}
31*8902066fSBob Badour
32*8902066fSBob Badourjava_library {
33*8902066fSBob Badour    name: "universal-tween-engine",
34*8902066fSBob Badour    srcs: ["java/api/src/**/*.java"],
35*8902066fSBob Badour    sdk_version: "current",
36*8902066fSBob Badour}
37