diff options
| author | 2024-03-12 08:51:34 +0000 | |
|---|---|---|
| committer | 2024-03-12 08:51:34 +0000 | |
| commit | b1b78898abea4cc354e18c2f39c4a8356119d1f5 (patch) | |
| tree | 46f2be52bf5d83c85b6460419a48127bad128944 | |
| parent | 84a29f4854c69fd6d0d2cb937ea89faacaed6a11 (diff) | |
| parent | 30ad90f3ece4796c7493af9cbd6a83ab3d520d55 (diff) | |
Merge "Don't enable LTO on host" into main am: 30ad90f3ec
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2998720
Change-Id: I5bfb12245ad4b4dba7ce7c8cb724dedd7e05acdb
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | libs/binder/Android.bp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp index 84ff9d74ef..ca9b08f8ad 100644 --- a/libs/binder/Android.bp +++ b/libs/binder/Android.bp @@ -159,6 +159,11 @@ cc_defaults { "UtilsHost.cpp", ], }, + android: { + lto: { + thin: true, + }, + }, }, aidl: { @@ -219,9 +224,6 @@ cc_defaults { "-performance-move-const-arg", // b/273486801 "portability*", ], - lto: { - thin: true, - }, } cc_library_headers { |