diff options
| author | 2024-05-14 04:31:30 +0000 | |
|---|---|---|
| committer | 2024-05-14 04:31:30 +0000 | |
| commit | 21ed6fec6f6588346b865d1bb7849bc34957be9e (patch) | |
| tree | 20b5a800521033b15d8cce7ef29e7775923486bc | |
| parent | 2536ea06a426182c51aa31c78091aa24dbad183a (diff) | |
| parent | a79348a41b04f0351dc2f5c683249395e1eb850f (diff) | |
Merge "Updated fuzz_config in Android.bp file" into main
| -rw-r--r-- | libs/androidfw/fuzz/resourcefile_fuzzer/Android.bp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libs/androidfw/fuzz/resourcefile_fuzzer/Android.bp b/libs/androidfw/fuzz/resourcefile_fuzzer/Android.bp index b511244c4a30..619658923865 100644 --- a/libs/androidfw/fuzz/resourcefile_fuzzer/Android.bp +++ b/libs/androidfw/fuzz/resourcefile_fuzzer/Android.bp @@ -19,6 +19,7 @@ package { // to get the below license kinds: // SPDX-license-identifier-Apache-2.0 default_applicable_licenses: ["frameworks_base_libs_androidfw_license"], + default_team: "trendy_team_android_resources", } cc_fuzz { @@ -31,7 +32,7 @@ cc_fuzz { static_libs: ["libgmock"], target: { android: { - shared_libs:[ + shared_libs: [ "libandroidfw", "libbase", "libcutils", @@ -52,4 +53,15 @@ cc_fuzz { ], }, }, + fuzz_config: { + cc: [ + "android-resources@google.com", + ], + componentid: 568761, + description: "The fuzzer targets the APIs of libandroidfw", + vector: "local_no_privileges_required", + service_privilege: "privileged", + users: "multi_user", + fuzzed_code_usage: "shipped", + }, } |