1e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# Copyright (C) 2011 The Android Open Source Project
2e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet#
3e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# Licensed under the Apache License, Version 2.0 (the "License");
4e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# you may not use this file except in compliance with the License.
5e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# You may obtain a copy of the License at
6e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet#
7e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet#      http://www.apache.org/licenses/LICENSE-2.0
8e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet#
9e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# Unless required by applicable law or agreed to in writing, software
10e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# distributed under the License is distributed on an "AS IS" BASIS,
11e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# See the License for the specific language governing permissions and
13e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# limitations under the License.
14e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet
15e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier DucrohetLOCAL_PATH := $(call my-dir)
16e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet
17e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohet# Here is the final static library that apps can link against.
18275326903ed2dd238ddbbd9532a9d46000cc8399Jeff Brown# The R class is automatically excluded from the generated library.
19275326903ed2dd238ddbbd9532a9d46000cc8399Jeff Brown# Applications that use this library must specify LOCAL_RESOURCE_DIR
20275326903ed2dd238ddbbd9532a9d46000cc8399Jeff Brown# in their makefiles to include the resources in their package.
21e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohetinclude $(CLEAR_VARS)
22e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier DucrohetLOCAL_MODULE := android-support-v7-gridlayout
23275326903ed2dd238ddbbd9532a9d46000cc8399Jeff BrownLOCAL_SRC_FILES := $(call all-java-files-under, src)
24275326903ed2dd238ddbbd9532a9d46000cc8399Jeff BrownLOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
25b12ba0547b2fad1c4dfc12dec36c5e7893974e67Adam PowellLOCAL_SDK_VERSION := 7
26b12ba0547b2fad1c4dfc12dec36c5e7893974e67Adam PowellLOCAL_JAVA_LIBRARIES := android-support-v4
27e1feb53bd8abfa46613fdd0abcf7a015c7e706c1Xavier Ducrohetinclude $(BUILD_STATIC_JAVA_LIBRARY)
28