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

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

Issue 1499093002: Create fuzzer tests for audio decoders (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove comment Created 5 years 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 | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('j') | 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("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 ":webrtc_fuzzer_main", 43 ":webrtc_fuzzer_main",
44 "../../modules/video_coding/", 44 "../../modules/video_coding/",
45 ] 45 ]
46 46
47 if (is_clang) { 47 if (is_clang) {
48 # Suppress warnings from Chrome's Clang plugins. 48 # Suppress warnings from Chrome's Clang plugins.
49 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 49 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
50 configs -= [ "//build/config/clang:find_bad_constructs" ] 50 configs -= [ "//build/config/clang:find_bad_constructs" ]
51 } 51 }
52 } 52 }
53
54 source_set("audio_decoder_fuzzer") {
55 sources = [
56 "audio_decoder_fuzzer.cc",
57 "audio_decoder_fuzzer.h",
58 ]
59 deps = [
60 ":webrtc_fuzzer_main",
61 ]
62
63 if (is_clang) {
64 # Suppress warnings from Chrome's Clang plugins.
kjellander_webrtc 2015/12/07 08:05:22 Do you need all these? Would it be too much to ask
pbos-webrtc 2015/12/07 08:07:07 I assume that these are from audio_coding, and sin
hlundin-webrtc 2015/12/07 08:14:48 I simply copied from the vp8 and vp9 fuzzer target
kjellander_webrtc 2015/12/07 08:21:43 Fair enough. This being the FixIt week this sound
hlundin-webrtc 2015/12/08 09:49:17 Done.
65 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
66 configs -= [ "//build/config/clang:find_bad_constructs" ]
67 }
68 }
69
70 test("audio_decoder_ilbc_fuzzer") {
71 sources = [
72 "audio_decoder_ilbc_fuzzer.cc",
73 ]
74 deps = [
75 ":audio_decoder_fuzzer",
76 "../../modules/audio_coding:ilbc",
77 ]
78
79 if (is_clang) {
80 # Suppress warnings from Chrome's Clang plugins.
81 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
82 configs -= [ "//build/config/clang:find_bad_constructs" ]
83 }
84 }
85
86 test("audio_decoder_isac_fuzzer") {
87 sources = [
88 "audio_decoder_isac_fuzzer.cc",
89 ]
90 deps = [
91 ":audio_decoder_fuzzer",
92 "../../modules/audio_coding:isac",
93 ]
94
95 if (is_clang) {
96 # Suppress warnings from Chrome's Clang plugins.
97 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
98 configs -= [ "//build/config/clang:find_bad_constructs" ]
99 }
100 }
101
102 test("audio_decoder_isacfix_fuzzer") {
103 sources = [
104 "audio_decoder_isacfix_fuzzer.cc",
105 ]
106 deps = [
107 ":audio_decoder_fuzzer",
108 "../../modules/audio_coding:isac_fix",
109 ]
110
111 if (is_clang) {
112 # Suppress warnings from Chrome's Clang plugins.
113 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
114 configs -= [ "//build/config/clang:find_bad_constructs" ]
115 }
116 }
117
118 test("audio_decoder_opus_fuzzer") {
119 sources = [
120 "audio_decoder_opus_fuzzer.cc",
121 ]
122 deps = [
123 ":audio_decoder_fuzzer",
124 "../../modules/audio_coding:webrtc_opus",
125 ]
126
127 if (is_clang) {
128 # Suppress warnings from Chrome's Clang plugins.
129 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
130 configs -= [ "//build/config/clang:find_bad_constructs" ]
131 }
132 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698