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