| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("cpp") { | 5 source_set("cpp") { |
| 6 public_configs = [ "../../../public/build/config:mojo_services" ] | 6 public_configs = [ "../../../public/build/config:mojo_services" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "udp_socket_wrapper.cc", | 8 "udp_socket_wrapper.cc", |
| 9 "udp_socket_wrapper.h", | 9 "udp_socket_wrapper.h", |
| 10 "web_socket_read_queue.cc", | 10 "web_socket_read_queue.cc", |
| 11 "web_socket_read_queue.h", | 11 "web_socket_read_queue.h", |
| 12 "web_socket_write_queue.cc", | 12 "web_socket_write_queue.cc", |
| 13 "web_socket_write_queue.h", | 13 "web_socket_write_queue.h", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "../interfaces", | 17 "../interfaces", |
| 18 "//base", | 18 "//base", |
| 19 "//mojo/environment:chromium", | |
| 20 "//mojo/message_pump", | 19 "//mojo/message_pump", |
| 21 "//mojo/public/c/system", | 20 "//mojo/public/c/system", |
| 22 "//mojo/public/cpp/system", | 21 "//mojo/public/cpp/system", |
| 23 "//mojo/shell/public/cpp", | 22 "//mojo/shell/public/cpp", |
| 24 ] | 23 ] |
| 25 } | 24 } |
| OLD | NEW |