Index: components/copresence_sockets/BUILD.gn |
diff --git a/components/copresence_sockets/BUILD.gn b/components/copresence_sockets/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f48f6017b04e9237a771b4ea7e3b45c3b3c61e22 |
--- /dev/null |
+++ b/components/copresence_sockets/BUILD.gn |
@@ -0,0 +1,19 @@ |
+# 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("copresence_sockets") { |
+ sources = [ |
+ "copresence_peer.cc", |
+ "transports/bluetooth/copresence_socket_bluetooth.cc", |
+ "transports/bluetooth/copresence_socket_bluetooth.h", |
+ "public/copresence_peer.h", |
+ "public/copresence_socket.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//device/bluetooth", |
+ "//net", |
+ ] |
+} |