Skip to content

Commit ec3cd1a

Browse files
rjobredeaux3copybara-github
authored andcommitted
Delete unused ACL in_host_dex2oat_rollout
PiperOrigin-RevId: 581960661 Change-Id: Icde923d67b1e6b071c6162933017225c7b2ee9e2
1 parent 526d5be commit ec3cd1a

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
@@ -66,7 +66,6 @@ load("//rules/acls:baseline_profiles_rollout.bzl", "BASELINE_PROFILES_ROLLOUT")
6666
load("//rules/acls:databinding.bzl", "DATABINDING_ALLOWED", "DATABINDING_DISALLOWED")
6767
load("//rules/acls:dex2oat_opts.bzl", "CAN_USE_DEX2OAT_OPTIONS")
6868
load("//rules/acls:fix_export_exporting_rollout.bzl", "FIX_EXPORT_EXPORTING_FALLBACK", "FIX_EXPORT_EXPORTING_ROLLOUT")
69-
load("//rules/acls:host_dex2oat_rollout.bzl", "AIT_USE_HOST_DEX2OAT_ROLLOUT", "AIT_USE_HOST_DEX2OAT_ROLLOUT_FALLBACK")
7069
load("//rules/acls:install_apps_in_data.bzl", "INSTALL_APPS_IN_DATA")
7170
load("//rules/acls:lint_registry_rollout.bzl", "LINT_REGISTRY_FALLBACK", "LINT_REGISTRY_ROLLOUT")
7271
load("//rules/acls:local_test_multi_proto.bzl", "LOCAL_TEST_MULTI_PROTO_PKG")
@@ -166,9 +165,6 @@ def _in_dex2oat_opts(fqn):
166165
def _in_fix_export_exporting_rollout(fqn):
167166
return not matches(fqn, FIX_EXPORT_EXPORTING_FALLBACK_DICT) and matches(fqn, FIX_EXPORT_EXPORTING_ROLLOUT_DICT)
168167

169-
def _in_host_dex2oat_rollout(fqn):
170-
return not matches(fqn, AIT_USE_HOST_DEX2OAT_ROLLOUT_FALLBACK_DICT) and matches(fqn, AIT_USE_HOST_DEX2OAT_ROLLOUT_DICT)
171-
172168
def _in_install_apps_in_data(fqn):
173169
return matches(fqn, AIT_INSTALL_APPS_IN_DATA_DICT)
174170

@@ -289,8 +285,6 @@ B122039567_DICT = make_dict(B122039567)
289285
CAN_USE_DEX2OAT_OPTIONS_DICT = make_dict(CAN_USE_DEX2OAT_OPTIONS)
290286
FIX_EXPORT_EXPORTING_FALLBACK_DICT = make_dict(FIX_EXPORT_EXPORTING_FALLBACK)
291287
FIX_EXPORT_EXPORTING_ROLLOUT_DICT = make_dict(FIX_EXPORT_EXPORTING_ROLLOUT)
292-
AIT_USE_HOST_DEX2OAT_ROLLOUT_DICT = make_dict(AIT_USE_HOST_DEX2OAT_ROLLOUT)
293-
AIT_USE_HOST_DEX2OAT_ROLLOUT_FALLBACK_DICT = make_dict(AIT_USE_HOST_DEX2OAT_ROLLOUT_FALLBACK)
294288
AIT_INSTALL_APPS_IN_DATA_DICT = make_dict(INSTALL_APPS_IN_DATA)
295289
LOCAL_TEST_MULTI_PROTO_PKG_DICT = make_dict(LOCAL_TEST_MULTI_PROTO_PKG)
296290
LOCAL_TEST_FALLBACK_DICT = make_dict(LOCAL_TEST_FALLBACK)
@@ -401,7 +395,6 @@ acls = struct(
401395
in_databinding_allowed = _in_databinding_allowed,
402396
in_dex2oat_opts = _in_dex2oat_opts,
403397
in_fix_export_exporting_rollout = _in_fix_export_exporting_rollout,
404-
in_host_dex2oat_rollout = _in_host_dex2oat_rollout,
405398
in_install_apps_in_data = _in_install_apps_in_data,
406399
in_local_test_multi_proto = _in_local_test_multi_proto,
407400
in_local_test_rollout = _in_local_test_rollout,

0 commit comments

Comments
 (0)