summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2019-01-18 19:16:11 +0000
committerMathieu Chartier <mathieuc@google.com>2019-01-18 19:16:46 +0000
commit08cf9ea353f2cd440891eaed7daca47f23afbf33 (patch)
tree6986d69645abb3df65b829ef605da4b9d1efa3d4 /Android.bp
parent07e8cce91a7fec677ee7936ce71852a48145eaf3 (diff)
downloadplatform_system_iorap-08cf9ea353f2cd440891eaed7daca47f23afbf33.tar.gz
platform_system_iorap-08cf9ea353f2cd440891eaed7daca47f23afbf33.tar.bz2
platform_system_iorap-08cf9ea353f2cd440891eaed7daca47f23afbf33.zip
Revert "iorap: Add iorap.inode2filename command line binary"
This reverts commit 07e8cce91a7fec677ee7936ce71852a48145eaf3. Reason for revert: Test is flaky Bug: 72170747 Bug: 123052350 Change-Id: I08dcc755f1eaae14e2c9bf21df879f3737015a02
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp44
1 files changed, 0 insertions, 44 deletions
diff --git a/Android.bp b/Android.bp
index 5209683..c81e41c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -63,11 +63,8 @@ cc_defaults {
"libutils",
"libcutils", // tracing.
- "libfruit", // dependency injection.
// TODO: remove these annoying dependencies by hiding them in the main library code.
],
-
- header_libs: ["librxcpp"],
}
cc_library_shared {
@@ -120,48 +117,9 @@ cc_binary {
],
}
-cc_library_static {
- name: "libiorap-inode2filename",
- defaults: [
- "iorap-default-flags",
- "iorap-default-dependencies",
- ],
-
- srcs: [
- "src/inode2filename/**/*.cc",
- ],
-}
-
-cc_binary {
- name: "iorap.inode2filename",
- defaults: [
- "iorap-default-flags",
- "iorap-default-dependencies",
- ],
- srcs: [
- "src/inode2filename/**/*.cc",
- ],
- // Easier debugging. TODO: make a separate debug config.
- // XX: Using -O0 seems to completely hide some errors.
- cflags: ["-O2", "-UNDEBUG", "-DIORAP_INODE2FILENAME_MAIN=1"],
- sanitize: {
- undefined: true,
- all_undefined: true,
- // Pretty print when ubsan detects a problem.
- // Otherwise it just calls abort().
-
-/*
- diag: {
- undefined: true,
- },
- */ // don't use the diag when you want it to crash.
- },
-}
-
cc_test {
name: "iorapd-tests",
test_suites: ["device-tests"],
- gtest: false, // we use gtest *and* gmock.
defaults: [
"iorap-default-flags",
"iorap-default-dependencies",
@@ -169,6 +127,4 @@ cc_test {
srcs: [
"tests/src/**/*.cc",
],
- cflags: ["-O2", "-UNDEBUG"],
- static_libs: ["libgmock_main", "libgmock", "libgtest", "libiorap-inode2filename"],
}