Chromium Code Reviews| 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 import("//build/config/features.gni") | |
| 6 import("//testing/libfuzzer/fuzzer_test.gni") | |
| 7 | |
| 8 source_set("u2f") { | |
| 9 sources = [ | |
| 10 "u2f_message.cc", | |
| 11 "u2f_message.h", | |
| 12 "u2f_packet.cc", | |
| 13 "u2f_packet.h", | |
| 14 ] | |
| 15 | |
| 16 deps = [ | |
| 17 "//base", | |
| 18 "//net", | |
| 19 ] | |
| 20 } | |
| 21 | |
| 22 fuzzer_test("u2f_message_fuzzer") { | |
| 23 sources = [ | |
| 24 "u2f_message_fuzzer.cc", | |
| 25 ] | |
| 26 deps = [ | |
| 27 ":u2f", | |
| 28 ] | |
| 29 libfuzzer_options = [ "max_len=65" ] | |
|
Reilly Grant (use Gerrit)
2016/12/10 00:02:44
Set this higher so you get continuation packets as
Casey Piper
2016/12/10 01:38:03
Since packets would be sent one at a time, I had t
| |
| 30 } | |
| OLD | NEW |