| 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 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "focus_controller_delegate.h", | 32 "focus_controller_delegate.h", |
| 33 "focus_controller_observer.h", | 33 "focus_controller_observer.h", |
| 34 "operation.cc", | 34 "operation.cc", |
| 35 "operation.h", | 35 "operation.h", |
| 36 "platform_display.cc", | 36 "platform_display.cc", |
| 37 "platform_display.h", | 37 "platform_display.h", |
| 38 "platform_display_delegate.h", | 38 "platform_display_delegate.h", |
| 39 "platform_display_factory.h", | 39 "platform_display_factory.h", |
| 40 "platform_display_init_params.cc", | 40 "platform_display_init_params.cc", |
| 41 "platform_display_init_params.h", | 41 "platform_display_init_params.h", |
| 42 "platform_screen.h", |
| 43 "platform_screen_impl.cc", |
| 44 "platform_screen_impl.h", |
| 42 "server_window.cc", | 45 "server_window.cc", |
| 43 "server_window.h", | 46 "server_window.h", |
| 44 "server_window_delegate.h", | 47 "server_window_delegate.h", |
| 45 "server_window_drawn_tracker.cc", | 48 "server_window_drawn_tracker.cc", |
| 46 "server_window_drawn_tracker.h", | 49 "server_window_drawn_tracker.h", |
| 47 "server_window_drawn_tracker_observer.h", | 50 "server_window_drawn_tracker_observer.h", |
| 48 "server_window_observer.h", | 51 "server_window_observer.h", |
| 49 "server_window_surface.cc", | 52 "server_window_surface.cc", |
| 50 "server_window_surface.h", | 53 "server_window_surface.h", |
| 51 "server_window_surface_manager.cc", | 54 "server_window_surface_manager.cc", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "//ui/events/platform", | 111 "//ui/events/platform", |
| 109 "//ui/gfx", | 112 "//ui/gfx", |
| 110 "//ui/gfx/geometry", | 113 "//ui/gfx/geometry", |
| 111 "//ui/gl", | 114 "//ui/gl", |
| 112 "//ui/mojo/geometry:interfaces", | 115 "//ui/mojo/geometry:interfaces", |
| 113 "//ui/platform_window", | 116 "//ui/platform_window", |
| 114 "//ui/platform_window:platform_impls", | 117 "//ui/platform_window:platform_impls", |
| 115 ] | 118 ] |
| 116 | 119 |
| 117 if (use_ozone) { | 120 if (use_ozone) { |
| 121 sources -= [ |
| 122 "platform_screen_impl.cc", |
| 123 "platform_screen_impl.h", |
| 124 ] |
| 125 sources += [ |
| 126 "platform_screen_impl_ozone.cc", |
| 127 "platform_screen_impl_ozone.h", |
| 128 ] |
| 118 deps += [ "//ui/ozone:ozone" ] | 129 deps += [ "//ui/ozone:ozone" ] |
| 119 } | 130 } |
| 120 } | 131 } |
| 121 | 132 |
| 122 source_set("test_interface") { | 133 source_set("test_interface") { |
| 123 sources = [ | 134 sources = [ |
| 124 "window_server_test_impl.cc", | 135 "window_server_test_impl.cc", |
| 125 "window_server_test_impl.h", | 136 "window_server_test_impl.h", |
| 126 ] | 137 ] |
| 127 | 138 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 239 |
| 229 data_deps = [ | 240 data_deps = [ |
| 230 ":mus_ws_unittests_app_manifest", | 241 ":mus_ws_unittests_app_manifest", |
| 231 ] | 242 ] |
| 232 } | 243 } |
| 233 | 244 |
| 234 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 245 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 235 application_name = "mus_ws_unittests_app" | 246 application_name = "mus_ws_unittests_app" |
| 236 source = "mus_ws_unittests_app_manifest.json" | 247 source = "mus_ws_unittests_app_manifest.json" |
| 237 } | 248 } |
| OLD | NEW |