| 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 source_set("cpp") { | |
| 6 public_configs = [ "../../../public/build/config:mojo_services" ] | |
| 7 sources = [ | |
| 8 "udp_socket_wrapper.cc", | |
| 9 "udp_socket_wrapper.h", | |
| 10 "web_socket_read_queue.cc", | |
| 11 "web_socket_read_queue.h", | |
| 12 "web_socket_write_queue.cc", | |
| 13 "web_socket_write_queue.h", | |
| 14 ] | |
| 15 | |
| 16 deps = [ | |
| 17 "../interfaces", | |
| 18 "//base", | |
| 19 "//mojo/message_pump", | |
| 20 "//mojo/public/c/system", | |
| 21 "//mojo/public/cpp/system", | |
| 22 "//mojo/shell/public/cpp", | |
| 23 ] | |
| 24 } | |
| OLD | NEW |