diff options
| author | 2022-08-22 19:15:51 +0000 | |
|---|---|---|
| committer | 2022-08-22 19:15:51 +0000 | |
| commit | be6aec41efa563edc40b9bf3cf1fd555fcec14b4 (patch) | |
| tree | 209d7e262934e16aa84eaf8e208f7b65b8687e87 /libs | |
| parent | 660cd620b0e8502e2348fb3ad0df334e9f14ac8c (diff) | |
| parent | f00fabbdd068bac382772aea21fb160a25046bb3 (diff) | |
Merge "libbinder : Adding default config for service fuzzer"
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/binder/tests/Android.bp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index d7c6d4966e..1babfd5813 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -684,3 +684,37 @@ cc_test { ], test_suites: ["general-tests"], } + +cc_defaults { + name: "service_fuzzer_defaults", + static_libs: [ + "libbase", + "libbinder_random_parcel", + "libcutils", + ], + target: { + android: { + shared_libs: [ + "libbinder_ndk", + "libbinder", + "libutils", + ], + }, + host: { + static_libs: [ + "libbinder_ndk", + "libbinder", + "libutils", + ], + }, + darwin: { + enabled: false, + }, + }, + fuzz_config: { + cc: [ + "smoreland@google.com", + "waghpawan@google.com", + ], + }, +} |