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 "//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 } | |
| OLD | NEW |