summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorNaseer Ahmed <naseer@codeaurora.org>2017-05-15 12:20:07 -0400
committerGerrit - the friendly Code Review server <code-review@localhost>2018-04-25 13:36:28 -0700
commit9905128cb62a5341d5db82f3d7793a2477d6e1f2 (patch)
treefec0b40d313445a51c7363077765e84f28239c95 /Android.bp
parent920d71bc794b03cf6dd5446f521bffd17c329826 (diff)
display: Partially convert makefiles to blueprints
Change-Id: I5429ecee3985e305290e312921725460ef195b83
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp37
1 files changed, 37 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 00000000..348067ff
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,37 @@
+cc_defaults {
+ name: "display_defaults",
+ cflags: [
+ "-Wno-missing-field-initializers",
+ "-Wconversion",
+ "-Wall",
+ "-Werror",
+ "-std=c++14",
+ ],
+ shared_libs: [
+ "liblog",
+ "libcutils",
+ "libutils",
+ ],
+ header_libs: ["display_headers"],
+ clang: true,
+}
+
+cc_library_headers {
+ name: "display_headers",
+ export_include_dirs: [
+ "include",
+ "libcopybit",
+ "libdrmutils",
+ "libqdutils",
+ "libqservice",
+ "gpu_tonemapper",
+ "sdm/include",
+ "gralloc",
+ "libdebug",
+ ],
+}
+
+subdirs = [
+ "libqservice",
+ "libqdutils",
+]