forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
57 lines (51 loc) · 1.21 KB
/
BUILD.gn
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
# 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.
static_library("proximity_auth") {
sources = [
"bluetooth_connection.cc",
"bluetooth_connection.h",
"bluetooth_util.cc",
"bluetooth_util_chromeos.cc",
"bluetooth_util.h",
"connection.cc",
"connection.h",
"connection_observer.h",
"proximity_auth_system.cc",
"proximity_auth_system.h",
"remote_device.h",
"wire_message.cc",
"wire_message.h",
]
deps = [
"//base",
"//device/bluetooth",
"//net",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"bluetooth_connection_unittest.cc",
"connection_unittest.cc",
"proximity_auth_system_unittest.cc",
"wire_message_unittest.cc",
]
deps = [
":proximity_auth",
"//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",
]
}