@@ -31,7 +31,6 @@ load("//rules/acls:aar_import_deps_checker.bzl", "AAR_IMPORT_DEPS_CHECKER_FALLBA
3131load ("//rules/acls:aar_import_explicit_exports_manifest.bzl" , "AAR_IMPORT_EXPLICIT_EXPORTS_MANIFEST" )
3232load ("//rules/acls:aar_import_exports_r_java.bzl" , "AAR_IMPORT_EXPORTS_R_JAVA" )
3333load ("//rules/acls:aar_propagate_resources.bzl" , "AAR_PROPAGATE_RESOURCES_FALLBACK" , "AAR_PROPAGATE_RESOURCES_ROLLOUT" )
34- load ("//rules/acls:ait_install_snapshots.bzl" , "APP_INSTALLATION_SNAPSHOT" , "APP_INSTALLATION_SNAPSHOT_FALLBACK" )
3534load ("//rules/acls:allow_resource_conflicts.bzl" , "ALLOW_RESOURCE_CONFLICTS" )
3635load ("//rules/acls:android_apk_to_bundle_features_lockdown.bzl" , "ANDROID_APK_TO_BUNDLE_FEATURES" )
3736load ("//rules/acls:android_application_with_sandboxed_sdks_allowlist.bzl" , "ANDROID_APPLICATION_WITH_SANDBOXED_SDKS_ALLOWLIST" )
@@ -154,9 +153,6 @@ def _in_android_library_starlark_resource_outputs_rollout(fqn):
154153def _in_android_library_use_aosp_aidl_compiler_allowlist (fqn ):
155154 return matches (fqn , ANDROID_LIBRARY_USE_AOSP_AIDL_COMPILER_ALLOWLIST_DICT )
156155
157- def _in_app_installation_snapshot (fqn ):
158- return not matches (fqn , APP_INSTALLATION_SNAPSHOT_FALLBACK_DICT ) and matches (fqn , APP_INSTALLATION_SNAPSHOT_DICT )
159-
160156def _in_databinding_allowed (fqn ):
161157 return not matches (fqn , DATABINDING_DISALLOWED_DICT ) and matches (fqn , DATABINDING_ALLOWED_DICT )
162158
@@ -274,8 +270,6 @@ ANDROID_BUILD_STAMPING_ROLLOUT_DICT = make_dict(ANDROID_BUILD_STAMPING_ROLLOUT)
274270ANDROID_BUILD_STAMPING_FALLBACK_DICT = make_dict (ANDROID_BUILD_STAMPING_FALLBACK )
275271ANDROID_TEST_LOCKDOWN_GENERATOR_FUNCTIONS_DICT = make_dict (ANDROID_TEST_LOCKDOWN_GENERATOR_FUNCTIONS )
276272ANDROID_TEST_LOCKDOWN_TARGETS_DICT = make_dict (ANDROID_TEST_LOCKDOWN_TARGETS )
277- APP_INSTALLATION_SNAPSHOT_DICT = make_dict (APP_INSTALLATION_SNAPSHOT )
278- APP_INSTALLATION_SNAPSHOT_FALLBACK_DICT = make_dict (APP_INSTALLATION_SNAPSHOT_FALLBACK )
279273B122039567_DICT = make_dict (B122039567 )
280274CAN_USE_DEX2OAT_OPTIONS_DICT = make_dict (CAN_USE_DEX2OAT_OPTIONS )
281275FIX_EXPORT_EXPORTING_FALLBACK_DICT = make_dict (FIX_EXPORT_EXPORTING_FALLBACK )
@@ -383,7 +377,6 @@ acls = struct(
383377 in_lint_registry_rollout = _in_lint_registry_rollout ,
384378 in_android_build_stamping_rollout = _in_android_build_stamping_rollout ,
385379 in_android_test_lockdown_allowlist = _in_android_test_lockdown_allowlist ,
386- in_app_installation_snapshot = _in_app_installation_snapshot ,
387380 in_databinding_allowed = _in_databinding_allowed ,
388381 in_dex2oat_opts = _in_dex2oat_opts ,
389382 in_fix_export_exporting_rollout = _in_fix_export_exporting_rollout ,
0 commit comments