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

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

Issue 2763413008: Add U2F device enumeration class (Closed)
Patch Set: Fix issues causing crash Created 3 years, 8 months 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
« no previous file with comments | « device/BUILD.gn ('k') | device/u2f/u2f_device.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/libfuzzer/fuzzer_test.gni") 6 import("//testing/libfuzzer/fuzzer_test.gni")
7 7
8 source_set("u2f") { 8 source_set("u2f") {
9 sources = [ 9 sources = [
10 "u2f_apdu_command.cc", 10 "u2f_apdu_command.cc",
11 "u2f_apdu_command.h", 11 "u2f_apdu_command.h",
12 "u2f_apdu_response.cc", 12 "u2f_apdu_response.cc",
13 "u2f_apdu_response.h", 13 "u2f_apdu_response.h",
14 "u2f_device.cc", 14 "u2f_device.cc",
15 "u2f_device.h", 15 "u2f_device.h",
16 "u2f_enumerate.cc",
17 "u2f_enumerate.h",
16 "u2f_hid_device.cc", 18 "u2f_hid_device.cc",
17 "u2f_hid_device.h", 19 "u2f_hid_device.h",
18 "u2f_message.cc", 20 "u2f_message.cc",
19 "u2f_message.h", 21 "u2f_message.h",
20 "u2f_packet.cc", 22 "u2f_packet.cc",
21 "u2f_packet.h", 23 "u2f_packet.h",
22 ] 24 ]
23 25
24 deps = [ 26 deps = [
25 "//base", 27 "//base",
(...skipping 18 matching lines...) Expand all
44 fuzzer_test("u2f_message_fuzzer") { 46 fuzzer_test("u2f_message_fuzzer") {
45 sources = [ 47 sources = [
46 "u2f_message_fuzzer.cc", 48 "u2f_message_fuzzer.cc",
47 ] 49 ]
48 deps = [ 50 deps = [
49 ":u2f", 51 ":u2f",
50 "//net", 52 "//net",
51 ] 53 ]
52 libfuzzer_options = [ "max_len=2048" ] 54 libfuzzer_options = [ "max_len=2048" ]
53 } 55 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/u2f/u2f_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698