diff options
| author | 2017-07-19 03:54:04 +0000 | |
|---|---|---|
| committer | 2017-07-19 03:54:04 +0000 | |
| commit | 3274de62d40be96fc636f94e4a2e91778b7f003a (patch) | |
| tree | 8a2bd12e49e86f57733434b42ce44701e5534e72 | |
| parent | 37146b7b02b3afb3f11ad4b405f362d4b88782fb (diff) | |
| parent | 75be4a10008a846c74bc30652584b280669c3b85 (diff) | |
Add binderLibTest_IPC_32
am: 75be4a1000
Change-Id: I47b598881baf7cb4520b0fad05a68ec741201a27
| -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: [ |