diff options
-rw-r--r-- | build/sdk/Android.bp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build/sdk/Android.bp b/build/sdk/Android.bp index 9a866b95e3..63eb5cd2b3 100644 --- a/build/sdk/Android.bp +++ b/build/sdk/Android.bp @@ -26,6 +26,20 @@ sdk { ], } +/* + +Temporarily comment out art-module-host-exports + +The sdk/module_exports do not support building a single snapshot for +multiple os types. Instead it builds a separate snapshot per os type +which would conflict when unpacked. Attempting to fix that issue is +complicated by the fact that there are presubmit builds which rely +on that behavior for handling the art-module-host-exports. + +The quickest and safest way to deal with that is to temporarily +comment out the broken module, fix the build issues and then +uncomment it. + // Exported host tools and libraries. module_exports { name: "art-module-host-exports", @@ -51,6 +65,7 @@ module_exports { "dex2oatd", ], } +*/ // Exported tests and supporting libraries module_exports { |