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

Side by Side Diff: mojo/mojo_shell.gyp

Issue 1761153002: Replace ChildController with ShellClientFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@29binding
Patch Set: . Created 4 years, 9 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
« no previous file with comments | « content/browser/mojo/mojo_shell_client_host.cc ('k') | mojo/shell/application_manager.h » ('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 'target_name': 'mojo_shell_lib', 7 'target_name': 'mojo_shell_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'sources': [ 9 'sources': [
10 'services/package_manager/loader.cc', 10 'services/package_manager/loader.cc',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ], 70 ],
71 }, { 71 }, {
72 'target_name': 'mojo_runner_connection_lib', 72 'target_name': 'mojo_runner_connection_lib',
73 'type': 'static_library', 73 'type': 'static_library',
74 'sources': [ 74 'sources': [
75 'shell/runner/child/runner_connection.cc', 75 'shell/runner/child/runner_connection.cc',
76 'shell/runner/child/runner_connection.h', 76 'shell/runner/child/runner_connection.h',
77 ], 77 ],
78 'dependencies': [ 78 'dependencies': [
79 'mojo_runner_common_lib', 79 'mojo_runner_common_lib',
80 'mojo_runner_connection_bindings_lib',
81 '<(DEPTH)/base/base.gyp:base', 80 '<(DEPTH)/base/base.gyp:base',
82 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', 81 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
83 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', 82 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl',
84 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle', 83 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle',
85 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib', 84 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib',
86 ], 85 ],
87 }, { 86 }, {
88 'target_name': 'mojo_runner_common_lib', 87 'target_name': 'mojo_runner_common_lib',
89 'type': 'static_library', 88 'type': 'static_library',
90 'sources': [ 89 'sources': [
91 'shell/runner/common/switches.cc', 90 'shell/runner/common/switches.cc',
92 'shell/runner/common/switches.h', 91 'shell/runner/common/switches.h',
93 ], 92 ],
94 'include_dirs': [ 93 'include_dirs': [
95 '..', 94 '..',
96 ], 95 ],
97 }, { 96 }, {
98 'target_name': 'mojo_runner_connection_bindings_lib',
99 'type': 'static_library',
100 'dependencies': [
101 'mojo_runner_connection_mojom',
102 ],
103 }, {
104 'target_name': 'mojo_runner_connection_mojom',
105 'type': 'none',
106 'variables': {
107 'mojom_files': [
108 'shell/runner/child/child_controller.mojom',
109 ],
110 },
111 'includes': [
112 'mojom_bindings_generator_explicit.gypi',
113 ],
114 'dependencies': [
115 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
116 ],
117 }, {
118 'target_name': 'mojo_runner_host_lib', 97 'target_name': 'mojo_runner_host_lib',
119 'type': 'static_library', 98 'type': 'static_library',
120 'sources': [ 99 'sources': [
121 'shell/runner/host/child_process.cc', 100 'shell/runner/host/child_process.cc',
122 'shell/runner/host/child_process.h', 101 'shell/runner/host/child_process.h',
123 'shell/runner/host/child_process_base.cc', 102 'shell/runner/host/child_process_base.cc',
124 'shell/runner/host/child_process_base.h', 103 'shell/runner/host/child_process_base.h',
125 'shell/runner/host/child_process_host.cc', 104 'shell/runner/host/child_process_host.cc',
126 'shell/runner/host/child_process_host.h', 105 'shell/runner/host/child_process_host.h',
127 'shell/runner/host/in_process_native_runner.cc', 106 'shell/runner/host/in_process_native_runner.cc',
128 'shell/runner/host/in_process_native_runner.h', 107 'shell/runner/host/in_process_native_runner.h',
129 'shell/runner/host/out_of_process_native_runner.cc', 108 'shell/runner/host/out_of_process_native_runner.cc',
130 'shell/runner/host/out_of_process_native_runner.h', 109 'shell/runner/host/out_of_process_native_runner.h',
131 'shell/runner/host/native_application_support.cc', 110 'shell/runner/host/native_application_support.cc',
132 'shell/runner/host/native_application_support.h', 111 'shell/runner/host/native_application_support.h',
133 'shell/runner/init.cc', 112 'shell/runner/init.cc',
134 'shell/runner/init.h', 113 'shell/runner/init.h',
135 ], 114 ],
136 'dependencies': [ 115 'dependencies': [
137 'mojo_runner_common_lib', 116 'mojo_runner_common_lib',
138 'mojo_runner_connection_bindings_lib',
139 'mojo_shell_lib', 117 'mojo_shell_lib',
140 '<(DEPTH)/base/base.gyp:base', 118 '<(DEPTH)/base/base.gyp:base',
141 '<(DEPTH)/base/base.gyp:base_i18n', 119 '<(DEPTH)/base/base.gyp:base_i18n',
142 '<(DEPTH)/base/base.gyp:base_static', 120 '<(DEPTH)/base/base.gyp:base_static',
143 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', 121 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl',
144 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle', 122 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle',
145 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib', 123 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib',
146 ], 124 ],
147 'conditions': [ 125 'conditions': [
148 ['OS=="linux"', { 126 ['OS=="linux"', {
149 'sources': [ 127 'sources': [
150 'shell/runner/host/linux_sandbox.cc', 128 'shell/runner/host/linux_sandbox.cc',
151 'shell/runner/host/linux_sandbox.h', 129 'shell/runner/host/linux_sandbox.h',
152 ], 130 ],
153 'dependencies': [ 131 'dependencies': [
154 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', 132 '<(DEPTH)/sandbox/sandbox.gyp:sandbox',
155 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', 133 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services',
156 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', 134 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf',
157 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', 135 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers',
158 ], 136 ],
159 }], 137 }],
160 ], 138 ],
161 }], 139 }],
162 } 140 }
OLDNEW
« no previous file with comments | « content/browser/mojo/mojo_shell_client_host.cc ('k') | mojo/shell/application_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698