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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1675153002: ApplicationImpl->ShellConnection, mojom::Application->mojom::ShellClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ci2
Patch Set: . Created 4 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build 5 # Essential components (and their tests) that are needed to build
6 # Chrome should be here. Other components that are useful only in 6 # Chrome should be here. Other components that are useful only in
7 # Mojo land like mojo_shell should be in mojo.gyp. 7 # Mojo land like mojo_shell should be in mojo.gyp.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../third_party/mojo/mojo_variables.gypi', 10 '../third_party/mojo/mojo_variables.gypi',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 ], 197 ],
198 'include_dirs': [ 198 'include_dirs': [
199 '..', 199 '..',
200 ], 200 ],
201 }, 201 },
202 { 202 {
203 'target_name': 'mojo_application_bindings_mojom', 203 'target_name': 'mojo_application_bindings_mojom',
204 'type': 'none', 204 'type': 'none',
205 'variables': { 205 'variables': {
206 'mojom_files': [ 206 'mojom_files': [
207 'shell/public/interfaces/application.mojom',
208 'shell/public/interfaces/application_manager.mojom', 207 'shell/public/interfaces/application_manager.mojom',
209 'shell/public/interfaces/content_handler.mojom', 208 'shell/public/interfaces/content_handler.mojom',
210 'shell/public/interfaces/service_provider.mojom', 209 'shell/public/interfaces/service_provider.mojom',
211 'shell/public/interfaces/shell.mojom', 210 'shell/public/interfaces/shell.mojom',
211 'shell/public/interfaces/shell_client.mojom',
212 ], 212 ],
213 }, 213 },
214 'dependencies': [ 214 'dependencies': [
215 'mojo_services.gyp:network_service_bindings_generation', 215 'mojo_services.gyp:network_service_bindings_generation',
216 ], 216 ],
217 'export_dependent_settings': [ 217 'export_dependent_settings': [
218 'mojo_services.gyp:network_service_bindings_generation', 218 'mojo_services.gyp:network_service_bindings_generation',
219 ], 219 ],
220 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi' ], 220 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi' ],
221 }, 221 },
222 { 222 {
223 # GN version: //mojo/shell/public/cpp 223 # GN version: //mojo/shell/public/cpp
224 'target_name': 'mojo_application_base', 224 'target_name': 'mojo_application_base',
225 'type': 'static_library', 225 'type': 'static_library',
226 'sources': [ 226 'sources': [
227 'shell/public/cpp/app_lifetime_helper.h', 227 'shell/public/cpp/app_lifetime_helper.h',
228 'shell/public/cpp/application_impl.h',
229 'shell/public/cpp/application_runner.h', 228 'shell/public/cpp/application_runner.h',
230 'shell/public/cpp/connect.h', 229 'shell/public/cpp/connect.h',
231 'shell/public/cpp/connection.h', 230 'shell/public/cpp/connection.h',
232 'shell/public/cpp/initialize_base_and_icu.cc', 231 'shell/public/cpp/initialize_base_and_icu.cc',
233 'shell/public/cpp/initialize_base_and_icu.h', 232 'shell/public/cpp/initialize_base_and_icu.h',
234 'shell/public/cpp/interface_factory.h', 233 'shell/public/cpp/interface_factory.h',
235 'shell/public/cpp/interface_factory_impl.h', 234 'shell/public/cpp/interface_factory_impl.h',
236 'shell/public/cpp/lib/app_lifetime_helper.cc', 235 'shell/public/cpp/lib/app_lifetime_helper.cc',
237 'shell/public/cpp/lib/application_impl.cc',
238 'shell/public/cpp/lib/application_runner.cc', 236 'shell/public/cpp/lib/application_runner.cc',
239 'shell/public/cpp/lib/connection_impl.cc', 237 'shell/public/cpp/lib/connection_impl.cc',
240 'shell/public/cpp/lib/connection_impl.h', 238 'shell/public/cpp/lib/connection_impl.h',
241 'shell/public/cpp/lib/interface_factory_connector.h', 239 'shell/public/cpp/lib/interface_factory_connector.h',
242 'shell/public/cpp/lib/shell_client.cc', 240 'shell/public/cpp/lib/shell_client.cc',
241 'shell/public/cpp/lib/shell_connection.cc',
243 'shell/public/cpp/service_connector.h', 242 'shell/public/cpp/service_connector.h',
244 'shell/public/cpp/shell.h', 243 'shell/public/cpp/shell.h',
245 'shell/public/cpp/shell_client.h', 244 'shell/public/cpp/shell_client.h',
245 'shell/public/cpp/shell_connection.h',
246 ], 246 ],
247 'dependencies': [ 247 'dependencies': [
248 '../base/base.gyp:base_i18n', 248 '../base/base.gyp:base_i18n',
249 'mojo_application_bindings', 249 'mojo_application_bindings',
250 'mojo_message_pump_lib', 250 'mojo_message_pump_lib',
251 'mojo_services.gyp:network_type_converters', 251 'mojo_services.gyp:network_type_converters',
252 ], 252 ],
253 }, 253 },
254 { 254 {
255 # GN version: //mojo/public/interfaces/application:application 255 # GN version: //mojo/public/interfaces/application:application
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 '../build/isolate.gypi', 365 '../build/isolate.gypi',
366 ], 366 ],
367 'sources': [ 367 'sources': [
368 'mojo_common_unittests.isolate', 368 'mojo_common_unittests.isolate',
369 ], 369 ],
370 }, 370 },
371 ], 371 ],
372 }], 372 }],
373 ] 373 ]
374 } 374 }
OLDNEW
« no previous file with comments | « mash/example/window_type_launcher/main.cc ('k') | mojo/public/cpp/bindings/tests/versioning_test_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698