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: services/ui/ws/BUILD.gn

Issue 2274353003: Add PlatformScreenDelegate and start implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More fixes for comments. Created 4 years, 3 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 | « services/ui/service.cc ('k') | services/ui/ws/cursor_unittest.cc » ('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("//services/shell/public/cpp/service.gni") 7 import("//services/shell/public/cpp/service.gni")
8 import("//services/shell/public/service_manifest.gni") 8 import("//services/shell/public/service_manifest.gni")
9 9
10 static_library("lib") { 10 static_library("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 "accessibility_manager.cc", 16 "accessibility_manager.cc",
17 "accessibility_manager.h", 17 "accessibility_manager.h",
18 "animation_runner.cc", 18 "animation_runner.cc",
19 "animation_runner.h", 19 "animation_runner.h",
20 "animation_runner_observer.h", 20 "animation_runner_observer.h",
21 "default_access_policy.cc", 21 "default_access_policy.cc",
22 "default_access_policy.h", 22 "default_access_policy.h",
23 "display.cc", 23 "display.cc",
24 "display.h", 24 "display.h",
25 "display_binding.cc", 25 "display_binding.cc",
26 "display_binding.h", 26 "display_binding.h",
27 "display_manager.cc", 27 "display_manager.cc",
28 "display_manager.h", 28 "display_manager.h",
29 "display_manager_delegate.h",
30 "event_dispatcher.cc", 29 "event_dispatcher.cc",
31 "event_dispatcher.h", 30 "event_dispatcher.h",
32 "event_dispatcher_delegate.h", 31 "event_dispatcher_delegate.h",
33 "event_matcher.cc", 32 "event_matcher.cc",
34 "event_matcher.h", 33 "event_matcher.h",
35 "focus_controller.cc", 34 "focus_controller.cc",
36 "focus_controller.h", 35 "focus_controller.h",
37 "focus_controller_delegate.h", 36 "focus_controller_delegate.h",
38 "focus_controller_observer.h", 37 "focus_controller_observer.h",
39 "frame_generator.cc", 38 "frame_generator.cc",
(...skipping 23 matching lines...) Expand all
63 "server_window_surface.h", 62 "server_window_surface.h",
64 "server_window_surface_manager.cc", 63 "server_window_surface_manager.cc",
65 "server_window_surface_manager.h", 64 "server_window_surface_manager.h",
66 "server_window_tracker.h", 65 "server_window_tracker.h",
67 "touch_controller.cc", 66 "touch_controller.cc",
68 "touch_controller.h", 67 "touch_controller.h",
69 "user_activity_monitor.cc", 68 "user_activity_monitor.cc",
70 "user_activity_monitor.h", 69 "user_activity_monitor.h",
71 "user_display_manager.cc", 70 "user_display_manager.cc",
72 "user_display_manager.h", 71 "user_display_manager.h",
72 "user_display_manager_delegate.h",
73 "user_id.h", 73 "user_id.h",
74 "user_id_tracker.cc", 74 "user_id_tracker.cc",
75 "user_id_tracker.h", 75 "user_id_tracker.h",
76 "user_id_tracker_observer.h", 76 "user_id_tracker_observer.h",
77 "window_coordinate_conversions.cc", 77 "window_coordinate_conversions.cc",
78 "window_coordinate_conversions.h", 78 "window_coordinate_conversions.h",
79 "window_finder.cc", 79 "window_finder.cc",
80 "window_finder.h", 80 "window_finder.h",
81 "window_manager_access_policy.cc", 81 "window_manager_access_policy.cc",
82 "window_manager_access_policy.h", 82 "window_manager_access_policy.h",
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 250
251 data_deps = [ 251 data_deps = [
252 ":mus_ws_unittests_app_manifest", 252 ":mus_ws_unittests_app_manifest",
253 ] 253 ]
254 } 254 }
255 255
256 service_manifest("mus_ws_unittests_app_manifest") { 256 service_manifest("mus_ws_unittests_app_manifest") {
257 name = "mus_ws_unittests_app" 257 name = "mus_ws_unittests_app"
258 source = "mus_ws_unittests_app_manifest.json" 258 source = "mus_ws_unittests_app_manifest.json"
259 } 259 }
OLDNEW
« no previous file with comments | « services/ui/service.cc ('k') | services/ui/ws/cursor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698