| 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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") { | 80 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") { |
| 81 sources = [ | 81 sources = [ |
| 82 "ulpfec_header_reader_fuzzer.cc", | 82 "ulpfec_header_reader_fuzzer.cc", |
| 83 ] | 83 ] |
| 84 deps = [ | 84 deps = [ |
| 85 "../../modules/rtp_rtcp/", | 85 "../../modules/rtp_rtcp/", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 webrtc_fuzzer_test("producer_fec_fuzzer") { | 89 webrtc_fuzzer_test("ulpfec_generator_fuzzer") { |
| 90 sources = [ | 90 sources = [ |
| 91 "producer_fec_fuzzer.cc", | 91 "ulpfec_generator_fuzzer.cc", |
| 92 ] | 92 ] |
| 93 deps = [ | 93 deps = [ |
| 94 "../../modules/rtp_rtcp/", | 94 "../../modules/rtp_rtcp/", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { | 98 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { |
| 99 sources = [ | 99 sources = [ |
| 100 "flexfec_receiver_fuzzer.cc", | 100 "flexfec_receiver_fuzzer.cc", |
| 101 ] | 101 ] |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 } | 265 } |
| 266 | 266 |
| 267 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 267 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
| 268 sources = [ | 268 sources = [ |
| 269 "pseudotcp_parser_fuzzer.cc", | 269 "pseudotcp_parser_fuzzer.cc", |
| 270 ] | 270 ] |
| 271 deps = [ | 271 deps = [ |
| 272 "../../p2p:rtc_p2p", | 272 "../../p2p:rtc_p2p", |
| 273 ] | 273 ] |
| 274 } | 274 } |
| OLD | NEW |