Skip to content

Commit ca6df53

Browse files
rjobredeaux3copybara-github
authored andcommitted
Delete unused ACL in_app_installation_snapshot
PiperOrigin-RevId: 582516344 Change-Id: Id02d36ae76914da78b09e006f7ff8774ee5ba71f
1 parent d862957 commit ca6df53

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

rules/acls.bzl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ load("//rules/acls:aar_import_deps_checker.bzl", "AAR_IMPORT_DEPS_CHECKER_FALLBA
3131
load("//rules/acls:aar_import_explicit_exports_manifest.bzl", "AAR_IMPORT_EXPLICIT_EXPORTS_MANIFEST")
3232
load("//rules/acls:aar_import_exports_r_java.bzl", "AAR_IMPORT_EXPORTS_R_JAVA")
3333
load("//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")
3534
load("//rules/acls:allow_resource_conflicts.bzl", "ALLOW_RESOURCE_CONFLICTS")
3635
load("//rules/acls:android_apk_to_bundle_features_lockdown.bzl", "ANDROID_APK_TO_BUNDLE_FEATURES")
3736
load("//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):
154153
def _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-
160156
def _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)
274270
ANDROID_BUILD_STAMPING_FALLBACK_DICT = make_dict(ANDROID_BUILD_STAMPING_FALLBACK)
275271
ANDROID_TEST_LOCKDOWN_GENERATOR_FUNCTIONS_DICT = make_dict(ANDROID_TEST_LOCKDOWN_GENERATOR_FUNCTIONS)
276272
ANDROID_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)
279273
B122039567_DICT = make_dict(B122039567)
280274
CAN_USE_DEX2OAT_OPTIONS_DICT = make_dict(CAN_USE_DEX2OAT_OPTIONS)
281275
FIX_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

Comments
 (0)