diff options
Diffstat (limited to 'perfetto_hprof/Android.bp')
| -rw-r--r-- | perfetto_hprof/Android.bp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perfetto_hprof/Android.bp b/perfetto_hprof/Android.bp index a81a4fa5e0..8cfc7d4bea 100644 --- a/perfetto_hprof/Android.bp +++ b/perfetto_hprof/Android.bp @@ -50,6 +50,7 @@ cc_defaults { compile_multilib: "both", shared_libs: [ + "libartpalette", "libbase", "liblog", ], @@ -68,6 +69,12 @@ cc_defaults { header_libs: [ "libnativehelper_header_only", ], + // FIXME: Workaround LTO build breakage + // http://b/241700157 + lto: { + never: true, + }, + } art_cc_library { @@ -81,6 +88,7 @@ art_cc_library { apex_available: [ "com.android.art", "com.android.art.debug", + "test_broken_com.android.art", ], } |