1dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#
2dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# Copyright (C) 2015 The Android Open Source Project
3dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#
4dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# Licensed under the Apache License, Version 2.0 (the "License");
5dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# you may not use this file except in compliance with the License.
6dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# You may obtain a copy of the License at
7dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#
8dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#      http://www.apache.org/licenses/LICENSE-2.0
9dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#
10dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# Unless required by applicable law or agreed to in writing, software
11dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# distributed under the License is distributed on an "AS IS" BASIS,
12dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# See the License for the specific language governing permissions and
14dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford# limitations under the License.
15dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford#
16dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
17dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_PATH := $(call my-dir)
18dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordinclude $(CLEAR_VARS)
19dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
20dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_MODULE_TAGS := tests
21dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
22dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_SRC_FILES := $(call all-java-files-under, src) \
23dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford                   $(call all-renderscript-files-under, src)
24dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
25dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_STATIC_JAVA_LIBRARIES := android-support-v8-renderscript
26dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
27dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_PACKAGE_NAME := HealingBrush
288467325c6d80de30bb86b7665cc41dff0c276e8dAlan ViveretteLOCAL_SDK_VERSION := current
29dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_RENDERSCRIPT_TARGET_API := 19
30dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_RENDERSCRIPT_COMPATIBILITY := 18
31dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
32dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
33dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE := \
34dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford    $(TOPDIR)external/clang/lib/Headers \
352a85b6b9d6f9cb8f1b20d573c1c5ceafe901b011Jean-Luc Brouillet    $(TOPDIR)frameworks/rs/script_api/include
36dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
37dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_RENDERSCRIPT_FLAGS := -rs-package-name=android.support.v8.renderscript
38dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordLOCAL_JNI_SHARED_LIBRARIES := librsjni
39dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hoford
40dbf58070bd1a228fc817ea5ddb5c08fe717aecd2hofordinclude $(BUILD_PACKAGE)
41