blob: e6bc3e940072a297ab5b136d0f7d627117145fa7 [file] [log] [blame]
Daisuke Miyakawa4199c542010-06-03 15:18:09 -07001# Copyright (C) 2010 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.
14
15LOCAL_PATH := $(call my-dir)
16include $(CLEAR_VARS)
17
Daisuke Miyakawaa11303c2011-03-03 11:15:14 -080018# 2.3
19LOCAL_SDK_VERSION := 9
Daisuke Miyakawa9919ad22011-02-09 15:02:41 -080020
Daisuke Miyakawa4199c542010-06-03 15:18:09 -070021LOCAL_MODULE := com.android.vcard
22LOCAL_SRC_FILES := $(call all-java-files-under, java)
23
Daisuke Miyakawa4199c542010-06-03 15:18:09 -070024include $(BUILD_STATIC_JAVA_LIBRARY)
25
Shashank Mittalb5f51a72014-03-11 18:23:12 -070026# Build JAR
27include $(CLEAR_VARS)
28
29# 2.3
30LOCAL_SDK_VERSION := 9
31
32LOCAL_MODULE:= vcard
33LOCAL_SRC_FILES := $(call all-java-files-under, java)
34
35include $(BUILD_JAVA_LIBRARY)
36
Daisuke Miyakawa4199c542010-06-03 15:18:09 -070037# Build the test package.
38include $(call all-makefiles-under, $(LOCAL_PATH))