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

Unified Diff: mojo/mojo_services.gypi

Issue 396563002: Window Manager service.. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: mojo/mojo_services.gypi
diff --git a/mojo/mojo_services.gypi b/mojo/mojo_services.gypi
index 26298a445b7dc91c48c2efc3fa9f83ef945a9e55..4baf86d7878db6d424a6a32739738e050ff91491 100644
--- a/mojo/mojo_services.gypi
+++ b/mojo/mojo_services.gypi
@@ -603,6 +603,77 @@
'mojo_profile_service_bindings',
],
},
+ {
+ 'target_name': 'mojo_core_window_manager_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'services/public/interfaces/window_manager/window_manager.mojom',
+ ],
+ 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ 'mojo_cpp_bindings',
+ ],
+ 'dependencies': [
+ 'mojo_cpp_bindings',
+ ],
+ },
+ {
+ 'target_name': 'mojo_core_window_manager',
+ 'type': 'loadable_module',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../ui/base/ui_base.gyp:ui_base',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../ui/gfx/gfx.gyp:gfx_geometry',
+ '../ui/wm/wm.gyp:wm',
+ 'mojo_application',
+ 'mojo_aura_support',
+ 'mojo_common_lib',
+ 'mojo_core_window_manager_bindings',
+ 'mojo_environment_chromium',
+ 'mojo_view_manager_lib',
+ '<(mojo_system_for_loadable_module)',
+ ],
+ 'sources': [
+ 'public/cpp/application/lib/mojo_main_chromium.cc',
+ 'services/window_manager/window_manager_app.cc',
+ 'services/window_manager/window_manager_app.h',
+ 'services/window_manager/window_manager_service_impl.cc',
+ 'services/window_manager/window_manager_service_impl.h',
+ ],
+ },
+ {
+ 'target_name': 'mojo_core_window_manager_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:test_support_base',
+ '../testing/gtest.gyp:gtest',
+ '../ui/gl/gl.gyp:gl',
+ 'mojo_core_window_manager_bindings',
+ 'mojo_environment_chromium',
+ 'mojo_service_manager',
+ 'mojo_shell_test_support',
+ 'mojo_view_manager_bindings',
+ '<(mojo_system_for_loadable_module)',
+ ],
+ 'sources': [
+ 'services/window_manager/window_manager_api_unittest.cc',
+ 'services/window_manager/window_manager_unittests.cc',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../third_party/mesa/mesa.gyp:osmesa',
+ 'mojo_native_viewport_service',
+ ],
+ }],
+ ['use_x11==1', {
+ 'dependencies': [
+ '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
+ ],
+ }],
+ ],
+ },
],
'conditions': [
['use_aura==1', {

Powered by Google App Engine
This is Rietveld 408576698