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

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: Replacing .empty() with .size() == 0 to account for is_null case in mojo::Array. Created 4 years, 5 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
« no previous file with comments | « components/mus/public/interfaces/animations.mojom ('k') | components/mus/ws/animation_runner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 deps = [ 178 deps = [
174 ":mus_ws_unittests", 179 ":mus_ws_unittests",
175 ] 180 ]
176 if (!is_android) { 181 if (!is_android) {
177 deps += [ "//components/mus/public/cpp/tests:mus_public_unittests" ] 182 deps += [ "//components/mus/public/cpp/tests:mus_public_unittests" ]
178 } 183 }
179 } 184 }
180 185
181 test("mus_ws_unittests") { 186 test("mus_ws_unittests") {
182 sources = [ 187 sources = [
188 "animation_runner_unittest.cc",
183 "cursor_unittest.cc", 189 "cursor_unittest.cc",
184 "display_unittest.cc", 190 "display_unittest.cc",
185 "event_dispatcher_unittest.cc", 191 "event_dispatcher_unittest.cc",
186 "event_matcher_unittest.cc", 192 "event_matcher_unittest.cc",
187 "focus_controller_unittest.cc", 193 "focus_controller_unittest.cc",
194 "scheduled_animation_group_unittest.cc",
188 "server_window_drawn_tracker_unittest.cc", 195 "server_window_drawn_tracker_unittest.cc",
189 "server_window_surface_manager_test_api.cc", 196 "server_window_surface_manager_test_api.cc",
190 "server_window_surface_manager_test_api.h", 197 "server_window_surface_manager_test_api.h",
191 "test_server_window_delegate.cc", 198 "test_server_window_delegate.cc",
192 "test_server_window_delegate.h", 199 "test_server_window_delegate.h",
193 "test_utils.cc", 200 "test_utils.cc",
194 "test_utils.h", 201 "test_utils.h",
195 "transient_windows_unittest.cc", 202 "transient_windows_unittest.cc",
196 "user_display_manager_unittest.cc", 203 "user_display_manager_unittest.cc",
197 "window_coordinate_conversions_unittest.cc", 204 "window_coordinate_conversions_unittest.cc",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 242
236 data_deps = [ 243 data_deps = [
237 ":mus_ws_unittests_app_manifest", 244 ":mus_ws_unittests_app_manifest",
238 ] 245 ]
239 } 246 }
240 247
241 mojo_application_manifest("mus_ws_unittests_app_manifest") { 248 mojo_application_manifest("mus_ws_unittests_app_manifest") {
242 application_name = "mus_ws_unittests_app" 249 application_name = "mus_ws_unittests_app"
243 source = "mus_ws_unittests_app_manifest.json" 250 source = "mus_ws_unittests_app_manifest.json"
244 } 251 }
OLDNEW
« no previous file with comments | « components/mus/public/interfaces/animations.mojom ('k') | components/mus/ws/animation_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698