From 5ac9eee1d3291a0d203a125849b4636a11c0d124 Mon Sep 17 00:00:00 2001 From: Benoit Goby Date: Fri, 31 Aug 2012 19:52:15 -0700 Subject: [PATCH] bionic: Fix TINY_ANDROID build (cherry-pick of 545d5dbbcb0dc9e44323c4f2e687a3aace75a483.) Change-Id: Ifc91e84ffed5a3a287accabd7f08b02752688db6 --- tests/Android.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Android.mk b/tests/Android.mk index d50d4d7d9..ba1112e2d 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -12,7 +12,9 @@ # 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. -# Copyright The Android Open Source Project +# + +ifneq ($(BUILD_TINY_ANDROID), true) LOCAL_PATH := $(call my-dir) @@ -35,3 +37,5 @@ include $(CLEAR_VARS) LOCAL_MODULE := bionic-unit-tests-glibc LOCAL_SRC_FILES := $(test_src_files) include $(BUILD_HOST_NATIVE_TEST) + +endif # !BUILD_TINY_ANDROID