This reverts commit d90a7e842437f5760a34bbfa283b3c4182963889. Reason for revert: Fails on Win ASan bots. https://logs.chromium.org/v/?s=chromium%2Fbb%2Fclient.webrtc%2FWin32_ASan%2F4002%2F%2B%2Frecipes%2Fsteps%2Fvideo_engine_tests%2F0%2Fstdout Original change's description: > Add multiplex case to webrtc_perf_tests > > This CL adds two new tests to perf, covering I420 and I420A input to multiplex > codec. In order to have the correct input, it adds I420A case to > SquareGenerator and corresponding PSNR and SSIM calculations. > > Bug: webrtc:7671 > Change-Id: I9735d725bbfba457e804e29907cee55406ae5c8d > Reviewed-on: https://webrtc-review.googlesource.com/52180 > Reviewed-by: Patrik Höglund <phoglund@webrtc.org> > Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org> > Reviewed-by: Erik Språng <sprang@webrtc.org> > Commit-Queue: Emircan Uysaler <emircan@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#22330} TBR=phoglund@webrtc.org,sprang@webrtc.org,niklas.enbom@webrtc.org,qiangchen@chromium.org,emircan@webrtc.org Change-Id: If6bfdd42556517db0dd6bda01f5d3d901ff56b0c No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:7671 Reviewed-on: https://webrtc-review.googlesource.com/60560 Reviewed-by: Emircan Uysaler <emircan@webrtc.org> Commit-Queue: Emircan Uysaler <emircan@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22332}
43 lines
1012 B
Python
43 lines
1012 B
Python
include_rules = [
|
|
"+third_party/libjpeg",
|
|
"+third_party/libjpeg_turbo",
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media/base",
|
|
"+modules/audio_coding",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/video_capture",
|
|
"+modules/video_coding",
|
|
"+sdk",
|
|
"+system_wrappers",
|
|
"+third_party/libyuv",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"gmock\.h": [
|
|
"+testing/gmock/include/gmock",
|
|
],
|
|
"gtest\.h": [
|
|
"+testing/gtest/include/gtest",
|
|
],
|
|
".*congestion_controller_feedback_fuzzer\.cc": [
|
|
"+modules/congestion_controller/include/receive_side_congestion_controller.h",
|
|
"+modules/pacing/packet_router.h",
|
|
"+modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h",
|
|
],
|
|
".*pseudotcp_parser_fuzzer\.cc": [
|
|
"+p2p/base/pseudotcp.h",
|
|
],
|
|
".*stun_parser_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*stun_validator_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
}
|