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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 52 "udp_socket_impl.cc", |
53 "udp_socket_impl.h", | 53 "udp_socket_impl.h", |
54 "url_loader_impl.cc", | 54 "url_loader_impl.cc", |
55 "url_loader_impl.h", | 55 "url_loader_impl.h", |
56 "web_socket_impl.cc", | 56 "web_socket_impl.cc", |
57 "web_socket_impl.h", | 57 "web_socket_impl.h", |
58 ] | 58 ] |
59 } | 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 |