blob: e86b5c148a7b6118a5c1af104878793bfabc7694 [file] [log] [blame]
Rohan Martin3d194502012-11-01 15:19:04 -06001#
2# ANT Stack
3#
4# Copyright 2011 Dynastream Innovations
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
19ifneq ($(BOARD_ANT_WIRELESS_DEVICE),)
20LOCAL_PATH := $(call my-dir)
21include $(CLEAR_VARS)
22
23#
24# ANT java system service
25#
26
27LOCAL_SRC_FILES := \
28 $(call all-java-files-under, src) \
29 src/com/dsi/ant/server/IAntHal.aidl \
30 src/com/dsi/ant/server/IAntHalCallback.aidl
31
32LOCAL_REQUIRED_MODULES := libantradio
33LOCAL_PROGUARD_FLAG_FILES := proguard.flags
34LOCAL_CERTIFICATE := platform
35LOCAL_MODULE_TAGS := optional
36LOCAL_PACKAGE_NAME := AntHalService
Vinay Vermae23ee252018-05-24 19:40:51 +053037ifeq ($(filter 8% O% o%,$(TARGET_PLATFORM_VERSION)),)
38LOCAL_SDK_VERSION := system_current
39endif
Bootsma, Jamesdb1d34c2020-01-16 14:23:05 -070040LOCAL_SYSTEM_EXT_MODULE := true
Rohan Martin3d194502012-11-01 15:19:04 -060041
42include $(BUILD_PACKAGE)
43
44endif # BOARD_ANT_WIRELESS_DEVICE defined