diff options
| author | 2018-01-23 22:18:58 +0000 | |
|---|---|---|
| committer | 2018-01-23 22:18:58 +0000 | |
| commit | f9439589f40d29b5a8e0935783f5e3508f68e413 (patch) | |
| tree | 5aacf7d5bef3b669bb9be8256d7b8be57cc21244 | |
| parent | 9d332a7110a0f2f9d431b30e4c69b0cab5c7e942 (diff) | |
| parent | 16b0c242aa54d560002b9389f4b66b198610dcdd (diff) | |
Merge "Add binderLibTest_IPC_32" into oreo-vts-dev
| -rw-r--r-- | libs/binder/tests/Android.bp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index bef9505821..3071408540 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -42,6 +42,23 @@ cc_test { } cc_test { + name: "binderLibTest_IPC_32", + srcs: ["binderLibTest.cpp"], + shared_libs: [ + "libbinder", + "libutils", + ], + compile_multilib: "32", + cflags: ["-DBINDER_IPC_32BIT=1"], +} + +cc_test { + product_variables: { + binder32bit: { + cflags: ["-DBINDER_IPC_32BIT=1"], + }, + }, + name: "binderLibTest", srcs: ["binderLibTest.cpp"], shared_libs: [ |