summaryrefslogtreecommitdiff
path: root/tests/directiotest/Android.bp
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2018-05-09 16:26:42 -0700
committerDan Willemsen <dwillemsen@google.com>2018-05-10 02:38:57 +0000
commitbe906bbfc5fbdfc1168844cb410adbb355b23385 (patch)
tree0b266381350089b86beb6facc9878d1a524a2311 /tests/directiotest/Android.bp
parent1d332616efd5143f44ebfcb1abf7390fcd2fadf4 (diff)
downloadextras-be906bbfc5fbdfc1168844cb410adbb355b23385.tar.gz
Convert system/extras/tests 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/tests; mma Test: for the modules changing locations, check cs/ for references Change-Id: Ia91f12051519814a8d45d5af4a7f7700ffee288f
Diffstat (limited to 'tests/directiotest/Android.bp')
-rw-r--r--tests/directiotest/Android.bp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/directiotest/Android.bp b/tests/directiotest/Android.bp
new file mode 100644
index 00000000..489e3c82
--- /dev/null
+++ b/tests/directiotest/Android.bp
@@ -0,0 +1,8 @@
+cc_binary {
+ name: "directiotest",
+ srcs: ["directiotest.c"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+}