Message ID | 20180228185451.30562-1-afd@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 28 February 2018 at 18:54, Andrew F. Davis <afd@ti.com> wrote: > From: Gowtham Tammana <g-tammana@ti.com> > > Add Android.mk file to build libdrm_omap library. > Zero objections on my end, but can we have the use case mentioned in the commit message. Years ago I was looking for users of the library and I could not find any. -Emil
On 03/02/2018 12:51 PM, Emil Velikov wrote: > On 28 February 2018 at 18:54, Andrew F. Davis <afd@ti.com> wrote: >> From: Gowtham Tammana <g-tammana@ti.com> >> >> Add Android.mk file to build libdrm_omap library. >> > Zero objections on my end, but can we have the use case mentioned in > the commit message. > Years ago I was looking for users of the library and I could not find any. > We use it in some older versions of our hardware composer for Android and our user-space graphics stack, but the goal will be to reduce or eliminate our dependence on the libdrm_omap specifics if we can. So I don't have any public users right now. Andrew > -Emil >
On 7 March 2018 at 16:17, Andrew F. Davis <afd@ti.com> wrote: > On 03/02/2018 12:51 PM, Emil Velikov wrote: >> On 28 February 2018 at 18:54, Andrew F. Davis <afd@ti.com> wrote: >>> From: Gowtham Tammana <g-tammana@ti.com> >>> >>> Add Android.mk file to build libdrm_omap library. >>> >> Zero objections on my end, but can we have the use case mentioned in >> the commit message. >> Years ago I was looking for users of the library and I could not find any. >> > > We use it in some older versions of our hardware composer for Android > and our user-space graphics stack, but the goal will be to reduce or > eliminate our dependence on the libdrm_omap specifics if we can. So I > don't have any public users right now. > Fair enough - pushed to master. -Emil
diff --git a/omap/Android.mk b/omap/Android.mk new file mode 100644 index 00000000..b25cca13 --- /dev/null +++ b/omap/Android.mk @@ -0,0 +1,13 @@ +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE := libdrm_omap +LOCAL_VENDOR_MODULE := true + +LOCAL_SRC_FILES := omap_drm.c + +LOCAL_SHARED_LIBRARIES := libdrm + +include $(LIBDRM_COMMON_MK) + +include $(BUILD_SHARED_LIBRARY)