blob: 6e27797e7a5ada54e26ca0c12856936bb68b373e [file] [log] [blame]
Jeremy Friesenef9a47b2019-11-27 15:40:54 -07001//
2// ANT Stack
3//
4// Copyright 2019 Garmin Canada
5//
6// Licensed under the Apache License, Version 2.0 (the "License");
7// you may not use this file except in compliance with the License.
8// You may obtain a copy of the License at
9//
10// http://www.apache.org/licenses/LICENSE-2.0
11//
12// Unless required by applicable law or agreed to in writing, software
13// distributed under the License is distributed on an "AS IS" BASIS,
14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15// See the License for the specific language governing permissions and
16// limitations under the License.
17//
18
19android_app {
Jeremy Friesenf09dcab2019-12-05 18:13:24 -070020 name: "AntHalService-Soong",
Jeremy Friesenef9a47b2019-11-27 15:40:54 -070021
22 //
23 // ANT java system service
24 //
25
26 srcs: [
27 "src/**/*.java",
28 "src/com/dsi/ant/server/IAntHal.aidl",
29 "src/com/dsi/ant/server/IAntHalCallback.aidl",
30 ],
31
32 static_libs: ["com.dsi.ant-V1.0-java"],
33
34 optimize: {
35 // Remove all verbose and debug logging when building release
Mahesh Sharmae519f212020-01-14 11:24:12 -070036 proguard_flags_files: ["proguard.flags", "proguard.nolog.flags"],
Jeremy Friesenef9a47b2019-11-27 15:40:54 -070037 },
38
39 certificate: "platform",
40
41 platform_apis: true,
Mahesh Sharmae519f212020-01-14 11:24:12 -070042 system_ext_specific: true,
Jeremy Friesenef9a47b2019-11-27 15:40:54 -070043}