diff options
author | 2022-05-04 12:28:59 +0000 | |
---|---|---|
committer | 2022-05-06 08:59:39 +0000 | |
commit | 74cead891eef1210b546808487c47e697d6151cf (patch) | |
tree | 14087ecb2ad968bafe4c720d05102b8cf1176dc0 | |
parent | 958c957696e1b1570c9f5feba705577baaa75c54 (diff) |
Add support to max-target-s to generate_hiddenapi_lists
Test: make
Bug: 169748350
Change-Id: I2662a643a190ed531d85755d01e1be9c49c02e25
Merged-In: I2662a643a190ed531d85755d01e1be9c49c02e25
-rwxr-xr-x | scripts/hiddenapi/generate_hiddenapi_lists.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/hiddenapi/generate_hiddenapi_lists.py b/scripts/hiddenapi/generate_hiddenapi_lists.py index 35e0948f0..6546c7f80 100755 --- a/scripts/hiddenapi/generate_hiddenapi_lists.py +++ b/scripts/hiddenapi/generate_hiddenapi_lists.py @@ -27,6 +27,7 @@ FLAG_MAX_TARGET_O = 'max-target-o' FLAG_MAX_TARGET_P = 'max-target-p' FLAG_MAX_TARGET_Q = 'max-target-q' FLAG_MAX_TARGET_R = 'max-target-r' +FLAG_MAX_TARGET_S = 'max-target-s' FLAG_CORE_PLATFORM_API = 'core-platform-api' FLAG_PUBLIC_API = 'public-api' FLAG_SYSTEM_API = 'system-api' @@ -41,6 +42,7 @@ FLAGS_API_LIST = [ FLAG_MAX_TARGET_P, FLAG_MAX_TARGET_Q, FLAG_MAX_TARGET_R, + FLAG_MAX_TARGET_S, ] ALL_FLAGS = FLAGS_API_LIST + [ FLAG_CORE_PLATFORM_API, |