| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| 11 "access_policy.h", | 11 "access_policy.h", |
| 12 "access_policy_delegate.h", | 12 "access_policy_delegate.h", |
| 13 "client_connection.cc", | 13 "client_connection.cc", |
| 14 "client_connection.h", | 14 "client_connection.h", |
| 15 "connection_manager.cc", | 15 "connection_manager.cc", |
| 16 "connection_manager.h", | 16 "connection_manager.h", |
| 17 "connection_manager_delegate.cc", | 17 "connection_manager_delegate.cc", |
| 18 "connection_manager_delegate.h", | 18 "connection_manager_delegate.h", |
| 19 "default_access_policy.cc", | 19 "default_access_policy.cc", |
| 20 "default_access_policy.h", | 20 "default_access_policy.h", |
| 21 "display_manager.cc", | 21 "display_manager.cc", |
| 22 "display_manager.h", | 22 "display_manager.h", |
| 23 "display_manager_delegate.h", | 23 "display_manager_delegate.h", |
| 24 "display_manager_factory.h", | 24 "display_manager_factory.h", |
| 25 "event_dispatcher.cc", | 25 "event_dispatcher.cc", |
| 26 "event_dispatcher.h", | 26 "event_dispatcher.h", |
| 27 "event_dispatcher_delegate.h", | 27 "event_dispatcher_delegate.h", |
| 28 "focus_controller.cc", | 28 "focus_controller.cc", |
| 29 "focus_controller.h", | 29 "focus_controller.h", |
| 30 "focus_controller_delegate.h", |
| 30 "focus_controller_observer.h", | 31 "focus_controller_observer.h", |
| 31 "forwarding_window_manager.cc", | 32 "forwarding_window_manager.cc", |
| 32 "forwarding_window_manager.h", | 33 "forwarding_window_manager.h", |
| 33 "operation.cc", | 34 "operation.cc", |
| 34 "operation.h", | 35 "operation.h", |
| 35 "server_window.cc", | 36 "server_window.cc", |
| 36 "server_window.h", | 37 "server_window.h", |
| 37 "server_window_delegate.h", | 38 "server_window_delegate.h", |
| 38 "server_window_drawn_tracker.cc", | 39 "server_window_drawn_tracker.cc", |
| 39 "server_window_drawn_tracker.h", | 40 "server_window_drawn_tracker.h", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "//ui/gfx:test_support", | 181 "//ui/gfx:test_support", |
| 181 "//ui/gfx/geometry", | 182 "//ui/gfx/geometry", |
| 182 "//ui/mojo/geometry:interfaces", | 183 "//ui/mojo/geometry:interfaces", |
| 183 "//ui/mojo/geometry:util", | 184 "//ui/mojo/geometry:util", |
| 184 ] | 185 ] |
| 185 | 186 |
| 186 data_deps = [ | 187 data_deps = [ |
| 187 ":lib", | 188 ":lib", |
| 188 ] | 189 ] |
| 189 } | 190 } |
| OLD | NEW |