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

Unified Diff: mojo/mojo_services.gyp

Issue 1127203004: Add GYP targets for mojo shell and some basic mojo services (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
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/mojo_shell.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_services.gyp
diff --git a/mojo/mojo_services.gyp b/mojo/mojo_services.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..bf969ad23339f211bf92c54da345e0890893160c
--- /dev/null
+++ b/mojo/mojo_services.gyp
@@ -0,0 +1,48 @@
+# 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/http_connection.mojom',
+ 'services/network/public/interfaces/http_server.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',
+ ],
+ 'mojom_include_path': '<(DEPTH)/mojo/services',
+ },
+ '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',
+ ],
+ 'mojom_include_path': '<(DEPTH)/mojo/services',
+ },
+ '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',
+ ],
+ }],
+}
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/mojo_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698