| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build_overrides/webrtc.gni") | 10 import("//build_overrides/webrtc.gni") |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 webrtc_fuzzer_test("rtp_header_fuzzer") { | 103 webrtc_fuzzer_test("rtp_header_fuzzer") { |
| 104 sources = [ | 104 sources = [ |
| 105 "rtp_header_fuzzer.cc", | 105 "rtp_header_fuzzer.cc", |
| 106 ] | 106 ] |
| 107 deps = [ | 107 deps = [ |
| 108 "../../modules/rtp_rtcp/", | 108 "../../modules/rtp_rtcp/", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| 112 webrtc_fuzzer_test("congestion_controller_feedback_fuzzer") { |
| 113 sources = [ |
| 114 "congestion_controller_feedback_fuzzer.cc", |
| 115 ] |
| 116 deps = [ |
| 117 "../../modules/congestion_controller/", |
| 118 ] |
| 119 } |
| 120 |
| 112 source_set("audio_decoder_fuzzer") { | 121 source_set("audio_decoder_fuzzer") { |
| 113 public_configs = [ "../..:common_inherited_config" ] | 122 public_configs = [ "../..:common_inherited_config" ] |
| 114 sources = [ | 123 sources = [ |
| 115 "audio_decoder_fuzzer.cc", | 124 "audio_decoder_fuzzer.cc", |
| 116 "audio_decoder_fuzzer.h", | 125 "audio_decoder_fuzzer.h", |
| 117 ] | 126 ] |
| 118 } | 127 } |
| 119 | 128 |
| 120 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 129 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
| 121 sources = [ | 130 sources = [ |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 233 |
| 225 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 234 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
| 226 sources = [ | 235 sources = [ |
| 227 "pseudotcp_parser_fuzzer.cc", | 236 "pseudotcp_parser_fuzzer.cc", |
| 228 ] | 237 ] |
| 229 deps = [ | 238 deps = [ |
| 230 "../../p2p:rtc_p2p", | 239 "../../p2p:rtc_p2p", |
| 231 ] | 240 ] |
| 232 } | 241 } |
| 233 } | 242 } |
| OLD | NEW |