summaryrefslogtreecommitdiffstats
path: root/components/pairing/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'components/pairing/BUILD.gn')
-rw-r--r--components/pairing/BUILD.gn14
1 files changed, 14 insertions, 0 deletions
diff --git a/components/pairing/BUILD.gn b/components/pairing/BUILD.gn
index af7b979..55f29ed 100644
--- a/components/pairing/BUILD.gn
+++ b/components/pairing/BUILD.gn
@@ -14,11 +14,25 @@ source_set("pairing") {
"pairing/controller_pairing_controller.h",
"pairing/host_pairing_controller.cc",
"pairing/host_pairing_controller.h",
+ "pairing/message_buffer.cc",
+ "pairing/message_buffer.h",
]
deps = [
"//base",
"//device/bluetooth",
+ "//net",
+ ]
+}
+
+source_set("unit_tests") {
+ sources = [
+ "message_buffer_unittest.cc",
+ ]
+
+ deps = [
+ ":pairing",
+ "//testing/gtest",
]
}