summaryrefslogtreecommitdiff
path: root/java/tests/ImageProcessing2/Android.mk
diff options
context:
space:
mode:
authorJason Sams <jsams@google.com>2013-03-19 12:41:48 -0700
committerJason Sams <jsams@google.com>2013-03-19 12:41:48 -0700
commit572a5031a5d8602db0bec0b253428a034bd4dd59 (patch)
tree44db981d697afe061f45a575a06c0384993e6b13 /java/tests/ImageProcessing2/Android.mk
parent110f181b7966212a36ef18016f9b81c7322d0a2f (diff)
downloadrs-572a5031a5d8602db0bec0b253428a034bd4dd59.tar.gz
Move compute tests from frameworks/base to frameworks/rs
Change-Id: I844c9f5e58f500164fec419569c68c7f854c5571
Diffstat (limited to 'java/tests/ImageProcessing2/Android.mk')
-rw-r--r--java/tests/ImageProcessing2/Android.mk40
1 files changed, 40 insertions, 0 deletions
diff --git a/java/tests/ImageProcessing2/Android.mk b/java/tests/ImageProcessing2/Android.mk
new file mode 100644
index 00000000..52966a37
--- /dev/null
+++ b/java/tests/ImageProcessing2/Android.mk
@@ -0,0 +1,40 @@
+#
+# 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 := tests
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src) \
+ $(call all-renderscript-files-under, src)
+
+LOCAL_STATIC_JAVA_LIBRARIES := android.support.v8.renderscript
+
+LOCAL_PACKAGE_NAME := ImageProcessing2
+LOCAL_SDK_VERSION := 8
+LOCAL_RENDERSCRIPT_TARGET_API := 18
+LOCAL_RENDERSCRIPT_COMPATIBILITY := 18
+LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE := $(TOPDIR)external/clang/lib/Headers \
+ $(TOPDIR)frameworks/rs/scriptc
+
+LOCAL_RENDERSCRIPT_FLAGS := -rs-package-name=android.support.v8.renderscript
+LOCAL_REQUIRED_MODULES := librsjni
+
+include $(BUILD_PACKAGE)
+
+#include $(call all-makefiles-under, $(LOCAL_PATH))
+