From f4fd9a07c764e8cfbea281bf6ac99730c0c553c1 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 20 May 2015 13:11:15 -0700 Subject: Rename Blueprints to Android.bp Rename module definition files to Android.bp to avoid conflicts with another project called Blueprint. Change-Id: I5755c3d8fe43ad7626724887582f5f52ea5d3305 --- Android.bp | 24 ++++++++++++++++++++++++ Blueprints | 24 ------------------------ 2 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 Android.bp delete mode 100644 Blueprints diff --git a/Android.bp b/Android.bp new file mode 100644 index 00000000..095a8352 --- /dev/null +++ b/Android.bp @@ -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 = [""] + +// 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) diff --git a/Blueprints b/Blueprints deleted file mode 100644 index 095a8352..00000000 --- a/Blueprints +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2006 The Android Open Source Project - -// Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand. -//SUBDIR_MAKEFILES = [""] - -// 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) -- cgit v1.2.3