Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: components/mus/ws/BUILD.gn

Issue 2072573002: Basic support for animating window properties in Mus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@launcher_controller_mus_mus_3
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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") {
11 sources = [ 11 sources = [
12 "accelerator.cc", 12 "accelerator.cc",
13 "accelerator.h", 13 "accelerator.h",
14 "access_policy.h", 14 "access_policy.h",
15 "access_policy_delegate.h", 15 "access_policy_delegate.h",
16 "animation_runner.cc",
17 "animation_runner.h",
18 "animation_runner_observer.h",
16 "default_access_policy.cc", 19 "default_access_policy.cc",
17 "default_access_policy.h", 20 "default_access_policy.h",
18 "display.cc", 21 "display.cc",
19 "display.h", 22 "display.h",
20 "display_binding.cc", 23 "display_binding.cc",
21 "display_binding.h", 24 "display_binding.h",
22 "display_manager.cc", 25 "display_manager.cc",
23 "display_manager.h", 26 "display_manager.h",
24 "display_manager_delegate.h", 27 "display_manager_delegate.h",
25 "event_dispatcher.cc", 28 "event_dispatcher.cc",
(...skipping 11 matching lines...) Expand all
37 "operation.h", 40 "operation.h",
38 "platform_display.cc", 41 "platform_display.cc",
39 "platform_display.h", 42 "platform_display.h",
40 "platform_display_delegate.h", 43 "platform_display_delegate.h",
41 "platform_display_factory.h", 44 "platform_display_factory.h",
42 "platform_display_init_params.cc", 45 "platform_display_init_params.cc",
43 "platform_display_init_params.h", 46 "platform_display_init_params.h",
44 "platform_screen.h", 47 "platform_screen.h",
45 "platform_screen_impl.cc", 48 "platform_screen_impl.cc",
46 "platform_screen_impl.h", 49 "platform_screen_impl.h",
50 "scheduled_animation_group.cc",
51 "scheduled_animation_group.h",
47 "server_window.cc", 52 "server_window.cc",
48 "server_window.h", 53 "server_window.h",
49 "server_window_delegate.h", 54 "server_window_delegate.h",
50 "server_window_drawn_tracker.cc", 55 "server_window_drawn_tracker.cc",
51 "server_window_drawn_tracker.h", 56 "server_window_drawn_tracker.h",
52 "server_window_drawn_tracker_observer.h", 57 "server_window_drawn_tracker_observer.h",
53 "server_window_observer.h", 58 "server_window_observer.h",
54 "server_window_surface.cc", 59 "server_window_surface.cc",
55 "server_window_surface.h", 60 "server_window_surface.h",
56 "server_window_surface_manager.cc", 61 "server_window_surface_manager.cc",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 deps = [ 174 deps = [
170 ":mus_ws_unittests", 175 ":mus_ws_unittests",
171 ] 176 ]
172 if (!is_android) { 177 if (!is_android) {
173 deps += [ "//components/mus/public/cpp/tests:mus_public_unittests" ] 178 deps += [ "//components/mus/public/cpp/tests:mus_public_unittests" ]
174 } 179 }
175 } 180 }
176 181
177 test("mus_ws_unittests") { 182 test("mus_ws_unittests") {
178 sources = [ 183 sources = [
184 "animation_runner_unittest.cc",
179 "cursor_unittest.cc", 185 "cursor_unittest.cc",
180 "display_unittest.cc", 186 "display_unittest.cc",
181 "event_dispatcher_unittest.cc", 187 "event_dispatcher_unittest.cc",
182 "event_matcher_unittest.cc", 188 "event_matcher_unittest.cc",
183 "focus_controller_unittest.cc", 189 "focus_controller_unittest.cc",
190 "scheduled_animation_group_unittest.cc",
184 "server_window_drawn_tracker_unittest.cc", 191 "server_window_drawn_tracker_unittest.cc",
185 "server_window_surface_manager_test_api.cc", 192 "server_window_surface_manager_test_api.cc",
186 "server_window_surface_manager_test_api.h", 193 "server_window_surface_manager_test_api.h",
187 "test_server_window_delegate.cc", 194 "test_server_window_delegate.cc",
188 "test_server_window_delegate.h", 195 "test_server_window_delegate.h",
189 "test_utils.cc", 196 "test_utils.cc",
190 "test_utils.h", 197 "test_utils.h",
191 "transient_windows_unittest.cc", 198 "transient_windows_unittest.cc",
192 "user_display_manager_unittest.cc", 199 "user_display_manager_unittest.cc",
193 "window_coordinate_conversions_unittest.cc", 200 "window_coordinate_conversions_unittest.cc",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 238
232 data_deps = [ 239 data_deps = [
233 ":mus_ws_unittests_app_manifest", 240 ":mus_ws_unittests_app_manifest",
234 ] 241 ]
235 } 242 }
236 243
237 mojo_application_manifest("mus_ws_unittests_app_manifest") { 244 mojo_application_manifest("mus_ws_unittests_app_manifest") {
238 application_name = "mus_ws_unittests_app" 245 application_name = "mus_ws_unittests_app"
239 source = "mus_ws_unittests_app_manifest.json" 246 source = "mus_ws_unittests_app_manifest.json"
240 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698