blob: 1376405224364f8a0f5c95134a2d702a68a28afd [file] [log] [blame]
Ram Periathiruvadifbc30362019-04-03 00:43:01 -07001// Copyright 2019 Google LLC
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// https://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 build file for building the library in AOSP
16// https://android.googlesource.com/platform/external/ukey2
17
Bob Badour2662d7a2021-02-03 23:22:19 -080018package {
19 default_applicable_licenses: ["external_ukey2_license"],
20}
21
22// Added automatically by a large-scale-change
23// http://go/android-license-faq
24license {
25 name: "external_ukey2_license",
26 visibility: [":__subpackages__"],
27 license_kinds: [
28 "SPDX-license-identifier-Apache-2.0",
29 ],
30 license_text: [
31 "LICENSE",
32 ],
33}
34
Ram Periathiruvadifbc30362019-04-03 00:43:01 -070035java_library {
36 name: "ukey2",
37 proto: {
38 type: "lite",
39 include_dirs: ["external/ukey2/src/main/proto"],
40 },
41 srcs: [
42 "**/*.proto",
Elliott Hughes77f068f2021-02-08 09:50:19 -080043 "src/main/java/**/*.java",
Ram Periathiruvadifbc30362019-04-03 00:43:01 -070044 ],
45 libs: [
46 "guava",
47 ],
48}