aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Muckle <smuckle@google.com>2017-10-15 02:12:08 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-10-15 02:12:08 +0000
commite1c4f45c70a22609b2254f17e928bc5e1ab80582 (patch)
tree1b48c9b714d53c677468690edcdaa5939faab4d9
parent5e45fbcb70aadaf0e79f177bf836b0d6049b4e0f (diff)
parent7ee71735dfa662f78c72e514ff3029f7e8716378 (diff)
downloadlibcap-ng-e1c4f45c70a22609b2254f17e928bc5e1ab80582.tar.gz
Merge "convert to Soong, static library" am: 168a87ba95
am: 7ee71735df Change-Id: I914be8c01acd6f7af777e7fdb21d915b5599c5e1
-rw-r--r--Android.bp16
-rw-r--r--Android.mk25
2 files changed, 16 insertions, 25 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..65d50aa
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,16 @@
+cc_library_static {
+
+ srcs: [
+ "libcap-ng-0.7/src/cap-ng.c",
+ "libcap-ng-0.7/src/lookup_table.c",
+ ],
+
+ export_include_dirs: ["libcap-ng-0.7/src"],
+ name: "libcap-ng",
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-Wno-enum-conversion",
+ "-Wno-unused-parameter",
+ ],
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 0c298b6..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := \
- libcap-ng-0.7/src/cap-ng.c \
- libcap-ng-0.7/src/lookup_table.c
-
-LOCAL_C_INCLUDES += $(LOCAL_PATH)/libcap-ng-0.7/src
-LOCAL_MODULE := libcap-ng
-LOCAL_CFLAGS := \
- -Wall -Werror \
- -Wno-enum-conversion \
- -Wno-unused-parameter
-include $(BUILD_SHARED_LIBRARY)
-
-######################
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := libcap-ng-0.7/utils/pscap.c
-LOCAL_C_INCLUDES += $(LOCAL_PATH)/libcap-ng-0.7/src
-LOCAL_SHARED_LIBRARIES += libcap-ng
-LOCAL_MODULE := pscap
-LOCAL_CFLAGS := -Wall -Werror
-include $(BUILD_EXECUTABLE)