| Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 1 | # | 
|  | 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 |  | 
|  | 19 | ifneq ($(BOARD_ANT_WIRELESS_DEVICE),) | 
|  | 20 | LOCAL_PATH := $(call my-dir) | 
|  | 21 | include $(CLEAR_VARS) | 
|  | 22 |  | 
|  | 23 | # | 
|  | 24 | # ANT java system service | 
|  | 25 | # | 
|  | 26 |  | 
|  | 27 | LOCAL_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 |  | 
|  | 32 | LOCAL_REQUIRED_MODULES := libantradio | 
|  | 33 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags | 
|  | 34 | LOCAL_CERTIFICATE := platform | 
|  | 35 | LOCAL_MODULE_TAGS := optional | 
|  | 36 | LOCAL_PACKAGE_NAME := AntHalService | 
|  | 37 |  | 
|  | 38 | include $(BUILD_PACKAGE) | 
|  | 39 |  | 
|  | 40 | endif # BOARD_ANT_WIRELESS_DEVICE defined |