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

Unified Diff: mojo/mojo_services.gyp

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: mojo/mojo_services.gyp
diff --git a/mojo/mojo_services.gyp b/mojo/mojo_services.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..c1ef74ba075cbe6f4d61ad6563c10318a03c9515
--- /dev/null
+++ b/mojo/mojo_services.gyp
@@ -0,0 +1,44 @@
+# 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.
+
+{
+ 'targets': [{
+ # GN version: //mojo/services/network/public/interfaces
+ 'target_name': 'network_service_bindings_mojom',
+ 'type': 'static_library',
+ 'variables': {
+ 'mojom_files': [
+ 'services/network/public/interfaces/cookie_store.mojom',
+ 'services/network/public/interfaces/net_address.mojom',
+ 'services/network/public/interfaces/network_error.mojom',
+ 'services/network/public/interfaces/network_service.mojom',
+ 'services/network/public/interfaces/tcp_bound_socket.mojom',
+ 'services/network/public/interfaces/tcp_connected_socket.mojom',
+ 'services/network/public/interfaces/tcp_server_socket.mojom',
+ 'services/network/public/interfaces/udp_socket.mojom',
+ 'services/network/public/interfaces/url_loader.mojom',
+ 'services/network/public/interfaces/web_socket.mojom',
+ ],
+ },
+ 'includes': [
+ '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
+ ],
+ }, {
+ # GN version: //third_party/mojo_services/src/content_handler/public/interfaces
+ 'target_name': 'content_handler_bindings_mojom',
+ 'type': 'static_library',
+ 'variables': {
+ 'mojom_files': [
+ '../third_party/mojo_services/src/content_handler/public/interfaces/content_handler.mojom',
+ ],
+ },
+ 'includes': [
+ '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_mojom',
+ '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_application_bindings_mojom',
+ ],
+ }],
+}

Powered by Google App Engine
This is Rietveld 408576698