summaryrefslogtreecommitdiffstats
path: root/samples/RenderScript/Levels/Android.mk
diff options
context:
space:
mode:
authorJason Sams <jsams@google.com>2011-11-18 16:26:14 -0800
committerJason Sams <jsams@google.com>2011-11-18 16:26:14 -0800
commitf347e622078b4378bc064a01b532f5b8447ef804 (patch)
tree16b649e597c063c3062d6e4832db054fb4e6291a /samples/RenderScript/Levels/Android.mk
parentccd14a7b8ea77383a043ffa4e9988f98b6e45487 (diff)
downloadandroid_development-f347e622078b4378bc064a01b532f5b8447ef804.tar.gz
android_development-f347e622078b4378bc064a01b532f5b8447ef804.tar.bz2
android_development-f347e622078b4378bc064a01b532f5b8447ef804.zip
New compute sample for simple image processing.
Change-Id: I0aeada2d425a0e4f915fc2f8f8af111329297709
Diffstat (limited to 'samples/RenderScript/Levels/Android.mk')
-rw-r--r--samples/RenderScript/Levels/Android.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/samples/RenderScript/Levels/Android.mk b/samples/RenderScript/Levels/Android.mk
new file mode 100644
index 000000000..dc7a412f3
--- /dev/null
+++ b/samples/RenderScript/Levels/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.
+#
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
+
+LOCAL_PACKAGE_NAME := LevelsRS
+
+include $(BUILD_PACKAGE)