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

Side by Side Diff: device/u2f/BUILD.gn

Issue 2502103002: Add FIDO U2F message and packet classes (Closed)
Patch Set: Add basic fuzzer test, and updated constructor for U2fMessage to account for invalid packets Created 4 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
(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 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/u2f/DEPS » ('j') | device/u2f/u2f_message_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698