1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 2014 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("//testing/test.gni")
source_set("proximity_auth") {
sources = [
"bluetooth_connection.cc",
"bluetooth_connection.h",
"bluetooth_connection_finder.cc",
"bluetooth_connection_finder.h",
"bluetooth_throttler.h",
"bluetooth_throttler_impl.cc",
"bluetooth_throttler_impl.h",
"bluetooth_util.cc",
"bluetooth_util.h",
"bluetooth_util_chromeos.cc",
"client.cc",
"client.h",
"client_observer.h",
"connection.cc",
"connection.h",
"connection_finder.h",
"connection_observer.h",
"proximity_auth_client.h",
"proximity_auth_system.cc",
"proximity_auth_system.h",
"remote_device.h",
"remote_status_update.cc",
"remote_status_update.h",
"screenlock_bridge.cc",
"screenlock_bridge.h",
"secure_context.h",
"switches.cc",
"switches.h",
"throttled_bluetooth_connection_finder.cc",
"throttled_bluetooth_connection_finder.h",
"wire_message.cc",
"wire_message.h",
]
deps = [
"logging",
"//base",
"//device/bluetooth",
"//net",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"bluetooth_connection_finder_unittest.cc",
"bluetooth_connection_unittest.cc",
"bluetooth_throttler_impl_unittest.cc",
"client_unittest.cc",
"connection_unittest.cc",
"proximity_auth_system_unittest.cc",
"remote_status_update_unittest.cc",
"throttled_bluetooth_connection_finder_unittest.cc",
"wire_message_unittest.cc",
]
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
deps = [
":proximity_auth",
"cryptauth:unit_tests",
"logging:unit_tests",
"//base/test:test_support",
"//device/bluetooth:mocks",
"//testing/gmock",
"//testing/gtest",
]
}
# Note: This is a convenience target for ease of rapid iteration during
# development. It is not executed on any try or build bots.
test("proximity_auth_unittests") {
sources = [
"run_all_unittests.cc",
]
deps = [
":unit_tests",
]
}
|