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/application/public/cpp", | |
20 "//mojo/environment:chromium", | 19 "//mojo/environment:chromium", |
21 "//mojo/message_pump", | 20 "//mojo/message_pump", |
22 "//mojo/public/c/system", | 21 "//mojo/public/c/system", |
23 "//mojo/public/cpp/system", | 22 "//mojo/public/cpp/system", |
| 23 "//mojo/shell/public/cpp", |
24 ] | 24 ] |
25 } | 25 } |
OLD | NEW |