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

Side by Side Diff: mojo/mojo_services.gypi

Issue 474883003: Move focus from the view manager to the window manager. (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/mojo_examples.gypi ('k') | mojo/services/public/cpp/view_manager/BUILD.gn » ('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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'target_name': 'mojo_view_manager_lib', 474 'target_name': 'mojo_view_manager_lib',
475 'type': 'static_library', 475 'type': 'static_library',
476 'dependencies': [ 476 'dependencies': [
477 '../base/base.gyp:base', 477 '../base/base.gyp:base',
478 '../skia/skia.gyp:skia', 478 '../skia/skia.gyp:skia',
479 '../ui/events/events.gyp:events', 479 '../ui/events/events.gyp:events',
480 '../ui/gfx/gfx.gyp:gfx', 480 '../ui/gfx/gfx.gyp:gfx',
481 '../ui/gfx/gfx.gyp:gfx_geometry', 481 '../ui/gfx/gfx.gyp:gfx_geometry',
482 'mojo_base.gyp:mojo_application_chromium', 482 'mojo_base.gyp:mojo_application_chromium',
483 'mojo_base.gyp:mojo_application_bindings', 483 'mojo_base.gyp:mojo_application_bindings',
484 'mojo_core_window_manager_bindings',
484 'mojo_geometry_bindings', 485 'mojo_geometry_bindings',
485 'mojo_geometry_lib', 486 'mojo_geometry_lib',
486 'mojo_view_manager_bindings', 487 'mojo_view_manager_bindings',
487 'mojo_view_manager_common', 488 'mojo_view_manager_common',
488 ], 489 ],
489 'sources': [ 490 'sources': [
490 'services/public/cpp/view_manager/lib/view.cc', 491 'services/public/cpp/view_manager/lib/view.cc',
491 'services/public/cpp/view_manager/lib/view_manager_client_factory.cc', 492 'services/public/cpp/view_manager/lib/view_manager_client_factory.cc',
492 'services/public/cpp/view_manager/lib/view_manager_client_impl.cc', 493 'services/public/cpp/view_manager/lib/view_manager_client_impl.cc',
493 'services/public/cpp/view_manager/lib/view_manager_client_impl.h', 494 'services/public/cpp/view_manager/lib/view_manager_client_impl.h',
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 '../base/base.gyp:base', 779 '../base/base.gyp:base',
779 '../ui/base/ui_base.gyp:ui_base', 780 '../ui/base/ui_base.gyp:ui_base',
780 '../ui/gfx/gfx.gyp:gfx', 781 '../ui/gfx/gfx.gyp:gfx',
781 '../ui/gfx/gfx.gyp:gfx_geometry', 782 '../ui/gfx/gfx.gyp:gfx_geometry',
782 '../ui/wm/wm.gyp:wm', 783 '../ui/wm/wm.gyp:wm',
783 'mojo_base.gyp:mojo_common_lib', 784 'mojo_base.gyp:mojo_common_lib',
784 'mojo_base.gyp:mojo_environment_chromium', 785 'mojo_base.gyp:mojo_environment_chromium',
785 'mojo_base.gyp:mojo_application_chromium', 786 'mojo_base.gyp:mojo_application_chromium',
786 'mojo_aura_support', 787 'mojo_aura_support',
787 'mojo_core_window_manager_bindings', 788 'mojo_core_window_manager_bindings',
789 'mojo_input_events_lib',
788 'mojo_view_manager_lib', 790 'mojo_view_manager_lib',
789 ], 791 ],
790 'sources': [ 792 'sources': [
791 'services/window_manager/window_manager_app.cc', 793 'services/window_manager/window_manager_app.cc',
792 'services/window_manager/window_manager_app.h', 794 'services/window_manager/window_manager_app.h',
793 'services/window_manager/window_manager_service_impl.cc', 795 'services/window_manager/window_manager_service_impl.cc',
794 'services/window_manager/window_manager_service_impl.h', 796 'services/window_manager/window_manager_service_impl.h',
795 ], 797 ],
796 }, 798 },
797 { 799 {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 'mojo_echo_bindings', 860 'mojo_echo_bindings',
859 ], 861 ],
860 'sources': [ 862 'sources': [
861 'services/dbus_echo/dbus_echo_service.cc', 863 'services/dbus_echo/dbus_echo_service.cc',
862 ], 864 ],
863 }, 865 },
864 ], 866 ],
865 }], 867 }],
866 ], 868 ],
867 } 869 }
OLDNEW
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/services/public/cpp/view_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698