diff options
author | Xavier Ducrohet <xav@android.com> | 2012-01-27 16:06:40 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-01-27 16:06:40 -0800 |
commit | d3ddd843a71f966ed256ea4c21f4b50c6fd735d2 (patch) | |
tree | 1d27b500f8327130f528bcbd050b4fb40300e519 /annotations/Android.mk | |
parent | 7abf0861af9f6afe854bafa6d43d9d1feba8b552 (diff) | |
parent | 16234ae8bff35630ea6f19f5ffde5df1f8bff669 (diff) | |
download | sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.zip sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.tar.gz sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.tar.bz2 |
Merge "Support annotations for backward compatibility."
Diffstat (limited to 'annotations/Android.mk')
-rw-r--r-- | annotations/Android.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/annotations/Android.mk b/annotations/Android.mk new file mode 100644 index 0000000..cbfe92d --- /dev/null +++ b/annotations/Android.mk @@ -0,0 +1,26 @@ +# +# Copyright (C) 2008 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(call all-java-files-under, src) +LOCAL_JAVA_RESOURCE_DIRS := src + +LOCAL_MODULE := annotations +LOCAL_MODULE_TAGS := optional + +include $(BUILD_HOST_JAVA_LIBRARY) + |