Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 1 | # |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 2 | # Copyright (C) 2012 The Android Open Source Project |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # |
| 17 | |
| 18 | LOCAL_PATH := $(call my-dir) |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 19 | |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 20 | #===================================================================== |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 21 | # Common: libbccRenderScript |
Stephen Hines | 2f6a493 | 2012-05-03 12:27:13 -0700 | [diff] [blame] | 22 | #===================================================================== |
| 23 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 24 | libbcc_renderscript_SRC_FILES := \ |
| 25 | RSCompiler.cpp \ |
| 26 | RSCompilerDriver.cpp \ |
| 27 | RSExecutable.cpp \ |
| 28 | RSForEachExpand.cpp \ |
| 29 | RSInfo.cpp \ |
| 30 | RSInfoExtractor.cpp \ |
| 31 | RSInfoReader.cpp \ |
| 32 | RSInfoWriter.cpp \ |
| 33 | RSScript.cpp |
Stephen Hines | 2f6a493 | 2012-05-03 12:27:13 -0700 | [diff] [blame] | 34 | |
| 35 | #===================================================================== |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 36 | # Device Static Library: libbccRenderScript |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 37 | #===================================================================== |
| 38 | |
| 39 | include $(CLEAR_VARS) |
| 40 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 41 | LOCAL_MODULE := libbccRenderScript |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 42 | LOCAL_MODULE_TAGS := optional |
| 43 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
Zonr Chang | ddf5661 | 2012-04-12 15:38:42 +0800 | [diff] [blame] | 44 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 45 | LOCAL_SRC_FILES := $(libbcc_renderscript_SRC_FILES) |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 46 | |
Zonr Chang | ddf5661 | 2012-04-12 15:38:42 +0800 | [diff] [blame] | 47 | include $(LIBBCC_DEVICE_BUILD_MK) |
| 48 | include $(LIBBCC_GEN_CONFIG_MK) |
| 49 | include $(LLVM_DEVICE_BUILD_MK) |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 50 | include $(BUILD_STATIC_LIBRARY) |
| 51 | |
| 52 | |
| 53 | #===================================================================== |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 54 | # Host Static Library: libbccRenderScript |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 55 | #===================================================================== |
| 56 | |
| 57 | include $(CLEAR_VARS) |
| 58 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 59 | LOCAL_MODULE := libbccRenderScript |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 60 | LOCAL_MODULE_TAGS := optional |
| 61 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
Stephen Hines | 2f6a493 | 2012-05-03 12:27:13 -0700 | [diff] [blame] | 62 | LOCAL_IS_HOST_MODULE := true |
Logan Chien | 6700527 | 2011-07-14 19:51:54 +0800 | [diff] [blame] | 63 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 64 | LOCAL_SRC_FILES := $(libbcc_renderscript_SRC_FILES) |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 65 | |
Zonr Chang | ddf5661 | 2012-04-12 15:38:42 +0800 | [diff] [blame] | 66 | include $(LIBBCC_HOST_BUILD_MK) |
| 67 | include $(LIBBCC_GEN_CONFIG_MK) |
| 68 | include $(LLVM_HOST_BUILD_MK) |
Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 69 | include $(BUILD_HOST_STATIC_LIBRARY) |
Stephen Hines | 2f6a493 | 2012-05-03 12:27:13 -0700 | [diff] [blame] | 70 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 71 | # Build RenderScript runtime (libclcore.bc) |
| 72 | include $(LOCAL_PATH)/runtime/Android.mk |