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

Side by Side Diff: mojo/mojo.gyp

Issue 256133002: Changes view manager test to connect via shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge to trunk Created 6 years, 7 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 | « no previous file | mojo/mojo_services.gypi » ('j') | mojo/shell/context.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 'spy/spy.cc', 431 'spy/spy.cc',
432 'spy/spy.h', 432 'spy/spy.h',
433 ], 433 ],
434 }, 434 },
435 { 435 {
436 'target_name': 'mojo_shell_lib', 436 'target_name': 'mojo_shell_lib',
437 'type': 'static_library', 437 'type': 'static_library',
438 'dependencies': [ 438 'dependencies': [
439 '../base/base.gyp:base', 439 '../base/base.gyp:base',
440 '../base/base.gyp:base_static', 440 '../base/base.gyp:base_static',
441 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
441 '../net/net.gyp:net', 442 '../net/net.gyp:net',
442 '../url/url.gyp:url_lib', 443 '../url/url.gyp:url_lib',
443 'mojo_external_service_bindings', 444 'mojo_external_service_bindings',
444 'mojo_gles2_impl', 445 'mojo_gles2_impl',
445 'mojo_service_manager', 446 'mojo_service_manager',
446 'mojo_shell_bindings', 447 'mojo_shell_bindings',
447 'mojo_system_impl', 448 'mojo_system_impl',
448 'mojo_native_viewport_service', 449 'mojo_native_viewport_service',
449 'mojo_spy', 450 'mojo_spy',
451
452 # These are only necessary as long as we hard code use of ViewManager.
453 '../skia/skia.gyp:skia',
454 'mojo_shell_client',
455 'mojo_view_manager',
450 ], 456 ],
451 'variables': { 457 'variables': {
452 'mojom_base_output_dir': 'mojo', 458 'mojom_base_output_dir': 'mojo',
453 }, 459 },
454 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 460 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
455 'sources': [ 461 'sources': [
456 'shell/app_child_process.cc', 462 'shell/app_child_process.cc',
457 'shell/app_child_process.h', 463 'shell/app_child_process.h',
458 'shell/app_child_process.mojom', 464 'shell/app_child_process.mojom',
459 'shell/app_child_process_host.cc', 465 'shell/app_child_process_host.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'conditions': [ 503 'conditions': [
498 ['OS=="linux"', { 504 ['OS=="linux"', {
499 'dependencies': [ 505 'dependencies': [
500 '../build/linux/system.gyp:dbus', 506 '../build/linux/system.gyp:dbus',
501 '../dbus/dbus.gyp:dbus', 507 '../dbus/dbus.gyp:dbus',
502 ], 508 ],
503 }], 509 }],
504 ], 510 ],
505 }, 511 },
506 { 512 {
513 'target_name': 'mojo_shell_test_support',
514 'type': 'static_library',
515 'dependencies': [
516 '../base/base.gyp:base',
517 '../base/base.gyp:base_static',
518 '../url/url.gyp:url_lib',
519 'mojo_service_manager',
520 'mojo_shell_lib',
521 'mojo_system_impl',
522 ],
523 'sources': [
524 'shell/shell_test_helper.cc',
525 'shell/shell_test_helper.h',
526 ],
527 },
528 {
507 'target_name': 'mojo_shell', 529 'target_name': 'mojo_shell',
508 'type': 'executable', 530 'type': 'executable',
509 'dependencies': [ 531 'dependencies': [
510 '../base/base.gyp:base', 532 '../base/base.gyp:base',
511 '../ui/gl/gl.gyp:gl', 533 '../ui/gl/gl.gyp:gl',
512 '../url/url.gyp:url_lib', 534 '../url/url.gyp:url_lib',
513 'mojo_common_lib', 535 'mojo_common_lib',
514 'mojo_environment_chromium', 536 'mojo_environment_chromium',
515 'mojo_service_manager', 537 'mojo_service_manager',
516 'mojo_shell_lib', 538 'mojo_shell_lib',
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 'mojo_js_unittests.isolate', 776 'mojo_js_unittests.isolate',
755 ], 777 ],
756 'sources': [ 778 'sources': [
757 'mojo_js_unittests.isolate', 779 'mojo_js_unittests.isolate',
758 ], 780 ],
759 }, 781 },
760 ], 782 ],
761 }], 783 }],
762 ], 784 ],
763 } 785 }
OLDNEW
« no previous file with comments | « no previous file | mojo/mojo_services.gypi » ('j') | mojo/shell/context.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698