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

Unified Diff: device/u2f/BUILD.gn

Issue 2502103002: Add FIDO U2F message and packet classes (Closed)
Patch Set: Add includes to u2f_packet 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/BUILD.gn ('k') | device/u2f/DEPS » ('j') | device/u2f/u2f_message.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/u2f/BUILD.gn
diff --git a/device/u2f/BUILD.gn b/device/u2f/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ee90ebfd1ed63752d0c1aa2f661525dbe4e43cac
--- /dev/null
+++ b/device/u2f/BUILD.gn
@@ -0,0 +1,30 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/features.gni")
+import("//testing/libfuzzer/fuzzer_test.gni")
+
+source_set("u2f") {
+ sources = [
+ "u2f_message.cc",
+ "u2f_message.h",
+ "u2f_packet.cc",
+ "u2f_packet.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ ]
+}
+
+fuzzer_test("u2f_message_fuzzer") {
+ sources = [
+ "u2f_message_fuzzer.cc",
+ ]
+ deps = [
+ ":u2f",
+ ]
+ libfuzzer_options = [ "max_len=2048" ]
+}
« no previous file with comments | « device/BUILD.gn ('k') | device/u2f/DEPS » ('j') | device/u2f/u2f_message.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698