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

Unified Diff: sky/services/ns_net/BUILD.gn

Issue 1165283002: Basic network service implementation for iOS (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Address feedback on 1165283002 Created 5 years, 6 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
« no previous file with comments | « no previous file | sky/services/ns_net/network_service_impl.h » ('j') | sky/services/ns_net/url_loader_impl.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/services/ns_net/BUILD.gn
diff --git a/examples/dart/wget/BUILD.gn b/sky/services/ns_net/BUILD.gn
similarity index 53%
copy from examples/dart/wget/BUILD.gn
copy to sky/services/ns_net/BUILD.gn
index eebba4bac55d4245f47bbc1d1fad0d4a0e9bc4ea..ab7a5eb82197f1189b8854d4299642dd5cfd51d5 100644
--- a/examples/dart/wget/BUILD.gn
+++ b/sky/services/ns_net/BUILD.gn
@@ -2,16 +2,18 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//mojo/public/dart/rules.gni")
-
-dartzip_packaged_application("wget") {
- output_name = "dart_wget"
+source_set("ns_net") {
sources = [
- "main.dart",
+ "network_service_impl.h",
+ "network_service_impl.mm",
+ "url_loader_impl.h",
+ "url_loader_impl.mm",
]
+
deps = [
- "//mojo/public/dart",
- "//mojo/public/interfaces/network",
+ "//base:base",
+ "//mojo/common",
+ "//mojo/public/cpp/application",
"//mojo/services/network/public/interfaces",
]
}
« no previous file with comments | « no previous file | sky/services/ns_net/network_service_impl.h » ('j') | sky/services/ns_net/url_loader_impl.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698