summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-04-09 15:03:12 -0700
committerColin Cross <ccross@android.com>2015-04-09 15:03:12 -0700
commit1dfc55cf053a6d5473e2f8fcac789006a1319304 (patch)
tree40a0009a635d05691e004561ef26ca636131a613
parent37467e5b52a5db5dea0339d60ca1243e45e7a357 (diff)
downloadlibhardware-1dfc55cf053a6d5473e2f8fcac789006a1319304.tar.gz
Initial libhardware Blueprints
Change-Id: I4130b6e57a7a02792f0919c8deb1b5dd71ab599b
-rw-r--r--Blueprints24
1 files changed, 24 insertions, 0 deletions
diff --git a/Blueprints b/Blueprints
new file mode 100644
index 00000000..095a8352
--- /dev/null
+++ b/Blueprints
@@ -0,0 +1,24 @@
+// Copyright 2006 The Android Open Source Project
+
+// Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
+//SUBDIR_MAKEFILES = ["<func:'all-named-subdir-makefiles' unset>"]
+
+// ANDROIDMK TRANSLATION ERROR: unsupported assignment to LOCAL_INCLUDES
+// LOCAL_INCLUDES+=$(LOCAL_PATH)
+
+cc_library_shared {
+ name: "libhardware",
+
+ shared_libs: [
+ "libcutils",
+ "liblog",
+ "libdl",
+ ],
+
+ cflags: ["-DQEMU_HARDWARE"],
+
+ srcs: ["hardware.c"],
+}
+
+// ANDROIDMK TRANSLATION ERROR: unsupported include
+// include $(SUBDIR_MAKEFILES)