1bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# Copyright (C) 2012 The Android Open Source Project
2bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell#
3bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# Licensed under the Apache License, Version 2.0 (the "License");
4bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# you may not use this file except in compliance with the License.
5bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# You may obtain a copy of the License at
6bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell#
7bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell#      http://www.apache.org/licenses/LICENSE-2.0
8bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell#
9bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# Unless required by applicable law or agreed to in writing, software
10bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# distributed under the License is distributed on an "AS IS" BASIS,
11bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# See the License for the specific language governing permissions and
13bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell# limitations under the License.
14bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell
15bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam PowellLOCAL_PATH := $(call my-dir)
16bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powell
17da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff Brown# Here is the final static library that apps can link against.
18da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff Brown# The R class is automatically excluded from the generated library.
19da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff Brown# Applications that use this library must specify LOCAL_RESOURCE_DIR
20da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff Brown# in their makefiles to include the resources in their package.
21bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powellinclude $(CLEAR_VARS)
22da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff BrownLOCAL_MODULE := android-support-v7-appcompat
23fbadf84caff1f0ebf8e68243e3b0f4e30fef4bbeAdam MetcalfLOCAL_SDK_VERSION := current
24da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff BrownLOCAL_SRC_FILES := $(call all-java-files-under,src)
25e3a39a1a9975c9452065cd55b9abf36a0ba2263eSiva VelusamyLOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
26da10fdd1400ecfd8d7f2e55651dd528d0614dfc5Jeff BrownLOCAL_JAVA_LIBRARIES += android-support-v4
27bbbb8f39d1b1d1b317c5f9237f20fe6b1d9eb17fAdam Powellinclude $(BUILD_STATIC_JAVA_LIBRARY)
28