OLD | NEW |
| (Empty) |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # TODO(miu): Decentralize build configuration: Move source files and deps | |
6 # specific to chrome/browser/media sources from chrome/browser/BULID.gn and | |
7 # chrome/test/BUILD.gn into this BUILD.gn file. Also, remove the root BUILD.gn | |
8 # dependency on the cast_remoting_connector_fuzzer target after this is done. | |
9 | |
10 import("//testing/libfuzzer/fuzzer_test.gni") | |
11 | |
12 fuzzer_test("cast_remoting_connector_fuzzer") { | |
13 sources = [ | |
14 "cast_remoting_connector_fuzzertest.cc", | |
15 "cast_remoting_connector_messaging.cc", | |
16 "cast_remoting_connector_messaging.h", | |
17 ] | |
18 deps = [ | |
19 "//base", | |
20 ] | |
21 libfuzzer_options = [ "max_len = 128" ] | |
22 seed_corpus = "../../test/data/cast/cast_remoting_connector_fuzz_corpus" | |
23 } | |
OLD | NEW |