Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5255c971 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: save space for optional config options.

Previously, we required user and userdebug vesions of this
library to be the same, but now we can save some space.

Bug: N/A
Test: Android's SDK finalization script passes
Change-Id: I6a5f2a04ea8bf4ff2253ad052ea757ce2031a27c
parent a06d5455
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -58,15 +58,15 @@ static_assert(sizeof(BBinder) == 20);

// global b/c b/230079120 - consistent symbol table
#ifdef BINDER_RPC_DEV_SERVERS
bool kEnableRpcDevServers = true;
constexpr bool kEnableRpcDevServers = true;
#else
bool kEnableRpcDevServers = false;
constexpr bool kEnableRpcDevServers = false;
#endif

#ifdef BINDER_ENABLE_RECORDING
bool kEnableRecording = true;
constexpr bool kEnableRecording = true;
#else
bool kEnableRecording = false;
constexpr bool kEnableRecording = false;
#endif

// Log any reply transactions for which the data exceeds this size