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

Side by Side Diff: mojo/mojo_services.gyp

Issue 1455833005: Convert ConnectToApplication to take a params class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 1 month 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
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/runner/child/native_apptest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 7 {
8 'target_name': 'network_service_bindings_mojom', 8 'target_name': 'network_service_bindings_mojom',
9 'type': 'none', 9 'type': 'none',
10 'variables': { 10 'variables': {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 # Target used to depend only on the bindings generation action, not on any 43 # Target used to depend only on the bindings generation action, not on any
44 # outputs. 44 # outputs.
45 'target_name': 'network_service_bindings_generation', 45 'target_name': 'network_service_bindings_generation',
46 'type': 'none', 46 'type': 'none',
47 'hard_dependency': 1, 47 'hard_dependency': 1,
48 'dependencies': [ 48 'dependencies': [
49 'network_service_bindings_mojom', 49 'network_service_bindings_mojom',
50 ], 50 ],
51 }, 51 },
52 { 52 {
53 # GN version: //mojo/converters/network
54 'target_name': 'network_type_converters',
55 'type': 'static_library',
56 'dependencies': [
57 'network_service_bindings_lib',
58 ],
59 'sources': [
60 'converters/network/network_type_converters.cc',
61 'converters/network/network_type_converters.h',
62 ],
63 },
64 {
53 'target_name': 'updater_bindings_mojom', 65 'target_name': 'updater_bindings_mojom',
54 'type': 'none', 66 'type': 'none',
55 'variables': { 67 'variables': {
56 'mojom_files': [ 68 'mojom_files': [
57 'services/updater/updater.mojom', 69 'services/updater/updater.mojom',
58 ], 70 ],
59 'mojom_include_path': '<(DEPTH)/mojo/services', 71 'mojom_include_path': '<(DEPTH)/mojo/services',
60 }, 72 },
61 'includes': [ 73 'includes': [
62 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', 74 '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
63 ], 75 ],
64 }, 76 },
65 { 77 {
66 # GN version: //mojo/services/updater 78 # GN version: //mojo/services/updater
67 'target_name': 'updater_bindings_lib', 79 'target_name': 'updater_bindings_lib',
68 'type': 'static_library', 80 'type': 'static_library',
69 'dependencies': [ 81 'dependencies': [
70 'updater_bindings_mojom', 82 'updater_bindings_mojom',
71 ], 83 ],
72 }, 84 },
73 ], 85 ],
74 } 86 }
OLDNEW
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/runner/child/native_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698