blob: df0ccfc54d64835ada817b8acafb256009e32046 [file] [log] [blame]
Anton Hanssonf3cf62b2020-03-19 15:30:40 +00001// Copyright (C) 2020 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.
Muhammad Qureshi8ea733e2020-02-07 09:30:28 -080014
15filegroup {
16 name: "service-statsd-sources",
17 srcs: [
18 "java/**/*.java",
19 ],
20}
21
Tej Singhc53ac0a2019-09-20 16:29:13 -070022java_library {
Anton Hansson97369f82019-11-22 11:40:08 +000023 name: "service-statsd",
Anton Hansson05115582020-03-19 15:29:43 +000024 srcs: [ ":service-statsd-sources" ],
25 sdk_version: "system_server_current",
Tej Singhc53ac0a2019-09-20 16:29:13 -070026 libs: [
Muhammad Qureshi8ea733e2020-02-07 09:30:28 -080027 "framework-annotations-lib",
Muhammad Qureshifc3e3052020-02-09 13:27:28 -080028 "framework-statsd",
Tej Singhc53ac0a2019-09-20 16:29:13 -070029 ],
Howard Ro30ab9fe2020-02-26 23:34:17 -080030 plugins: ["java_api_finder"],
Anton Hansson5e0d3942020-01-10 17:38:35 +000031 apex_available: [
32 "com.android.os.statsd",
33 "test_com.android.os.statsd",
34 ],
Anton Hansson97369f82019-11-22 11:40:08 +000035}