diff options
| author | 2021-04-26 11:32:56 -0700 | |
|---|---|---|
| committer | 2021-04-26 12:28:22 -0700 | |
| commit | 4e419d8a38ba0ca5bd44c74f36933044efabadfb (patch) | |
| tree | b009ff90b1d2fecd9822bbc800b926e17d7a7837 | |
| parent | 63674d5969229fbbf64054c89a3c2571566daeea (diff) | |
binderDriverInterfaceTest: Add IBinder dependency
It was including IBinder from global includes. Use
libbinder_headers instead.
Test: pass
Bug: 186266747
Change-Id: If225fed0cdd5aa6479a5d837c7dbdcb0a5fdd4c8
| -rw-r--r-- | libs/binder/tests/Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index f303b7c1e3..c0f7c99564 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -35,6 +35,7 @@ cc_test { name: "binderDriverInterfaceTest_IPC_32", defaults: ["binder_test_defaults"], srcs: ["binderDriverInterfaceTest.cpp"], + header_libs: ["libbinder_headers"], compile_multilib: "32", multilib: { lib32: { suffix: "" } }, cflags: ["-DBINDER_IPC_32BIT=1"], @@ -49,7 +50,7 @@ cc_test { cflags: ["-DBINDER_IPC_32BIT=1"], }, }, - + header_libs: ["libbinder_headers"], srcs: ["binderDriverInterfaceTest.cpp"], test_suites: ["device-tests", "vts"], } |