| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 | 7 |
| 8 mojo_native_application("window_manager") { | 8 mojo_native_application("window_manager") { |
| 9 sources = [ | 9 sources = [ |
| 10 "main.cc", | 10 "main.cc", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 public_deps = [ | 13 public_deps = [ |
| 14 ":lib", | 14 ":lib", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//mojo/application", | 19 "//mojo/application", |
| 20 "//mojo/common:tracing_impl", | 20 "//mojo/common:tracing_impl", |
| 21 "//mojo/services/view_manager/public/cpp", | 21 "//mojo/services/view_manager/public/cpp", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 source_set("lib") { | 25 source_set("lib") { |
| 26 sources = [ | 26 sources = [ |
| 27 "basic_focus_rules.cc", | 27 "basic_focus_rules.cc", |
| 28 "basic_focus_rules.h", | 28 "basic_focus_rules.h", |
| 29 "capture_controller.cc", |
| 30 "capture_controller.h", |
| 31 "capture_controller_observer.h", |
| 29 "focus_controller.cc", | 32 "focus_controller.cc", |
| 30 "focus_controller.h", | 33 "focus_controller.h", |
| 31 "focus_controller_observer.h", | 34 "focus_controller_observer.h", |
| 32 "focus_rules.h", | 35 "focus_rules.h", |
| 33 "native_viewport_event_dispatcher_impl.cc", | 36 "native_viewport_event_dispatcher_impl.cc", |
| 34 "native_viewport_event_dispatcher_impl.h", | 37 "native_viewport_event_dispatcher_impl.h", |
| 35 "window_manager_app.cc", | 38 "window_manager_app.cc", |
| 36 "window_manager_app.h", | 39 "window_manager_app.h", |
| 37 "window_manager_delegate.h", | 40 "window_manager_delegate.h", |
| 38 "window_manager_impl.cc", | 41 "window_manager_impl.cc", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "//ui/events:test_support", | 96 "//ui/events:test_support", |
| 94 "//ui/gfx", | 97 "//ui/gfx", |
| 95 "//ui/gfx:test_support", | 98 "//ui/gfx:test_support", |
| 96 "//ui/gl", | 99 "//ui/gl", |
| 97 ] | 100 ] |
| 98 | 101 |
| 99 if (use_x11) { | 102 if (use_x11) { |
| 100 deps += [ "//ui/gfx/x" ] | 103 deps += [ "//ui/gfx/x" ] |
| 101 } | 104 } |
| 102 } | 105 } |
| OLD | NEW |