diff --git a/rules/resources.bzl b/rules/resources.bzl index 18c573a7..8c9873ba 100644 --- a/rules/resources.bzl +++ b/rules/resources.bzl @@ -582,18 +582,6 @@ def _package( g3itr_manifest = manifest - if xsltproc or instrument_xslt: - g3itr_manifest = ctx.actions.declare_file( - "_migrated/" + ctx.label.name + "add_g3itr/AndroidManifest.xml", - ) - _add_g3itr( - ctx, - out_manifest = g3itr_manifest, - manifest = manifest, - xsltproc = xsltproc, - instrument_xslt = instrument_xslt, - ) - direct_resources_nodes = [] transitive_resources_nodes = [] transitive_assets = [] @@ -1499,19 +1487,6 @@ def _process_starlark( ) manifest = stamped_manifest - if instrument_xslt: - g3itr_manifest = ctx.actions.declare_file( - "_migrated/" + ctx.label.name + "_g3itr_manifest/AndroidManifest.xml", - ) - _add_g3itr( - ctx, - out_manifest = g3itr_manifest, - manifest = manifest, - xsltproc = xsltproc, - instrument_xslt = instrument_xslt, - ) - manifest = g3itr_manifest - parsed_assets = ctx.actions.declare_file( "_migrated/" + ctx.label.name + "_symbols/assets.bin", )