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