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 # GYP version: mojo/mojo_services.gypi:mojo_network_service | 5 # GYP version: mojo/mojo_services.gypi:mojo_network_service |
6 shared_library("network") { | 6 shared_library("network") { |
7 output_name = "mojo_network_service" | 7 output_name = "mojo_network_service" |
8 | 8 |
9 deps = [ | 9 deps = [ |
10 ":lib", | 10 ":lib", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "network_context.cc", | 42 "network_context.cc", |
43 "network_context.h", | 43 "network_context.h", |
44 "network_service_impl.cc", | 44 "network_service_impl.cc", |
45 "network_service_impl.h", | 45 "network_service_impl.h", |
46 "tcp_bound_socket_impl.cc", | 46 "tcp_bound_socket_impl.cc", |
47 "tcp_bound_socket_impl.h", | 47 "tcp_bound_socket_impl.h", |
48 "tcp_connected_socket_impl.cc", | 48 "tcp_connected_socket_impl.cc", |
49 "tcp_connected_socket_impl.h", | 49 "tcp_connected_socket_impl.h", |
50 "tcp_server_socket_impl.cc", | 50 "tcp_server_socket_impl.cc", |
51 "tcp_server_socket_impl.h", | 51 "tcp_server_socket_impl.h", |
| 52 "udp_socket_impl.cc", |
| 53 "udp_socket_impl.h", |
52 "url_loader_impl.cc", | 54 "url_loader_impl.cc", |
53 "url_loader_impl.h", | 55 "url_loader_impl.h", |
54 "web_socket_impl.cc", | 56 "web_socket_impl.cc", |
55 "web_socket_impl.h", | 57 "web_socket_impl.h", |
56 ] | 58 ] |
57 } | 59 } |
| 60 |
| 61 # GYP version: mojo/mojo_services.gypi:mojo_network_service_unittests |
| 62 test("unittests") { |
| 63 deps = [ |
| 64 ":network", |
| 65 "//base", |
| 66 "//base/test:test_support", |
| 67 "//mojo/application_manager", |
| 68 "//mojo/edk/system", |
| 69 "//mojo/edk/test:run_all_unittests", |
| 70 "//mojo/environment:chromium", |
| 71 "//mojo/services/public/interfaces/network", |
| 72 "//mojo/shell:test_support", |
| 73 "//testing/gtest", |
| 74 ] |
| 75 |
| 76 sources = [ |
| 77 "udp_socket_unittest.cc", |
| 78 ] |
| 79 } |
OLD | NEW |