@@ -66,7 +66,6 @@ load("//rules/acls:baseline_profiles_rollout.bzl", "BASELINE_PROFILES_ROLLOUT")
6666load ("//rules/acls:databinding.bzl" , "DATABINDING_ALLOWED" , "DATABINDING_DISALLOWED" )
6767load ("//rules/acls:dex2oat_opts.bzl" , "CAN_USE_DEX2OAT_OPTIONS" )
6868load ("//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" )
7069load ("//rules/acls:install_apps_in_data.bzl" , "INSTALL_APPS_IN_DATA" )
7170load ("//rules/acls:lint_registry_rollout.bzl" , "LINT_REGISTRY_FALLBACK" , "LINT_REGISTRY_ROLLOUT" )
7271load ("//rules/acls:local_test_multi_proto.bzl" , "LOCAL_TEST_MULTI_PROTO_PKG" )
@@ -166,9 +165,6 @@ def _in_dex2oat_opts(fqn):
166165def _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-
172168def _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)
289285CAN_USE_DEX2OAT_OPTIONS_DICT = make_dict (CAN_USE_DEX2OAT_OPTIONS )
290286FIX_EXPORT_EXPORTING_FALLBACK_DICT = make_dict (FIX_EXPORT_EXPORTING_FALLBACK )
291287FIX_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 )
294288AIT_INSTALL_APPS_IN_DATA_DICT = make_dict (INSTALL_APPS_IN_DATA )
295289LOCAL_TEST_MULTI_PROTO_PKG_DICT = make_dict (LOCAL_TEST_MULTI_PROTO_PKG )
296290LOCAL_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