| 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 28 matching lines...) Expand all Loading... |
| 39 "modal_window_controller.cc", | 39 "modal_window_controller.cc", |
| 40 "modal_window_controller.h", | 40 "modal_window_controller.h", |
| 41 "operation.cc", | 41 "operation.cc", |
| 42 "operation.h", | 42 "operation.h", |
| 43 "platform_display.cc", | 43 "platform_display.cc", |
| 44 "platform_display.h", | 44 "platform_display.h", |
| 45 "platform_display_delegate.h", | 45 "platform_display_delegate.h", |
| 46 "platform_display_factory.h", | 46 "platform_display_factory.h", |
| 47 "platform_display_init_params.cc", | 47 "platform_display_init_params.cc", |
| 48 "platform_display_init_params.h", | 48 "platform_display_init_params.h", |
| 49 "platform_screen.h", | |
| 50 "platform_screen_impl.cc", | |
| 51 "platform_screen_impl.h", | |
| 52 "scheduled_animation_group.cc", | 49 "scheduled_animation_group.cc", |
| 53 "scheduled_animation_group.h", | 50 "scheduled_animation_group.h", |
| 54 "server_window.cc", | 51 "server_window.cc", |
| 55 "server_window.h", | 52 "server_window.h", |
| 56 "server_window_delegate.h", | 53 "server_window_delegate.h", |
| 57 "server_window_drawn_tracker.cc", | 54 "server_window_drawn_tracker.cc", |
| 58 "server_window_drawn_tracker.h", | 55 "server_window_drawn_tracker.h", |
| 59 "server_window_drawn_tracker_observer.h", | 56 "server_window_drawn_tracker_observer.h", |
| 60 "server_window_observer.h", | 57 "server_window_observer.h", |
| 61 "server_window_surface.cc", | 58 "server_window_surface.cc", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//cc", | 104 "//cc", |
| 108 "//cc/ipc:interfaces", | 105 "//cc/ipc:interfaces", |
| 109 "//cc/surfaces", | 106 "//cc/surfaces", |
| 110 "//cc/surfaces:surface_id", | 107 "//cc/surfaces:surface_id", |
| 111 "//mojo/common:common_base", | 108 "//mojo/common:common_base", |
| 112 "//mojo/public/cpp/bindings", | 109 "//mojo/public/cpp/bindings", |
| 113 "//services/shell/public/cpp", | 110 "//services/shell/public/cpp", |
| 114 "//services/shell/public/interfaces", | 111 "//services/shell/public/interfaces", |
| 115 "//services/tracing/public/cpp", | 112 "//services/tracing/public/cpp", |
| 116 "//services/ui/common:mus_common", | 113 "//services/ui/common:mus_common", |
| 114 "//services/ui/display", |
| 117 "//services/ui/gles2", | 115 "//services/ui/gles2", |
| 118 "//services/ui/public/interfaces", | 116 "//services/ui/public/interfaces", |
| 119 "//services/ui/surfaces", | 117 "//services/ui/surfaces", |
| 120 "//ui/base", | 118 "//ui/base", |
| 121 "//ui/display", | 119 "//ui/display", |
| 122 "//ui/events", | 120 "//ui/events", |
| 123 "//ui/events/devices", | 121 "//ui/events/devices", |
| 124 "//ui/events/platform", | 122 "//ui/events/platform", |
| 125 "//ui/gfx", | 123 "//ui/gfx", |
| 126 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
| 127 "//ui/gfx/geometry/mojo", | 125 "//ui/gfx/geometry/mojo", |
| 128 "//ui/gl", | 126 "//ui/gl", |
| 129 "//ui/platform_window", | 127 "//ui/platform_window", |
| 130 "//ui/platform_window:platform_impls", | 128 "//ui/platform_window:platform_impls", |
| 131 "//ui/platform_window/mojo", | 129 "//ui/platform_window/mojo", |
| 132 ] | 130 ] |
| 133 | 131 |
| 134 if (use_ozone) { | 132 if (use_ozone) { |
| 135 if (is_chromeos) { | |
| 136 sources -= [ | |
| 137 "platform_screen_impl.cc", | |
| 138 "platform_screen_impl.h", | |
| 139 ] | |
| 140 sources += [ | |
| 141 "platform_screen_impl_ozone.cc", | |
| 142 "platform_screen_impl_ozone.h", | |
| 143 ] | |
| 144 } | |
| 145 | |
| 146 public_deps += [ "//ui/ozone:ozone" ] | 133 public_deps += [ "//ui/ozone:ozone" ] |
| 147 } | 134 } |
| 148 } | 135 } |
| 149 | 136 |
| 150 source_set("test_interface") { | 137 source_set("test_interface") { |
| 151 sources = [ | 138 sources = [ |
| 152 "window_server_test_impl.cc", | 139 "window_server_test_impl.cc", |
| 153 "window_server_test_impl.h", | 140 "window_server_test_impl.h", |
| 154 ] | 141 ] |
| 155 | 142 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 237 |
| 251 data_deps = [ | 238 data_deps = [ |
| 252 ":mus_ws_unittests_app_manifest", | 239 ":mus_ws_unittests_app_manifest", |
| 253 ] | 240 ] |
| 254 } | 241 } |
| 255 | 242 |
| 256 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 243 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 257 application_name = "mus_ws_unittests_app" | 244 application_name = "mus_ws_unittests_app" |
| 258 source = "mus_ws_unittests_app_manifest.json" | 245 source = "mus_ws_unittests_app_manifest.json" |
| 259 } | 246 } |
| OLD | NEW |