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

Unified Diff: components/proxy_resolver/BUILD.gn

Issue 1128453004: Embed a simple Mojo shell in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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: components/proxy_resolver/BUILD.gn
diff --git a/components/proxy_resolver/BUILD.gn b/components/proxy_resolver/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2127a7f17d11a27e47a8cd3c0973263fa63994e5
--- /dev/null
+++ b/components/proxy_resolver/BUILD.gn
@@ -0,0 +1,39 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//third_party/mojo/src/mojo/public/mojo_application.gni")
+
+# Standalone native binary application target. There's no GYP version
+# of this target because it's not used by chromium.
+mojo_native_application("proxy_resolver") {
+ output_name = "proxy_resolver"
+
+ sources = [
+ "main.cc",
+ ]
+
+ deps = [
+ ":app",
+ "//mojo/application",
+ "//third_party/mojo/src/mojo/public/c/system",
+ ]
+}
+
+# GYP version: components/components.gyp:proxy_resolver_app
+source_set("app") {
+ sources = [
+ "proxy_resolver_app.cc",
+ "proxy_resolver_app.h",
+ ]
+
+ public_deps = [
+ "//base",
+ "//net/interfaces",
+ "//third_party/mojo/src/mojo/public/cpp/application",
+ ]
+
+ deps = [
+ "//net:net_utility_services",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698