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

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

Issue 2502103002: Add FIDO U2F message and packet classes (Closed)
Patch Set: Add FIDO U2F message and packet classes Created 4 years, 1 month 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 "//components/device_event_log",
Reilly Grant (use Gerrit) 2016/11/23 22:21:50 Unused.
Casey Piper 2016/11/29 22:11:15 Acknowledged.
19 "//device/base",
Reilly Grant (use Gerrit) 2016/11/23 22:21:50 Unused.
Casey Piper 2016/11/29 22:11:15 Acknowledged.
20 "//net",
21 ]
22 }
23
24 static_library("test_support") {
Reilly Grant (use Gerrit) 2016/11/23 22:21:50 Since you include u2f_message_unittest.cc in the d
25 testonly = true
26
27 sources = [
28 "u2f_message_unittest.cc",
29 ]
30
31 deps = [
32 ":u2f",
33 "//base",
34 "//net",
35 "//testing/gtest",
36 ]
37
38 public_deps = [
39 "//testing/gmock",
40 ]
41 }
OLDNEW
« 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