android_system_core/logd/fuzz/Android.bp
Tom Cherry f2774a04ca logd: add fuzzer for SerializedLogBuffer and other improvements
1) Add fuzzer for SerializedLogBuffer
2) Enable fuzzing on host
3) Read logs after writing them
4) Silence log tags error on host

Test: run these fuzzers
Change-Id: Id5f0394546ecbccf5281e3d8855853be90dee3f0
2020-06-23 11:37:49 -07:00

47 lines
1.2 KiB
Text

/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
cc_defaults {
name: "log_fuzzer_defaults",
static_libs: [
"libbase",
"libcutils",
"libselinux",
"liblog",
"liblogd",
"libcutils",
"libz",
"libzstd",
],
cflags: ["-Wextra"],
host_supported: true,
}
cc_fuzz {
name: "log_buffer_log_fuzzer",
defaults: ["log_fuzzer_defaults"],
srcs: [
"log_buffer_log_fuzzer.cpp",
],
}
cc_fuzz {
name: "serialized_log_buffer_fuzzer",
defaults: ["log_fuzzer_defaults"],
srcs: [
"serialized_log_buffer_fuzzer.cpp",
],
}