Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: mojo/services/network/BUILD.gn

Issue 668993002: Mojo UDP: add a client-side wrapper which handles the client<->server buffering for users. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/network/udp_socket_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 60
61 # GYP version: mojo/mojo_services.gypi:mojo_network_service_unittests
62 test("unittests") { 61 test("unittests") {
62 output_name = "mojo_network_service_unittests"
63 deps = [ 63 deps = [
64 ":network", 64 ":network",
65 "//base", 65 "//base",
66 "//base/test:test_support", 66 "//base/test:test_support",
67 "//mojo/application_manager", 67 "//mojo/application_manager",
68 "//mojo/edk/system", 68 "//mojo/edk/system",
69 "//mojo/edk/test:run_all_unittests", 69 "//mojo/edk/test:run_all_unittests",
70 "//mojo/environment:chromium", 70 "//mojo/environment:chromium",
71 "//mojo/services/public/cpp/network",
71 "//mojo/services/public/interfaces/network", 72 "//mojo/services/public/interfaces/network",
72 "//mojo/shell:test_support", 73 "//mojo/shell:test_support",
73 "//testing/gtest", 74 "//testing/gtest",
74 ] 75 ]
75 76
76 sources = [ 77 sources = [
77 "udp_socket_unittest.cc", 78 "udp_socket_unittest.cc",
78 ] 79 ]
79 } 80 }
OLDNEW
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/network/udp_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698