blob: 8162a501684918fb0d9de3ce138def4ef8962a44 [file] [log] [blame]
Sasha Smundak35a7bae2019-01-14 12:46:01 -08001// Copyright (C) 2014 The Android Open Source Project
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// http://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// Core androidplot library
16
Bob Badour8b3fb352021-02-12 16:30:24 -080017package {
18 default_applicable_licenses: ["external_androidplot_license"],
19}
20
21// Added automatically by a large-scale-change
22// See: http://go/android-license-faq
23license {
24 name: "external_androidplot_license",
25 visibility: [":__subpackages__"],
26 license_kinds: [
27 "SPDX-license-identifier-Apache-2.0",
28 ],
29 license_text: [
30 "NOTICE",
31 ],
32}
33
Sasha Smundak35a7bae2019-01-14 12:46:01 -080034java_library {
35 name: "androidplot",
36 sdk_version: "current",
37 srcs: ["AndroidPlot-Core/src/main/**/*.java"],
38 // b/73499927
39 errorprone: {
40 javacflags: ["-Xep:MissingOverride:OFF"],
41 },
42}
43
44// Demo app
45android_test {
46 name: "AndroidPlotDemos",
47 sdk_version: "current",
48 static_libs: ["androidplot"],
49 resource_dirs: ["Examples/DemoApp/res"],
50 manifest: "Examples/DemoApp/AndroidManifest.xml",
51 srcs: ["Examples/DemoApp/src/**/*.java"],
52
53 // b/73499927
54 errorprone: {
55 javacflags: ["-Xep:MissingOverride:OFF"],
56 },
57
58}