Created
November 13, 2014 05:45
-
-
Save pcamp96/a61aa91d462051159290 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 ifeq ($(TARGET_PROVIDES_CAMERA_HAL),true) | |
2 | |
3 LOCAL_PATH := $(call my-dir) | |
4 include $(CLEAR_VARS) | |
5 | |
6 LOCAL_SRC_FILES := \ | |
7 CameraWrapper.cpp | |
8 | |
9 LOCAL_SHARED_LIBRARIES := \ | |
10 libhardware liblog libcamera_client libutils | |
11 | |
12 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw | |
13 LOCAL_MODULE := camera.msm8974 | |
14 LOCAL_MODULE_TAGS := optional | |
15 | |
16 LOCAL_C_INCLUDES := system/media/include/camera | |
17 | |
18 include $(BUILD_SHARED_LIBRARY) | |
19 | |
20 endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment