aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorNiko Catania <niko@google.com>2009-04-16 22:15:27 -0700
committerNicolas Catania <niko@google.com>2009-05-02 20:09:39 -0700
commitfe47ae56a8808c836923466e44704db3a8371593 (patch)
tree1d9e5eca07ca40c8fb814e4ffcaafe72f52d7a25 /Android.mk
parent62c1471ed539420b4d48118e2d0b6bf153814629 (diff)
downloadastl-fe47ae56a8808c836923466e44704db3a8371593.tar.gz
Added 2 new files: algorithm and string.
Added tests but will submit change to runtest_py separately. Added more description to the README file. Check for unsigned overflows. Added Android.mk in the top dir. Removed the reserve() method and made the size default to 0 in reserve(size_t)
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..85dfb49
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,26 @@
+# Copyright (C) 2009 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# 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.
+#
+# Build control file for Bionic's test programs
+# define the BIONIC_TESTS environment variable to build the test programs
+#
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# We only want this apk build for tests.
+LOCAL_MODULE_TAGS := eng tests
+
+
+include $(call all-makefiles-under,$(LOCAL_PATH))