blob: 3724ff43b1f08db04e192d4c6c9da4039b463df2 [file] [log] [blame]
Adam Powellbbbb8f32012-04-25 13:03:55 -07001# Copyright (C) 2012 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)
16
17# Note: the source code is in java/, not src/, because this code is also part of
18# the framework library, and build/core/pathmap.mk expects a java/ subdirectory.
19
Adam Powellbbbb8f32012-04-25 13:03:55 -070020include $(CLEAR_VARS)
Trevor Johns173f2842012-09-19 22:46:21 -070021LOCAL_MODULE := android-support-appcompat
Siva Velusamye3a39a12012-10-18 13:51:17 -070022LOCAL_SDK_VERSION := 14
23LOCAL_SRC_FILES := $(call all-java-files-under,eclair honeycomb ics java)
24LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
25LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
Adam Powellbbbb8f32012-04-25 13:03:55 -070026include $(BUILD_STATIC_JAVA_LIBRARY)
27
28# Include this library in the build server's output directory
29$(call dist-for-goals, droidcore sdk, $(LOCAL_BUILT_MODULE):android-support-appcompat.jar)