1cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# Copyright (C) 2011 The Android Open Source Project
2cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn#
3cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# Licensed under the Apache License, Version 2.0 (the "License");
4cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# you may not use this file except in compliance with the License.
5cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# You may obtain a copy of the License at
6cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn#
7cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn#      http://www.apache.org/licenses/LICENSE-2.0
8cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn#
9cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# Unless required by applicable law or agreed to in writing, software
10cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# distributed under the License is distributed on an "AS IS" BASIS,
11cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# See the License for the specific language governing permissions and
13cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn# limitations under the License.
14cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn
15cba2e2c881e8e16ea5025b564c94320174d65f01Dianne HackbornLOCAL_PATH := $(call my-dir)
16cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborn
178e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniak# A helper sub-library that makes direct use of Donut APIs.
188e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniakinclude $(CLEAR_VARS)
198e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw SzczepaniakLOCAL_MODULE := android-support-v4-donut
208e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw SzczepaniakLOCAL_SDK_VERSION := 4
218e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw SzczepaniakLOCAL_SRC_FILES := $(call all-java-files-under, donut)
22d392c8cae159a3a9a416200f4e117634bdbf064eYigit BoyarLOCAL_STATIC_JAVA_LIBRARIES := android-support-annotations
238e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniakinclude $(BUILD_STATIC_JAVA_LIBRARY)
248e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniak
258e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniak# -----------------------------------------------------------------------
268e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw Szczepaniak
27e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn# A helper sub-library that makes direct use of Eclair APIs.
28e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborninclude $(CLEAR_VARS)
29e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_MODULE := android-support-v4-eclair
30e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_SDK_VERSION := 5
31e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_SRC_FILES := $(call all-java-files-under, eclair)
328e65b64e60cfcf07acafecbde5a750bdcfdc2df1Przemyslaw SzczepaniakLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-donut
33e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborninclude $(BUILD_STATIC_JAVA_LIBRARY)
34e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn
35e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn# -----------------------------------------------------------------------
36e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn
37c029e15f5a4709214cb433a562256586824a0f33Adam Powell# A helper sub-library that makes direct use of Eclair MR1 APIs.
38c029e15f5a4709214cb433a562256586824a0f33Adam Powellinclude $(CLEAR_VARS)
39c029e15f5a4709214cb433a562256586824a0f33Adam PowellLOCAL_MODULE := android-support-v4-eclair-mr1
40c029e15f5a4709214cb433a562256586824a0f33Adam PowellLOCAL_SDK_VERSION := 7
41c029e15f5a4709214cb433a562256586824a0f33Adam PowellLOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
42c029e15f5a4709214cb433a562256586824a0f33Adam PowellLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair
43c029e15f5a4709214cb433a562256586824a0f33Adam Powellinclude $(BUILD_STATIC_JAVA_LIBRARY)
44c029e15f5a4709214cb433a562256586824a0f33Adam Powell
45c029e15f5a4709214cb433a562256586824a0f33Adam Powell# -----------------------------------------------------------------------
46c029e15f5a4709214cb433a562256586824a0f33Adam Powell
47e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn# A helper sub-library that makes direct use of Froyo APIs.
48e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborninclude $(CLEAR_VARS)
49e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_MODULE := android-support-v4-froyo
50e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_SDK_VERSION := 8
51e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne HackbornLOCAL_SRC_FILES := $(call all-java-files-under, froyo)
52c029e15f5a4709214cb433a562256586824a0f33Adam PowellLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair-mr1
53e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborninclude $(BUILD_STATIC_JAVA_LIBRARY)
54e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn
55e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn# -----------------------------------------------------------------------
56e4417c91a0bb2fba42a0aaa99edcca1b238af21aDianne Hackborn
57560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powell# A helper sub-library that makes direct use of Gingerbread APIs.
58560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powellinclude $(CLEAR_VARS)
59560114f591be31d0fb73c26a1ee1cc0a15184abaAdam PowellLOCAL_MODULE := android-support-v4-gingerbread
60560114f591be31d0fb73c26a1ee1cc0a15184abaAdam PowellLOCAL_SDK_VERSION := 9
61560114f591be31d0fb73c26a1ee1cc0a15184abaAdam PowellLOCAL_SRC_FILES := $(call all-java-files-under, gingerbread)
62c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo
63560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powellinclude $(BUILD_STATIC_JAVA_LIBRARY)
64560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powell
65560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powell# -----------------------------------------------------------------------
66560114f591be31d0fb73c26a1ee1cc0a15184abaAdam Powell
6727aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborn# A helper sub-library that makes direct use of Honeycomb APIs.
6827aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborninclude $(CLEAR_VARS)
6927aea04b07c1fafa0f815aa4f80374a9e051b41cDianne HackbornLOCAL_MODULE := android-support-v4-honeycomb
7027aea04b07c1fafa0f815aa4f80374a9e051b41cDianne HackbornLOCAL_SDK_VERSION := 11
7127aea04b07c1fafa0f815aa4f80374a9e051b41cDianne HackbornLOCAL_SRC_FILES := $(call all-java-files-under, honeycomb)
72c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread
7327aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborninclude $(BUILD_STATIC_JAVA_LIBRARY)
7427aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborn
7527aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborn# -----------------------------------------------------------------------
7627aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborn
77c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banes# A helper sub-library that makes direct use of Honeycomb MR1 APIs.
78c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banesinclude $(CLEAR_VARS)
79c55f505d6e5cd8b701721f42431bfd742a1968f0Chris BanesLOCAL_MODULE := android-support-v4-honeycomb-mr1
80c55f505d6e5cd8b701721f42431bfd742a1968f0Chris BanesLOCAL_SDK_VERSION := 12
81c55f505d6e5cd8b701721f42431bfd742a1968f0Chris BanesLOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr1)
82c55f505d6e5cd8b701721f42431bfd742a1968f0Chris BanesLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb
83c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banesinclude $(BUILD_STATIC_JAVA_LIBRARY)
84c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banes
85c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banes# -----------------------------------------------------------------------
86c55f505d6e5cd8b701721f42431bfd742a1968f0Chris Banes
875c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborn# A helper sub-library that makes direct use of Honeycomb MR2 APIs.
885c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborninclude $(CLEAR_VARS)
895c1637087453de15e31861f073eae5133c4e9f7bDianne HackbornLOCAL_MODULE := android-support-v4-honeycomb-mr2
90bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam PowellLOCAL_SDK_VERSION := 13
915c1637087453de15e31861f073eae5133c4e9f7bDianne HackbornLOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2)
92c55f505d6e5cd8b701721f42431bfd742a1968f0Chris BanesLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr1
935c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborninclude $(BUILD_STATIC_JAVA_LIBRARY)
945c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborn
955c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborn# -----------------------------------------------------------------------
965c1637087453de15e31861f073eae5133c4e9f7bDianne Hackborn
97bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powell# A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
98bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powellinclude $(CLEAR_VARS)
99bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam PowellLOCAL_MODULE := android-support-v4-ics
1002f57132efb6e8ce3aa19d4f39518073e00680265Ying WangLOCAL_SDK_VERSION := 14
101bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam PowellLOCAL_SRC_FILES := $(call all-java-files-under, ics)
102c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr2
103bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powellinclude $(BUILD_STATIC_JAVA_LIBRARY)
104bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powell
105bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powell# -----------------------------------------------------------------------
106bc889e39e279fcf8c3d35fc11d8052c002eddf38Adam Powell
107c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganov# A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs.
108c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganovinclude $(CLEAR_VARS)
109c64858f808c159a8b144d22e3168459074cdc181Svetoslav GanovLOCAL_MODULE := android-support-v4-ics-mr1
110c64858f808c159a8b144d22e3168459074cdc181Svetoslav GanovLOCAL_SDK_VERSION := 15
111c64858f808c159a8b144d22e3168459074cdc181Svetoslav GanovLOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1)
112c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics
113c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganovinclude $(BUILD_STATIC_JAVA_LIBRARY)
114c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganov
115c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganov# -----------------------------------------------------------------------
116c64858f808c159a8b144d22e3168459074cdc181Svetoslav Ganov
117956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganov# A helper sub-library that makes direct use of JellyBean APIs.
118956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganovinclude $(CLEAR_VARS)
119956b013dfda37760b0232ed6d448900a546d2903Svetoslav GanovLOCAL_MODULE := android-support-v4-jellybean
120f3ed7c56e6c409d27c60f7d74c026906593c21d4Svetoslav GanovLOCAL_SDK_VERSION := 16
121956b013dfda37760b0232ed6d448900a546d2903Svetoslav GanovLOCAL_SRC_FILES := $(call all-java-files-under, jellybean)
122c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics-mr1
123956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganovinclude $(BUILD_STATIC_JAVA_LIBRARY)
124956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganov
125956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganov# -----------------------------------------------------------------------
126956b013dfda37760b0232ed6d448900a546d2903Svetoslav Ganov
1270af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganov# A helper sub-library that makes direct use of JellyBean MR1 APIs.
1280af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganovinclude $(CLEAR_VARS)
1290af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav GanovLOCAL_MODULE := android-support-v4-jellybean-mr1
1308295680249abdd0cffece49cbefb337f03425c20Jim GuggemosLOCAL_SDK_VERSION := 17
1310af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav GanovLOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1)
132c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean
1330af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganovinclude $(BUILD_STATIC_JAVA_LIBRARY)
1340af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganov
1350af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganov# -----------------------------------------------------------------------
1360af001b9e0d173f6b9836e66539bf764b897c36fSvetoslav Ganov
1370fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslav# A helper sub-library that makes direct use of JellyBean MR2 APIs.
1380fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslavinclude $(CLEAR_VARS)
1390fc5bd7644f7563f7b59bd1017df9c938857e794SvetoslavLOCAL_MODULE := android-support-v4-jellybean-mr2
140b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniLOCAL_SDK_VERSION := 18
1410fc5bd7644f7563f7b59bd1017df9c938857e794SvetoslavLOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2)
142c21f57ed68b81a77167f1df000b0e272e1598bc0Jeff BrownLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr1
1430fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslavinclude $(BUILD_STATIC_JAVA_LIBRARY)
1440fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslav
1450fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslav# -----------------------------------------------------------------------
1460fc5bd7644f7563f7b59bd1017df9c938857e794Svetoslav
147b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpini# A helper sub-library that makes direct use of KitKat APIs.
148b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniinclude $(CLEAR_VARS)
149b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniLOCAL_MODULE := android-support-v4-kitkat
150dd2c232b1f64d270269a2f515b4f9d448893f858Adam PowellLOCAL_SDK_VERSION := 19
151b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniLOCAL_SRC_FILES := $(call all-java-files-under, kitkat)
152b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr2
153b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpiniinclude $(BUILD_STATIC_JAVA_LIBRARY)
154b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpini
155b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpini# -----------------------------------------------------------------------
156b7c7eb8b8c520f5a3256205a42e42e071854d929Mindy DelliCarpini
157ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik# A helper sub-library that makes direct use of V20 APIs.
158b56de0d1a113c71a2808303009ab4d9708ed6e84Griff Hazeninclude $(CLEAR_VARS)
159b56de0d1a113c71a2808303009ab4d9708ed6e84Griff HazenLOCAL_MODULE := android-support-v4-api20
16043c5718722bab1f836b7c94f2ec0bc19e653037cGriff HazenLOCAL_SDK_VERSION := 20
161b56de0d1a113c71a2808303009ab4d9708ed6e84Griff HazenLOCAL_SRC_FILES := $(call all-java-files-under, api20)
162b56de0d1a113c71a2808303009ab4d9708ed6e84Griff HazenLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-kitkat
163b56de0d1a113c71a2808303009ab4d9708ed6e84Griff Hazeninclude $(BUILD_STATIC_JAVA_LIBRARY)
164b56de0d1a113c71a2808303009ab4d9708ed6e84Griff Hazen
165b56de0d1a113c71a2808303009ab4d9708ed6e84Griff Hazen# -----------------------------------------------------------------------
166b56de0d1a113c71a2808303009ab4d9708ed6e84Griff Hazen
167ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik# A helper sub-library that makes direct use of Lollipop APIs.
168479dd28f2936062d37166a949419d332053af44cAlan Viveretteinclude $(CLEAR_VARS)
169479dd28f2936062d37166a949419d332053af44cAlan ViveretteLOCAL_MODULE := android-support-v4-api21
170fcec1282de632ec009109ae3f93a25fea97fc170Griff HazenLOCAL_SDK_VERSION := 21
171479dd28f2936062d37166a949419d332053af44cAlan ViveretteLOCAL_SRC_FILES := $(call all-java-files-under, api21)
172479dd28f2936062d37166a949419d332053af44cAlan ViveretteLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api20
173479dd28f2936062d37166a949419d332053af44cAlan Viveretteinclude $(BUILD_STATIC_JAVA_LIBRARY)
174479dd28f2936062d37166a949419d332053af44cAlan Viverette
175479dd28f2936062d37166a949419d332053af44cAlan Viverette# -----------------------------------------------------------------------
176479dd28f2936062d37166a949419d332053af44cAlan Viverette
177ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik# A helper sub-library that makes direct use of V22 APIs.
178ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikinclude $(CLEAR_VARS)
179ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikLOCAL_MODULE := android-support-v4-api22
180ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikLOCAL_SDK_VERSION := current
181ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikLOCAL_SRC_FILES := $(call all-java-files-under, api22)
182ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api21
183ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikinclude $(BUILD_STATIC_JAVA_LIBRARY)
184ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik
185ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik# -----------------------------------------------------------------------
186ceb8bf5e5cce7a37736981e626c4be416378767bRoboErik
18727aea04b07c1fafa0f815aa4f80374a9e051b41cDianne Hackborn# Here is the final static library that apps can link against.
188cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborninclude $(CLEAR_VARS)
189cba2e2c881e8e16ea5025b564c94320174d65f01Dianne HackbornLOCAL_MODULE := android-support-v4
190cba2e2c881e8e16ea5025b564c94320174d65f01Dianne HackbornLOCAL_SDK_VERSION := 4
191ce16e4276c2f61109a23b3f6707cfcd87b07c735Griff Hazen
192e49860b0f76d8336c1d41831ed370b0ff94278efRoboErikLOCAL_AIDL_INCLUDES := frameworks/support/v4/java
193e49860b0f76d8336c1d41831ed370b0ff94278efRoboErik
194ce16e4276c2f61109a23b3f6707cfcd87b07c735Griff HazenLOCAL_SRC_FILES := $(call all-java-files-under, java) \
195ce16e4276c2f61109a23b3f6707cfcd87b07c735Griff Hazen    $(call all-Iaidl-files-under, java)
196ce16e4276c2f61109a23b3f6707cfcd87b07c735Griff Hazen
197e49860b0f76d8336c1d41831ed370b0ff94278efRoboErik
198ceb8bf5e5cce7a37736981e626c4be416378767bRoboErikLOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-api22
199cba2e2c881e8e16ea5025b564c94320174d65f01Dianne Hackborninclude $(BUILD_STATIC_JAVA_LIBRARY)
200