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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [{
7 # GN version: //mojo/services/network/public/interfaces
8 'target_name': 'network_service_bindings_mojom',
9 'type': 'static_library',
10 'variables': {
11 'mojom_files': [
12 'services/network/public/interfaces/cookie_store.mojom',
13 'services/network/public/interfaces/net_address.mojom',
14 'services/network/public/interfaces/network_error.mojom',
15 'services/network/public/interfaces/network_service.mojom',
16 'services/network/public/interfaces/tcp_bound_socket.mojom',
17 'services/network/public/interfaces/tcp_connected_socket.mojom',
18 'services/network/public/interfaces/tcp_server_socket.mojom',
19 'services/network/public/interfaces/udp_socket.mojom',
20 'services/network/public/interfaces/url_loader.mojom',
21 'services/network/public/interfaces/web_socket.mojom',
22 ],
23 },
24 'includes': [
25 '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
26 ],
27 }, {
28 # GN version: //third_party/mojo_services/src/content_handler/public/interfa ces
29 'target_name': 'content_handler_bindings_mojom',
30 'type': 'static_library',
31 'variables': {
32 'mojom_files': [
33 '../third_party/mojo_services/src/content_handler/public/interfaces/cont ent_handler.mojom',
34 ],
35 },
36 'includes': [
37 '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
38 ],
39 'dependencies': [
40 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_mojom',
41 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_application_bindings_mojom ',
42 ],
43 }],
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698