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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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:video_coding_utility", | 68 "../../modules/video_coding:video_coding_utility", |
69 "../../modules/video_coding/", | 69 "../../modules/video_coding/", |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
| 73 webrtc_fuzzer_test("vp9_qp_parser_fuzzer") { |
| 74 sources = [ |
| 75 "vp9_qp_parser_fuzzer.cc", |
| 76 ] |
| 77 deps = [ |
| 78 "../../modules/video_coding:video_coding_utility", |
| 79 "../../modules/video_coding/", |
| 80 ] |
| 81 } |
| 82 |
73 webrtc_fuzzer_test("h264_bitstream_parser_fuzzer") { | 83 webrtc_fuzzer_test("h264_bitstream_parser_fuzzer") { |
74 sources = [ | 84 sources = [ |
75 "h264_bitstream_parser_fuzzer.cc", | 85 "h264_bitstream_parser_fuzzer.cc", |
76 ] | 86 ] |
77 deps = [ | 87 deps = [ |
78 "../../common_video", | 88 "../../common_video", |
79 "../../modules/video_coding/", | 89 "../../modules/video_coding/", |
80 ] | 90 ] |
81 } | 91 } |
82 | 92 |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { | 351 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { |
342 sources = [ | 352 sources = [ |
343 "transport_feedback_packet_loss_tracker_fuzzer.cc", | 353 "transport_feedback_packet_loss_tracker_fuzzer.cc", |
344 ] | 354 ] |
345 deps = [ | 355 deps = [ |
346 "../../base:rtc_base_approved", | 356 "../../base:rtc_base_approved", |
347 "../../modules/rtp_rtcp", | 357 "../../modules/rtp_rtcp", |
348 "../../voice_engine", | 358 "../../voice_engine", |
349 ] | 359 ] |
350 } | 360 } |
OLD | NEW |