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

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

Issue 2081253002: Implement rudimentary touchscreen support in mus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing pure virtual. 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
« no previous file with comments | « components/mus/mus_app.cc ('k') | components/mus/ws/display.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") {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "server_window_delegate.h", 51 "server_window_delegate.h",
52 "server_window_drawn_tracker.cc", 52 "server_window_drawn_tracker.cc",
53 "server_window_drawn_tracker.h", 53 "server_window_drawn_tracker.h",
54 "server_window_drawn_tracker_observer.h", 54 "server_window_drawn_tracker_observer.h",
55 "server_window_observer.h", 55 "server_window_observer.h",
56 "server_window_surface.cc", 56 "server_window_surface.cc",
57 "server_window_surface.h", 57 "server_window_surface.h",
58 "server_window_surface_manager.cc", 58 "server_window_surface_manager.cc",
59 "server_window_surface_manager.h", 59 "server_window_surface_manager.h",
60 "server_window_tracker.h", 60 "server_window_tracker.h",
61 "touch_controller.cc",
62 "touch_controller.h",
61 "user_display_manager.cc", 63 "user_display_manager.cc",
62 "user_display_manager.h", 64 "user_display_manager.h",
63 "user_id.h", 65 "user_id.h",
64 "user_id_tracker.cc", 66 "user_id_tracker.cc",
65 "user_id_tracker.h", 67 "user_id_tracker.h",
66 "user_id_tracker_observer.h", 68 "user_id_tracker_observer.h",
67 "window_coordinate_conversions.cc", 69 "window_coordinate_conversions.cc",
68 "window_coordinate_conversions.h", 70 "window_coordinate_conversions.h",
69 "window_finder.cc", 71 "window_finder.cc",
70 "window_finder.h", 72 "window_finder.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "//components/mus/public/interfaces", 105 "//components/mus/public/interfaces",
104 "//components/mus/surfaces", 106 "//components/mus/surfaces",
105 "//mojo/common:common_base", 107 "//mojo/common:common_base",
106 "//mojo/public/cpp/bindings", 108 "//mojo/public/cpp/bindings",
107 "//services/shell/public/cpp", 109 "//services/shell/public/cpp",
108 "//services/shell/public/interfaces", 110 "//services/shell/public/interfaces",
109 "//services/tracing/public/cpp", 111 "//services/tracing/public/cpp",
110 "//ui/base", 112 "//ui/base",
111 "//ui/display", 113 "//ui/display",
112 "//ui/events", 114 "//ui/events",
115 "//ui/events/devices",
113 "//ui/events/platform", 116 "//ui/events/platform",
114 "//ui/gfx", 117 "//ui/gfx",
115 "//ui/gfx/geometry", 118 "//ui/gfx/geometry",
116 "//ui/gfx/geometry/mojo", 119 "//ui/gfx/geometry/mojo",
117 "//ui/gl", 120 "//ui/gl",
118 "//ui/platform_window", 121 "//ui/platform_window",
119 "//ui/platform_window:platform_impls", 122 "//ui/platform_window:platform_impls",
120 "//ui/platform_window/mojo", 123 "//ui/platform_window/mojo",
121 ] 124 ]
122 125
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 236
234 data_deps = [ 237 data_deps = [
235 ":mus_ws_unittests_app_manifest", 238 ":mus_ws_unittests_app_manifest",
236 ] 239 ]
237 } 240 }
238 241
239 mojo_application_manifest("mus_ws_unittests_app_manifest") { 242 mojo_application_manifest("mus_ws_unittests_app_manifest") {
240 application_name = "mus_ws_unittests_app" 243 application_name = "mus_ws_unittests_app"
241 source = "mus_ws_unittests_app_manifest.json" 244 source = "mus_ws_unittests_app_manifest.json"
242 } 245 }
OLDNEW
« no previous file with comments | « components/mus/mus_app.cc ('k') | components/mus/ws/display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698