aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--omap/Android.bp12
-rw-r--r--omap/Android.mk13
-rw-r--r--omap/Android.sources.bp8
3 files changed, 20 insertions, 13 deletions
diff --git a/omap/Android.bp b/omap/Android.bp
new file mode 100644
index 00000000..05ca7d2d
--- /dev/null
+++ b/omap/Android.bp
@@ -0,0 +1,12 @@
1build = ["Android.sources.bp"]
2
3cc_library_shared {
4 name: "libdrm_omap",
5 defaults: [
6 "libdrm_defaults",
7 "libdrm_omap_sources",
8 ],
9 vendor: true,
10
11 shared_libs: ["libdrm"],
12}
diff --git a/omap/Android.mk b/omap/Android.mk
deleted file mode 100644
index b25cca13..00000000
--- a/omap/Android.mk
+++ /dev/null
@@ -1,13 +0,0 @@
1LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE := libdrm_omap
5LOCAL_VENDOR_MODULE := true
6
7LOCAL_SRC_FILES := omap_drm.c
8
9LOCAL_SHARED_LIBRARIES := libdrm
10
11include $(LIBDRM_COMMON_MK)
12
13include $(BUILD_SHARED_LIBRARY)
diff --git a/omap/Android.sources.bp b/omap/Android.sources.bp
new file mode 100644
index 00000000..3c7da94a
--- /dev/null
+++ b/omap/Android.sources.bp
@@ -0,0 +1,8 @@
1// Autogenerated with Android.sources.bp.mk
2
3cc_defaults {
4 name: "libdrm_omap_sources",
5 srcs: [
6 "omap_drm.c",
7 ],
8}