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

Unified Diff: mojo/services/network/BUILD.gn

Issue 596383002: Mojo UDP API implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@udp_interface
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: mojo/services/network/BUILD.gn
diff --git a/mojo/services/network/BUILD.gn b/mojo/services/network/BUILD.gn
index 82dd07b25f9afbc835839a127a71802f3abd091d..2d8989672aeff303b155a3cafdf12d586bb1a3a7 100644
--- a/mojo/services/network/BUILD.gn
+++ b/mojo/services/network/BUILD.gn
@@ -30,13 +30,37 @@ source_set("lib") {
sources = [
"cookie_store_impl.cc",
"cookie_store_impl.h",
+ "net_address_type_converters.cc",
+ "net_address_type_converters.h",
"network_context.cc",
"network_context.h",
"network_service_impl.cc",
"network_service_impl.h",
+ "udp_socket_impl.cc",
+ "udp_socket_impl.h",
"url_loader_impl.cc",
"url_loader_impl.h",
"web_socket_impl.cc",
"web_socket_impl.h",
]
}
+
+# GYP version: mojo/mojo_services.gypi:mojo_network_service_unittests
+test("unittests") {
+ deps = [
+ ":network",
+ "//base",
+ "//base/test:test_support",
+ "//mojo/application_manager",
+ "//mojo/common/test:run_all_unittests",
+ "//mojo/environment:chromium",
+ "//mojo/services/public/interfaces/network",
+ "//mojo/shell:test_support",
+ "//mojo/system",
+ "//testing/gtest",
+ ]
+
+ sources = [
+ "udp_socket_unittest.cc",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698