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

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

Issue 2052953002: Need relative paths in GN dependencies, or including in Chromium fails! (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/config/features.gni") 9 import("//build/config/features.gni")
10 import("webrtc_fuzzer.gni") 10 import("webrtc_fuzzer.gni")
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 deps = [ 82 deps = [
83 "../../modules/rtp_rtcp/", 83 "../../modules/rtp_rtcp/",
84 ] 84 ]
85 } 85 }
86 86
87 webrtc_fuzzer_test("sdp_parser_fuzzer") { 87 webrtc_fuzzer_test("sdp_parser_fuzzer") {
88 sources = [ 88 sources = [
89 "sdp_parser_fuzzer.cc", 89 "sdp_parser_fuzzer.cc",
90 ] 90 ]
91 deps = [ 91 deps = [
92 "//webrtc/api:libjingle_peerconnection", 92 "../../api:libjingle_peerconnection",
93 ] 93 ]
94 } 94 }
95 95
96 webrtc_fuzzer_test("stun_parser_fuzzer") { 96 webrtc_fuzzer_test("stun_parser_fuzzer") {
97 sources = [ 97 sources = [
98 "stun_parser_fuzzer.cc", 98 "stun_parser_fuzzer.cc",
99 ] 99 ]
100 deps = [ 100 deps = [
101 "//webrtc/p2p:rtc_p2p", 101 "../../p2p:rtc_p2p",
102 ] 102 ]
103 } 103 }
104 104
105 webrtc_fuzzer_test("stun_validator_fuzzer") { 105 webrtc_fuzzer_test("stun_validator_fuzzer") {
106 sources = [ 106 sources = [
107 "stun_validator_fuzzer.cc", 107 "stun_validator_fuzzer.cc",
108 ] 108 ]
109 deps = [ 109 deps = [
110 "//webrtc/p2p:rtc_p2p", 110 "../../p2p:rtc_p2p",
111 ] 111 ]
112 } 112 }
113 113
114 source_set("audio_decoder_fuzzer") { 114 source_set("audio_decoder_fuzzer") {
115 public_configs = [ "../..:common_inherited_config" ] 115 public_configs = [ "../..:common_inherited_config" ]
116 sources = [ 116 sources = [
117 "audio_decoder_fuzzer.cc", 117 "audio_decoder_fuzzer.cc",
118 "audio_decoder_fuzzer.h", 118 "audio_decoder_fuzzer.h",
119 ] 119 ]
120 } 120 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 171
172 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { 172 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
173 sources = [ 173 sources = [
174 "audio_decoder_opus_redundant_fuzzer.cc", 174 "audio_decoder_opus_redundant_fuzzer.cc",
175 ] 175 ]
176 deps = [ 176 deps = [
177 ":audio_decoder_fuzzer", 177 ":audio_decoder_fuzzer",
178 "../../modules/audio_coding:webrtc_opus", 178 "../../modules/audio_coding:webrtc_opus",
179 ] 179 ]
180 } 180 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698