Advertisement
Guest User

Untitled

a guest
May 19th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.28 KB | None | 0 0
  1. # vendor/samsung/janice/proprietary/Android.mk
  2.  
  3. # Copyright (C) 2012 The Android Open Source Project
  4. # Copyright (C) 2012 The CyanogenMod Project
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17.  
  18. LOCAL_PATH := $(call my-dir)
  19.  
  20. include $(CLEAR_VARS)
  21. LOCAL_MODULE := libMali
  22. LOCAL_MODULE_OWNER := samsung
  23. LOCAL_SRC_FILES := system/lib/libMali.so
  24. LOCAL_MODULE_TAGS := optional
  25. LOCAL_MODULE_SUFFIX := .so
  26. LOCAL_MODULE_CLASS := SHARED_LIBRARIES
  27. LOCAL_MODULE_PATH := $(TARGET_OUT)/lib
  28.  
  29. include $(CLEAR_VARS)
  30. LOCAL_MODULE := libGLESv1_CM_mali
  31. LOCAL_MODULE_OWNER := samsung
  32. LOCAL_SRC_FILES := system/lib/egl/libGLESv1_CM_mali.so
  33. LOCAL_MODULE_TAGS := optional
  34. LOCAL_MODULE_SUFFIX := .so
  35. LOCAL_MODULE_CLASS := SHARED_LIBRARIES
  36. LOCAL_MODULE_PATH := $(TARGET_OUT)/lib
  37.  
  38. include $(BUILD_PREBUILT)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement