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", |
+ ] |
+} |