diff options
author | 2017-08-18 19:14:58 +0800 | |
---|---|---|
committer | 2017-08-18 19:14:58 +0800 | |
commit | 71f6de410f183d27485775172cb00f9c9f59951c (patch) | |
tree | 33d271e937c2ffc40dbc2e5d4a0298283cd30303 | |
parent | 78bd7eb0328e5c343d7da8d4c9c1bdea769c4d01 (diff) | |
parent | 6c8cab1159aecddabfc3ae5f4175a35f1d352481 (diff) |
resolve merge conflicts of 6c8cab115 to stage-aosp-master
Test: I solemnly swear I tested this conflict resolution.
Change-Id: Ia4e5e019093b17ef407864ea97d73b1f6e613e8c
-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: [ |