diff options
author | 2024-04-18 12:32:55 +0530 | |
---|---|---|
committer | 2024-04-29 08:57:19 +0000 | |
commit | a79348a41b04f0351dc2f5c683249395e1eb850f (patch) | |
tree | 9276397ea2abd9ff44a1023a3c0c6faef1794c9f | |
parent | 412cb16d547456efc2bc75b5b154448e3fa9a132 (diff) |
Updated fuzz_config in Android.bp file
Added new fields in fuzz_config like - componentid,
description, vector, service_privilege, users, fuzzed_code_usage, etc.
Bug: 306435930
Test: Build resourcefile_fuzzer
Change-Id: I8ba363d214ab0b2e663ded2a2d24745faf5b909f
-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", + }, } |