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

Unified Diff: components/proxy_resolver.gypi

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.gypi
diff --git a/components/proxy_resolver.gypi b/components/proxy_resolver.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..da7f94791a63cdedc4c415ea4a41de42d887651c
--- /dev/null
+++ b/components/proxy_resolver.gypi
@@ -0,0 +1,24 @@
+# Copyright 2015 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ # GN version: //components/proxy_resolver:app
+ 'targets': [{
+ 'target_name': 'proxy_resolver_app',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/net/net.gyp:net_interfaces',
+ '<(DEPTH)/net/net.gyp:net_utility_services',
+ '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_application_base',
+ ],
+ 'sources': [
+ 'proxy_resolver/proxy_resolver_app.cc',
+ 'proxy_resolver/proxy_resolver_app.h',
+ ],
+ }],
+}

Powered by Google App Engine
This is Rietveld 408576698