You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
306 B
18 lines
306 B
LOCAL_PATH := $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := libdrm_rockchip |
|
|
|
LOCAL_SHARED_LIBRARIES := libdrm |
|
|
|
LOCAL_SRC_FILES := rockchip_drm.c |
|
|
|
LOCAL_CFLAGS := \ |
|
-DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1 |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libdrm |
|
|
|
LOCAL_VENDOR_MODULE := true |
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|