summaryrefslogtreecommitdiff
path: root/taskstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2018-05-09 16:26:42 -0700
committerDan Willemsen <dwillemsen@google.com>2018-05-09 16:39:41 -0700
commit9f022b4b5d6b7dde25290e793eb8b5c5239659af (patch)
treec9d82f2cc68caf511e8c1e47b3963e709173d818 /taskstats
parentdc0191161cb4557535e89d45c8cfdd2305dcef4e (diff)
downloadextras-9f022b4b5d6b7dde25290e793eb8b5c5239659af.tar.gz
Convert more of system/extras to Soong
See build/soong/README.md for more information. Some modules are no longer installed by default on eng/debug builds, but I didn't see any automatic references to them. If they're commonly used by users, they can be added into build/make with PRODUCT_PACKAGES_ENG / PRODUCT_PACKAGES_DEBUG. Otherwise everyone's compiles get a little smaller. Some modules also moved from /system/xbin to /system/bin, as we've deprecated xbin. I checked codesearch for references to the full paths and couldn't find any. Test: cd system/extras; mma Test: for the modules changing locations, check cs/ for references Change-Id: I4ffd99d3dcf50e4d5cb2197824abc11973214133
Diffstat (limited to 'taskstats')
-rw-r--r--taskstats/Android.bp14
-rw-r--r--taskstats/Android.mk17
2 files changed, 14 insertions, 17 deletions
diff --git a/taskstats/Android.bp b/taskstats/Android.bp
new file mode 100644
index 00000000..3f2a5732
--- /dev/null
+++ b/taskstats/Android.bp
@@ -0,0 +1,14 @@
+// Copyright 2013 The Android Open Source Project
+
+cc_binary {
+ name: "taskstats",
+
+ srcs: ["taskstats.c"],
+
+ shared_libs: ["libnl"],
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+}
diff --git a/taskstats/Android.mk b/taskstats/Android.mk
deleted file mode 100644
index 38044f08..00000000
--- a/taskstats/Android.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 2013 The Android Open Source Project
-
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := \
- taskstats.c
-
-LOCAL_SHARED_LIBRARIES := \
- libnl
-
-LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
-LOCAL_MODULE_TAGS := debug
-LOCAL_MODULE:= taskstats
-LOCAL_CFLAGS:= -Wall -Werror
-
-include $(BUILD_EXECUTABLE)