| 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.cc", |
| 43 "platform_screen.h", |
| 42 "server_window.cc", | 44 "server_window.cc", |
| 43 "server_window.h", | 45 "server_window.h", |
| 44 "server_window_delegate.h", | 46 "server_window_delegate.h", |
| 45 "server_window_drawn_tracker.cc", | 47 "server_window_drawn_tracker.cc", |
| 46 "server_window_drawn_tracker.h", | 48 "server_window_drawn_tracker.h", |
| 47 "server_window_drawn_tracker_observer.h", | 49 "server_window_drawn_tracker_observer.h", |
| 48 "server_window_observer.h", | 50 "server_window_observer.h", |
| 49 "server_window_surface.cc", | 51 "server_window_surface.cc", |
| 50 "server_window_surface.h", | 52 "server_window_surface.h", |
| 51 "server_window_surface_manager.cc", | 53 "server_window_surface_manager.cc", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//ui/events/platform", | 109 "//ui/events/platform", |
| 108 "//ui/gfx", | 110 "//ui/gfx", |
| 109 "//ui/gfx/geometry", | 111 "//ui/gfx/geometry", |
| 110 "//ui/gl", | 112 "//ui/gl", |
| 111 "//ui/mojo/geometry:interfaces", | 113 "//ui/mojo/geometry:interfaces", |
| 112 "//ui/platform_window", | 114 "//ui/platform_window", |
| 113 "//ui/platform_window:platform_impls", | 115 "//ui/platform_window:platform_impls", |
| 114 ] | 116 ] |
| 115 | 117 |
| 116 if (use_ozone) { | 118 if (use_ozone) { |
| 119 sources -= [ "platform_screen.cc" ] |
| 120 sources += [ "platform_screen_ozone.cc" ] |
| 117 deps += [ "//ui/ozone:ozone" ] | 121 deps += [ "//ui/ozone:ozone" ] |
| 118 } | 122 } |
| 119 } | 123 } |
| 120 | 124 |
| 121 source_set("test_interface") { | 125 source_set("test_interface") { |
| 122 sources = [ | 126 sources = [ |
| 123 "window_server_test_impl.cc", | 127 "window_server_test_impl.cc", |
| 124 "window_server_test_impl.h", | 128 "window_server_test_impl.h", |
| 125 ] | 129 ] |
| 126 | 130 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 232 |
| 229 data_deps = [ | 233 data_deps = [ |
| 230 ":mus_ws_unittests_app_manifest", | 234 ":mus_ws_unittests_app_manifest", |
| 231 ] | 235 ] |
| 232 } | 236 } |
| 233 | 237 |
| 234 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 238 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 235 application_name = "mus_ws_unittests_app" | 239 application_name = "mus_ws_unittests_app" |
| 236 source = "mus_ws_unittests_app_manifest.json" | 240 source = "mus_ws_unittests_app_manifest.json" |
| 237 } | 241 } |
| OLD | NEW |