OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("copresence_sockets") { |
| 6 sources = [ |
| 7 "copresence_sockets/copresence_peer.cc", |
| 8 "copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.cc", |
| 9 "copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.h", |
| 10 "copresence_sockets/public/copresence_peer.h", |
| 11 "copresence_sockets/public/copresence_socket.h", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 "//base", |
| 16 "//device/bluetooth", |
| 17 "//net", |
| 18 ] |
| 19 } |
OLD | NEW |