diff options
author | David Brazdil <dbrazdil@google.com> | 2018-11-01 09:54:25 +0000 |
---|---|---|
committer | David Brazdil <dbrazdil@google.com> | 2018-11-29 15:43:02 +0000 |
commit | 5cd148fc7ae213ceda868c22ee5c573b5b1a47c9 (patch) | |
tree | b10725627f827ff755006452fb828ff6b7ff5f52 /tools/hiddenapi/generate_hiddenapi_lists.py | |
parent | 89bf0f28bf8dfe728083913f641202f103af9bf6 (diff) |
hiddenapi: Add constants for 'greylist-max-p'
New category of hidden API has been created. Update the script
generate_hiddenapi_lists.py with the new flag name.
Test: m, phone boots
Change-Id: I79e5478678880939e20e500cb8dad9b2a56fc84f
Diffstat (limited to 'tools/hiddenapi/generate_hiddenapi_lists.py')
-rwxr-xr-x | tools/hiddenapi/generate_hiddenapi_lists.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/hiddenapi/generate_hiddenapi_lists.py b/tools/hiddenapi/generate_hiddenapi_lists.py index 2f1e53ca5065..01728fa1a0db 100755 --- a/tools/hiddenapi/generate_hiddenapi_lists.py +++ b/tools/hiddenapi/generate_hiddenapi_lists.py @@ -26,6 +26,7 @@ FLAG_WHITELIST = "whitelist" FLAG_GREYLIST = "greylist" FLAG_BLACKLIST = "blacklist" FLAG_GREYLIST_MAX_O = "greylist-max-o" +FLAG_GREYLIST_MAX_P = "greylist-max-p" # List of all known flags. FLAGS = [ @@ -33,6 +34,7 @@ FLAGS = [ FLAG_GREYLIST, FLAG_BLACKLIST, FLAG_GREYLIST_MAX_O, + FLAG_GREYLIST_MAX_P, ] FLAGS_SET = set(FLAGS) |