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

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: 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
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 test("audio_decoder_ilbc_fuzzer") {
55 sources = [
56 "audio_decoder_fuzzer.cc",
57 "audio_decoder_fuzzer.h",
58 "audio_decoder_ilbc_fuzzer.cc",
59 ]
60 deps = [
61 ":webrtc_fuzzer_main",
62 "../../modules/audio_coding:ilbc",
63 ]
64
65 if (is_clang) {
66 # Suppress warnings from Chrome's Clang plugins.
67 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
68 configs -= [ "//build/config/clang:find_bad_constructs" ]
69 }
70 }
71
72 test("audio_decoder_isac_fuzzer") {
73 sources = [
74 "audio_decoder_fuzzer.cc",
pbos-webrtc 2015/12/04 14:27:25 Break out audio_decoder_fuzzer to its own source_s
hlundin-webrtc 2015/12/04 14:58:06 Done.
75 "audio_decoder_fuzzer.h",
76 "audio_decoder_isac_fuzzer.cc",
77 ]
78 deps = [
79 ":webrtc_fuzzer_main",
80 "../../modules/audio_coding:isac",
81 ]
82
83 if (is_clang) {
84 # Suppress warnings from Chrome's Clang plugins.
85 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
86 configs -= [ "//build/config/clang:find_bad_constructs" ]
87 }
88 }
89
90 test("audio_decoder_isacfix_fuzzer") {
91 sources = [
92 "audio_decoder_fuzzer.cc",
93 "audio_decoder_fuzzer.h",
94 "audio_decoder_isacfix_fuzzer.cc",
95 ]
96 deps = [
97 ":webrtc_fuzzer_main",
98 "../../modules/audio_coding:isac_fix",
99 ]
100
101 if (is_clang) {
102 # Suppress warnings from Chrome's Clang plugins.
103 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
104 configs -= [ "//build/config/clang:find_bad_constructs" ]
105 }
106 }
107
108 test("audio_decoder_opus_fuzzer") {
109 sources = [
110 "audio_decoder_fuzzer.cc",
111 "audio_decoder_fuzzer.h",
112 "audio_decoder_opus_fuzzer.cc",
113 ]
114 deps = [
115 ":webrtc_fuzzer_main",
116 "../../modules/audio_coding:webrtc_opus",
117 ]
118
119 if (is_clang) {
120 # Suppress warnings from Chrome's Clang plugins.
121 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
122 configs -= [ "//build/config/clang:find_bad_constructs" ]
123 }
124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698