diff options
-rw-r--r-- | libdexfile/Android.bp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/libdexfile/Android.bp b/libdexfile/Android.bp index 68503276cb..84e93e49ef 100644 --- a/libdexfile/Android.bp +++ b/libdexfile/Android.bp @@ -270,11 +270,18 @@ art_cc_library { }, apex_available: [ "com.android.art.debug", - // TODO(b/183882457): This lib doesn't go into com.android.art, but + // TODO(b/183882457): This lib doesn't go into the following APEXes, but // apex_available lists need to be the same for internal libs to avoid - // stubs, and libartd depends on this. + // stubs, and libartd and libprofiled depend on this. "com.android.art", + "test_broken_com.android.art", ], + + // libdexfiled.so implements the libdexfile.so API in com.android.art.debug. + stubs: { + symbol_file: "libdexfile.map.txt", + versions: ["1"], + }, } art_cc_defaults { |