blob: 2169f06629db39ed4f29c9dfe7b5cd8fd567e027 [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
37
38include $(BUILD_PACKAGE)
39
40endif # BOARD_ANT_WIRELESS_DEVICE defined