Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: webrtc/test/fuzzers/BUILD.gn

Issue 1841453004: RtpPacket class introduced. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: added empty lines Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { 69 webrtc_fuzzer_test("rtcp_receiver_fuzzer") {
70 sources = [ 70 sources = [
71 "rtcp_receiver_fuzzer.cc", 71 "rtcp_receiver_fuzzer.cc",
72 ] 72 ]
73 deps = [ 73 deps = [
74 "../../modules/rtp_rtcp/", 74 "../../modules/rtp_rtcp/",
75 ] 75 ]
76 } 76 }
77 77
78 webrtc_fuzzer_test("rtp_packet_fuzzer") {
79 sources = [
80 "rtp_packet_fuzzer.cc",
81 ]
82 deps = [
83 "../../modules/rtp_rtcp/",
84 ]
85 }
86
78 source_set("audio_decoder_fuzzer") { 87 source_set("audio_decoder_fuzzer") {
79 public_configs = [ "../..:common_inherited_config" ] 88 public_configs = [ "../..:common_inherited_config" ]
80 sources = [ 89 sources = [
81 "audio_decoder_fuzzer.cc", 90 "audio_decoder_fuzzer.cc",
82 "audio_decoder_fuzzer.h", 91 "audio_decoder_fuzzer.h",
83 ] 92 ]
84 } 93 }
85 94
86 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { 95 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") {
87 sources = [ 96 sources = [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 144
136 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { 145 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
137 sources = [ 146 sources = [
138 "audio_decoder_opus_redundant_fuzzer.cc", 147 "audio_decoder_opus_redundant_fuzzer.cc",
139 ] 148 ]
140 deps = [ 149 deps = [
141 ":audio_decoder_fuzzer", 150 ":audio_decoder_fuzzer",
142 "../../modules/audio_coding:webrtc_opus", 151 "../../modules/audio_coding:webrtc_opus",
143 ] 152 ]
144 } 153 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc ('k') | webrtc/test/fuzzers/rtp_packet_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698