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

Side by Side Diff: mojo/mojo_services.gypi

Issue 345773003: Mojo: teach launcher about mojo:// URLs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, add comments Created 6 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_echo_bindings', 4 'target_name': 'mojo_echo_bindings',
5 'type': 'static_library', 5 'type': 'static_library',
6 'sources': [ 6 'sources': [
7 'services/dbus_echo/echo.mojom', 7 'services/dbus_echo/echo.mojom',
8 ], 8 ],
9 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 9 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
10 'export_dependent_settings': [ 10 'export_dependent_settings': [
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'type': 'static_library', 251 'type': 'static_library',
252 'sources': [ 252 'sources': [
253 'services/public/interfaces/launcher/launcher.mojom', 253 'services/public/interfaces/launcher/launcher.mojom',
254 ], 254 ],
255 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 255 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
256 'export_dependent_settings': [ 256 'export_dependent_settings': [
257 'mojo_cpp_bindings', 257 'mojo_cpp_bindings',
258 ], 258 ],
259 'dependencies': [ 259 'dependencies': [
260 'mojo_cpp_bindings', 260 'mojo_cpp_bindings',
261 'mojo_network_bindings', 261 'mojo_navigation_bindings',
262 ], 262 ],
263 }, 263 },
264 { 264 {
265 'target_name': 'mojo_launcher', 265 'target_name': 'mojo_launcher',
266 'type': 'shared_library', 266 'type': 'shared_library',
267 'dependencies': [ 267 'dependencies': [
268 '../base/base.gyp:base', 268 '../base/base.gyp:base',
269 '../url/url.gyp:url_lib',
269 'mojo_application', 270 'mojo_application',
270 'mojo_cpp_bindings', 271 'mojo_cpp_bindings',
271 'mojo_environment_chromium', 272 'mojo_environment_chromium',
272 'mojo_launcher_bindings', 273 'mojo_launcher_bindings',
273 'mojo_network_bindings', 274 'mojo_network_bindings',
274 'mojo_system_impl', 275 'mojo_system_impl',
275 'mojo_utility', 276 'mojo_utility',
276 ], 277 ],
277 'sources': [ 278 'sources': [
278 'services/launcher/launcher.cc', 279 'services/launcher/launcher.cc',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 'mojo_system_impl', 543 'mojo_system_impl',
543 ], 544 ],
544 'sources': [ 545 'sources': [
545 'services/dbus_echo/dbus_echo_service.cc', 546 'services/dbus_echo/dbus_echo_service.cc',
546 ], 547 ],
547 }, 548 },
548 ], 549 ],
549 }], 550 }],
550 ], 551 ],
551 } 552 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698