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

Side by Side Diff: mojo/mojo_services.gypi

Issue 314293002: Mojo: Add a trivial end-to-end (in-process) test of Mojo shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review 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
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/services/test_service/test_service.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 'dependencies': [ 311 'dependencies': [
312 'mojo_view_manager_run_unittests' 312 'mojo_view_manager_run_unittests'
313 ], 313 ],
314 }, { # use_aura==0 314 }, { # use_aura==0
315 'dependencies': [ 315 'dependencies': [
316 'mojo_run_all_unittests', 316 'mojo_run_all_unittests',
317 ], 317 ],
318 }] 318 }]
319 ], 319 ],
320 }, 320 },
321 {
322 'target_name': 'mojo_test_service_bindings',
323 'type': 'static_library',
324 'sources': [
325 'services/test_service/test_service.mojom',
326 ],
327 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
328 'export_dependent_settings': [
329 'mojo_cpp_bindings',
330 ],
331 'dependencies': [
332 'mojo_cpp_bindings',
333 ],
334 },
335 {
336 'target_name': 'mojo_test_service',
337 'type': 'shared_library',
338 'dependencies': [
339 '../base/base.gyp:base',
340 'mojo_application',
341 'mojo_common_lib',
342 'mojo_environment_standalone',
343 'mojo_test_service_bindings',
344 'mojo_system_impl',
345 'mojo_utility',
346 ],
347 'sources': [
348 'public/cpp/application/lib/mojo_main_standalone.cc',
349 'services/test_service/test_service_application.cc',
350 'services/test_service/test_service_impl.cc',
351 'services/test_service/test_service_impl.h',
352 ],
353 },
321 ], 354 ],
322 'conditions': [ 355 'conditions': [
323 ['use_aura==1', { 356 ['use_aura==1', {
324 'targets': [ 357 'targets': [
325 { 358 {
326 'target_name': 'mojo_view_manager', 359 'target_name': 'mojo_view_manager',
327 'type': '<(component)', 360 'type': '<(component)',
328 'dependencies': [ 361 'dependencies': [
329 '../base/base.gyp:base', 362 '../base/base.gyp:base',
330 '../cc/cc.gyp:cc', 363 '../cc/cc.gyp:cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 'mojo_system_impl', 483 'mojo_system_impl',
451 ], 484 ],
452 'sources': [ 485 'sources': [
453 'services/dbus_echo/dbus_echo_service.cc', 486 'services/dbus_echo/dbus_echo_service.cc',
454 ], 487 ],
455 }, 488 },
456 ], 489 ],
457 }], 490 }],
458 ], 491 ],
459 } 492 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/services/test_service/test_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698