| 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/config/features.gni") | 10 import("//build/config/features.gni") |
| 10 import("//build_overrides/webrtc.gni") | 11 import("//build_overrides/webrtc.gni") |
| 11 import("//testing/libfuzzer/fuzzer_test.gni") | 12 import("//testing/libfuzzer/fuzzer_test.gni") |
| 12 import("//testing/test.gni") | |
| 13 | 13 |
| 14 static_library("webrtc_fuzzer_main") { | 14 rtc_static_library("webrtc_fuzzer_main") { |
| 15 public_configs = [ "../..:common_inherited_config" ] | 15 public_configs = [ "../..:common_inherited_config" ] |
| 16 sources = [ | 16 sources = [ |
| 17 "webrtc_fuzzer_main.cc", | 17 "webrtc_fuzzer_main.cc", |
| 18 ] | 18 ] |
| 19 deps = [ | 19 deps = [ |
| 20 "../../system_wrappers:field_trial_default", | 20 "../../system_wrappers:field_trial_default", |
| 21 "../../system_wrappers:metrics_default", | 21 "../../system_wrappers:metrics_default", |
| 22 "//testing/libfuzzer:libfuzzer_main", | 22 "//testing/libfuzzer:libfuzzer_main", |
| 23 ] | 23 ] |
| 24 } | 24 } |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 webrtc_fuzzer_test("congestion_controller_feedback_fuzzer") { | 112 webrtc_fuzzer_test("congestion_controller_feedback_fuzzer") { |
| 113 sources = [ | 113 sources = [ |
| 114 "congestion_controller_feedback_fuzzer.cc", | 114 "congestion_controller_feedback_fuzzer.cc", |
| 115 ] | 115 ] |
| 116 deps = [ | 116 deps = [ |
| 117 "../../:rtc_event_log", | 117 "../../:rtc_event_log", |
| 118 "../../modules/congestion_controller/", | 118 "../../modules/congestion_controller/", |
| 119 ] | 119 ] |
| 120 } | 120 } |
| 121 | 121 |
| 122 source_set("audio_decoder_fuzzer") { | 122 rtc_source_set("audio_decoder_fuzzer") { |
| 123 public_configs = [ "../..:common_inherited_config" ] | 123 public_configs = [ "../..:common_inherited_config" ] |
| 124 sources = [ | 124 sources = [ |
| 125 "audio_decoder_fuzzer.cc", | 125 "audio_decoder_fuzzer.cc", |
| 126 "audio_decoder_fuzzer.h", | 126 "audio_decoder_fuzzer.h", |
| 127 ] | 127 ] |
| 128 } | 128 } |
| 129 | 129 |
| 130 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 130 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
| 131 sources = [ | 131 sources = [ |
| 132 "audio_decoder_ilbc_fuzzer.cc", | 132 "audio_decoder_ilbc_fuzzer.cc", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 234 |
| 235 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 235 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
| 236 sources = [ | 236 sources = [ |
| 237 "pseudotcp_parser_fuzzer.cc", | 237 "pseudotcp_parser_fuzzer.cc", |
| 238 ] | 238 ] |
| 239 deps = [ | 239 deps = [ |
| 240 "../../p2p:rtc_p2p", | 240 "../../p2p:rtc_p2p", |
| 241 ] | 241 ] |
| 242 } | 242 } |
| 243 } | 243 } |
| OLD | NEW |