| 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("webrtc_fuzzer.gni") | 10 import("webrtc_fuzzer.gni") |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 webrtc_fuzzer_test("rtp_packet_fuzzer") { | 78 webrtc_fuzzer_test("rtp_packet_fuzzer") { |
| 79 sources = [ | 79 sources = [ |
| 80 "rtp_packet_fuzzer.cc", | 80 "rtp_packet_fuzzer.cc", |
| 81 ] | 81 ] |
| 82 deps = [ | 82 deps = [ |
| 83 "../../modules/rtp_rtcp/", | 83 "../../modules/rtp_rtcp/", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| 86 | 86 |
| 87 webrtc_fuzzer_test("rtp_header_fuzzer") { |
| 88 sources = [ |
| 89 "rtp_header_fuzzer.cc", |
| 90 ] |
| 91 deps = [ |
| 92 "../../modules/rtp_rtcp/", |
| 93 ] |
| 94 } |
| 95 |
| 87 source_set("audio_decoder_fuzzer") { | 96 source_set("audio_decoder_fuzzer") { |
| 88 public_configs = [ "../..:common_inherited_config" ] | 97 public_configs = [ "../..:common_inherited_config" ] |
| 89 sources = [ | 98 sources = [ |
| 90 "audio_decoder_fuzzer.cc", | 99 "audio_decoder_fuzzer.cc", |
| 91 "audio_decoder_fuzzer.h", | 100 "audio_decoder_fuzzer.h", |
| 92 ] | 101 ] |
| 93 } | 102 } |
| 94 | 103 |
| 95 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 104 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
| 96 sources = [ | 105 sources = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 153 |
| 145 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { | 154 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
| 146 sources = [ | 155 sources = [ |
| 147 "audio_decoder_opus_redundant_fuzzer.cc", | 156 "audio_decoder_opus_redundant_fuzzer.cc", |
| 148 ] | 157 ] |
| 149 deps = [ | 158 deps = [ |
| 150 ":audio_decoder_fuzzer", | 159 ":audio_decoder_fuzzer", |
| 151 "../../modules/audio_coding:webrtc_opus", | 160 "../../modules/audio_coding:webrtc_opus", |
| 152 ] | 161 ] |
| 153 } | 162 } |
| OLD | NEW |