From 6268d417c2adc636aca2ea2ea6d77bc5614fc138 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Fri, 16 Nov 2018 22:46:39 -0800 Subject: Convert rmi4utils to Android.bp See build/soong/README.md for more information. Test: cd external/rmi4utils; mma Change-Id: I774bef8e463aafa523b0ac4698d07e8aba74cc37 --- f54test/Android.bp | 16 ++++++++++++++++ f54test/Android.mk | 14 -------------- 2 files changed, 16 insertions(+), 14 deletions(-) create mode 100644 f54test/Android.bp delete mode 100644 f54test/Android.mk (limited to 'f54test') diff --git a/f54test/Android.bp b/f54test/Android.bp new file mode 100644 index 0000000..12f7307 --- /dev/null +++ b/f54test/Android.bp @@ -0,0 +1,16 @@ +cc_binary { + name: "f54test", + srcs: [ + "main.cpp", + "f54test.cpp", + "testutil.cpp", + "display.cpp", + ], + cflags: [ + "-Wall", + "-Werror", + "-Wno-sometimes-uninitialized", + "-Wno-unused-parameter", + ], + static_libs: ["rmidevice"], +} diff --git a/f54test/Android.mk b/f54test/Android.mk deleted file mode 100644 index 81b4521..0000000 --- a/f54test/Android.mk +++ /dev/null @@ -1,14 +0,0 @@ -LOCAL_PATH := $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE := f54test -LOCAL_C_INCLUDES := $(LOCAL_PATH)/../rmidevice -LOCAL_SRC_FILES := main.cpp f54test.cpp testutil.cpp display.cpp -LOCAL_CFLAGS := \ - -Wall -Werror \ - -Wno-sometimes-uninitialized \ - -Wno-unused-parameter \ - -LOCAL_STATIC_LIBRARIES := rmidevice - -include $(BUILD_EXECUTABLE) -- cgit v1.2.3