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

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

Issue 2430703002: Add fuzzer for H264 bitstream parser. (Closed)
Patch Set: Created 4 years, 2 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") { 63 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") {
64 sources = [ 64 sources = [
65 "vp8_qp_parser_fuzzer.cc", 65 "vp8_qp_parser_fuzzer.cc",
66 ] 66 ]
67 deps = [ 67 deps = [
68 "../../modules/video_coding/", 68 "../../modules/video_coding/",
69 ] 69 ]
70 } 70 }
71 71
72 webrtc_fuzzer_test("h264_bitstream_parser_fuzzer") {
73 sources = [
74 "h264_bitstream_parser_fuzzer.cc",
75 ]
76 deps = [
77 "../../modules/rtp_rtcp",
kthelgason 2016/10/19 11:14:25 Do we need this?
pbos-webrtc 2016/10/19 21:45:23 Remnant from patch before cleanup, done.
78 "../../modules/video_coding/",
79 ]
80 }
81
72 webrtc_fuzzer_test("producer_fec_fuzzer") { 82 webrtc_fuzzer_test("producer_fec_fuzzer") {
73 sources = [ 83 sources = [
74 "producer_fec_fuzzer.cc", 84 "producer_fec_fuzzer.cc",
75 ] 85 ]
76 deps = [ 86 deps = [
77 "../../modules/rtp_rtcp/", 87 "../../modules/rtp_rtcp/",
78 ] 88 ]
79 } 89 }
80 90
81 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { 91 webrtc_fuzzer_test("rtcp_receiver_fuzzer") {
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 } 236 }
227 237
228 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { 238 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") {
229 sources = [ 239 sources = [
230 "pseudotcp_parser_fuzzer.cc", 240 "pseudotcp_parser_fuzzer.cc",
231 ] 241 ]
232 deps = [ 242 deps = [
233 "../../p2p:rtc_p2p", 243 "../../p2p:rtc_p2p",
234 ] 244 ]
235 } 245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698