diff options
author | satayev <satayev@google.com> | 2020-05-21 14:16:20 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2020-05-21 14:16:20 +0000 |
commit | 06a93cbca2ebc32186fc73ec1dcafe4c36babaf4 (patch) | |
tree | c30221670fdaf3033b65644a924ac5dd090574df /tools/hiddenapi/generate_hiddenapi_lists.py | |
parent | a79c963fa99b58a265e6fb26c60e827aa6aec822 (diff) | |
parent | dbf501e0eb654911c6c83c7a574e9cc880df44b6 (diff) |
Merge "Add support for greylist-max-r signatures." am: dbf501e0eb
Change-Id: I40f0770041db4fae0e560a335f58ff2042b35299
Diffstat (limited to 'tools/hiddenapi/generate_hiddenapi_lists.py')
-rwxr-xr-x | tools/hiddenapi/generate_hiddenapi_lists.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/hiddenapi/generate_hiddenapi_lists.py b/tools/hiddenapi/generate_hiddenapi_lists.py index 0b2077d9bba0..de6b4785ec37 100755 --- a/tools/hiddenapi/generate_hiddenapi_lists.py +++ b/tools/hiddenapi/generate_hiddenapi_lists.py @@ -18,10 +18,10 @@ Generate API lists for non-SDK API enforcement. """ import argparse from collections import defaultdict +import functools import os -import sys import re -import functools +import sys # Names of flags recognized by the `hiddenapi` tool. FLAG_WHITELIST = "whitelist" @@ -30,6 +30,7 @@ FLAG_BLACKLIST = "blacklist" FLAG_GREYLIST_MAX_O = "greylist-max-o" FLAG_GREYLIST_MAX_P = "greylist-max-p" FLAG_GREYLIST_MAX_Q = "greylist-max-q" +FLAG_GREYLIST_MAX_R = "greylist-max-r" FLAG_CORE_PLATFORM_API = "core-platform-api" FLAG_PUBLIC_API = "public-api" FLAG_SYSTEM_API = "system-api" @@ -43,13 +44,14 @@ FLAGS_API_LIST = [ FLAG_GREYLIST_MAX_O, FLAG_GREYLIST_MAX_P, FLAG_GREYLIST_MAX_Q, + FLAG_GREYLIST_MAX_R, ] ALL_FLAGS = FLAGS_API_LIST + [ FLAG_CORE_PLATFORM_API, FLAG_PUBLIC_API, FLAG_SYSTEM_API, FLAG_TEST_API, - ] +] FLAGS_API_LIST_SET = set(FLAGS_API_LIST) ALL_FLAGS_SET = set(ALL_FLAGS) |