| Index: components/proximity_auth/BUILD.gn
|
| diff --git a/components/proximity_auth/BUILD.gn b/components/proximity_auth/BUILD.gn
|
| index 09de32c022f99457339440b5ebf0ef1fc2374581..1f2540282459e567003469f5eceda1ba0b9d2a31 100644
|
| --- a/components/proximity_auth/BUILD.gn
|
| +++ b/components/proximity_auth/BUILD.gn
|
| @@ -4,9 +4,14 @@
|
|
|
| static_library("proximity_auth") {
|
| sources = [
|
| + "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 = [
|
| @@ -17,12 +22,14 @@ static_library("proximity_auth") {
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| + "connection_unittest.cc",
|
| "proximity_auth_system_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| ":proximity_auth",
|
| "//base/test:test_support",
|
| + "//testing/gmock",
|
| "//testing/gtest",
|
| ]
|
| }
|
|
|