Chromium Code Reviews| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |