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

Side by Side Diff: mojo/mojo_services.gypi

Issue 460863002: Rename Node to View in the View Manager mojom & client lib. Service TBD. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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/examples/wm_flow/wm/wm.cc ('k') | mojo/services/html_viewer/html_document_view.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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //mojo/services/dbus_echo:bindings 8 # GN version: //mojo/services/dbus_echo:bindings
9 'target_name': 'mojo_echo_bindings', 9 'target_name': 'mojo_echo_bindings',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 '../ui/gfx/gfx.gyp:gfx', 539 '../ui/gfx/gfx.gyp:gfx',
540 '../ui/gfx/gfx.gyp:gfx_geometry', 540 '../ui/gfx/gfx.gyp:gfx_geometry',
541 'mojo_base.gyp:mojo_application_chromium', 541 'mojo_base.gyp:mojo_application_chromium',
542 'mojo_base.gyp:mojo_application_bindings', 542 'mojo_base.gyp:mojo_application_bindings',
543 'mojo_geometry_bindings', 543 'mojo_geometry_bindings',
544 'mojo_geometry_lib', 544 'mojo_geometry_lib',
545 'mojo_view_manager_bindings', 545 'mojo_view_manager_bindings',
546 'mojo_view_manager_common', 546 'mojo_view_manager_common',
547 ], 547 ],
548 'sources': [ 548 'sources': [
549 'services/public/cpp/view_manager/lib/node.cc', 549 'services/public/cpp/view_manager/lib/view.cc',
550 'services/public/cpp/view_manager/lib/node_observer.cc',
551 'services/public/cpp/view_manager/lib/node_private.cc',
552 'services/public/cpp/view_manager/lib/node_private.h',
553 'services/public/cpp/view_manager/lib/view_manager_client_factory.cc', 550 'services/public/cpp/view_manager/lib/view_manager_client_factory.cc',
554 'services/public/cpp/view_manager/lib/view_manager_client_impl.cc', 551 'services/public/cpp/view_manager/lib/view_manager_client_impl.cc',
555 'services/public/cpp/view_manager/lib/view_manager_client_impl.h', 552 'services/public/cpp/view_manager/lib/view_manager_client_impl.h',
556 'services/public/cpp/view_manager/node.h', 553 'services/public/cpp/view_manager/lib/view_observer.cc',
557 'services/public/cpp/view_manager/node_observer.h', 554 'services/public/cpp/view_manager/lib/view_private.cc',
555 'services/public/cpp/view_manager/lib/view_private.h',
556 'services/public/cpp/view_manager/view.h',
558 'services/public/cpp/view_manager/view_manager.h', 557 'services/public/cpp/view_manager/view_manager.h',
559 'services/public/cpp/view_manager/view_manager_client_factory.h', 558 'services/public/cpp/view_manager/view_manager_client_factory.h',
560 'services/public/cpp/view_manager/view_manager_delegate.h', 559 'services/public/cpp/view_manager/view_manager_delegate.h',
560 'services/public/cpp/view_manager/view_observer.h',
561 'services/public/cpp/view_manager/window_manager_delegate.h', 561 'services/public/cpp/view_manager/window_manager_delegate.h',
562 ], 562 ],
563 'export_dependent_settings': [ 563 'export_dependent_settings': [
564 'mojo_view_manager_bindings', 564 'mojo_view_manager_bindings',
565 ], 565 ],
566 }, 566 },
567 { 567 {
568 'target_name': 'mojo_view_manager_lib_unittests', 568 'target_name': 'mojo_view_manager_lib_unittests',
569 'type': 'executable', 569 'type': 'executable',
570 'dependencies': [ 570 'dependencies': [
571 '../base/base.gyp:base', 571 '../base/base.gyp:base',
572 '../base/base.gyp:test_support_base', 572 '../base/base.gyp:test_support_base',
573 '../testing/gtest.gyp:gtest', 573 '../testing/gtest.gyp:gtest',
574 '../ui/gfx/gfx.gyp:gfx', 574 '../ui/gfx/gfx.gyp:gfx',
575 '../ui/gfx/gfx.gyp:gfx_test_support', 575 '../ui/gfx/gfx.gyp:gfx_test_support',
576 'mojo_base.gyp:mojo_environment_chromium', 576 'mojo_base.gyp:mojo_environment_chromium',
577 'mojo_geometry_bindings', 577 'mojo_geometry_bindings',
578 'mojo_geometry_lib', 578 'mojo_geometry_lib',
579 'mojo_shell_test_support', 579 'mojo_shell_test_support',
580 'mojo_view_manager_bindings', 580 'mojo_view_manager_bindings',
581 'mojo_view_manager_lib', 581 'mojo_view_manager_lib',
582 ], 582 ],
583 'sources': [ 583 'sources': [
584 'services/public/cpp/view_manager/tests/node_unittest.cc',
585 'services/public/cpp/view_manager/tests/view_unittest.cc', 584 'services/public/cpp/view_manager/tests/view_unittest.cc',
586 'services/public/cpp/view_manager/tests/view_manager_unittest.cc', 585 'services/public/cpp/view_manager/tests/view_manager_unittest.cc',
587 ], 586 ],
588 'conditions': [ 587 'conditions': [
589 ['use_aura==1', { 588 ['use_aura==1', {
590 'dependencies': [ 589 'dependencies': [
591 'mojo_view_manager_run_unittests' 590 'mojo_view_manager_run_unittests'
592 ], 591 ],
593 }, { # use_aura==0 592 }, { # use_aura==0
594 'dependencies': [ 593 'dependencies': [
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 'mojo_echo_bindings', 917 'mojo_echo_bindings',
919 ], 918 ],
920 'sources': [ 919 'sources': [
921 'services/dbus_echo/dbus_echo_service.cc', 920 'services/dbus_echo/dbus_echo_service.cc',
922 ], 921 ],
923 }, 922 },
924 ], 923 ],
925 }], 924 }],
926 ], 925 ],
927 } 926 }
OLDNEW
« no previous file with comments | « mojo/examples/wm_flow/wm/wm.cc ('k') | mojo/services/html_viewer/html_document_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698