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

Side by Side Diff: mojo/mojo_services.gyp

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [{ 6 'targets': [{
7 'target_name': 'network_service_bindings_mojom', 7 'target_name': 'network_service_bindings_mojom',
8 'type': 'none', 8 'type': 'none',
9 'variables': { 9 'variables': {
10 'mojom_files': [ 10 'mojom_files': [
(...skipping 11 matching lines...) Expand all
22 'services/network/public/interfaces/url_loader.mojom', 22 'services/network/public/interfaces/url_loader.mojom',
23 'services/network/public/interfaces/web_socket.mojom', 23 'services/network/public/interfaces/web_socket.mojom',
24 ], 24 ],
25 'mojom_include_path': '<(DEPTH)/mojo/services', 25 'mojom_include_path': '<(DEPTH)/mojo/services',
26 }, 26 },
27 'includes': [ 27 'includes': [
28 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', 28 '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
29 ], 29 ],
30 }, { 30 }, {
31 # GN version: //mojo/services/network/public/interfaces 31 # GN version: //mojo/services/network/public/interfaces
32 'target_name': 'network_service_bindings_libs', 32 'target_name': 'network_service_bindings_lib',
33 'type': 'static_library', 33 'type': 'static_library',
34 'dependencies': [ 34 'dependencies': [
35 'network_service_bindings_mojom', 35 'network_service_bindings_mojom',
36 ], 36 ],
37 }, {
38 # Target used to depend only on the bindings generation action, not on any
39 # outputs.
40 'target_name': 'network_service_bindings_generation',
41 'type': 'none',
42 'hard_dependency': 1,
43 'dependencies': [
44 'network_service_bindings_mojom',
45 ],
37 }], 46 }],
38 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698