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

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

Issue 1757403002: More user id tracking for mus: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks Created 4 years, 9 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/access_policy.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 26 matching lines...) Expand all
37 "server_window_delegate.h", 37 "server_window_delegate.h",
38 "server_window_drawn_tracker.cc", 38 "server_window_drawn_tracker.cc",
39 "server_window_drawn_tracker.h", 39 "server_window_drawn_tracker.h",
40 "server_window_drawn_tracker_observer.h", 40 "server_window_drawn_tracker_observer.h",
41 "server_window_observer.h", 41 "server_window_observer.h",
42 "server_window_surface.cc", 42 "server_window_surface.cc",
43 "server_window_surface.h", 43 "server_window_surface.h",
44 "server_window_surface_manager.cc", 44 "server_window_surface_manager.cc",
45 "server_window_surface_manager.h", 45 "server_window_surface_manager.h",
46 "server_window_tracker.h", 46 "server_window_tracker.h",
47 "user_id.h",
48 "user_id_tracker.cc",
49 "user_id_tracker.h",
50 "user_id_tracker_observer.h",
47 "window_coordinate_conversions.cc", 51 "window_coordinate_conversions.cc",
48 "window_coordinate_conversions.h", 52 "window_coordinate_conversions.h",
49 "window_finder.cc", 53 "window_finder.cc",
50 "window_finder.h", 54 "window_finder.h",
51 "window_manager_access_policy.cc", 55 "window_manager_access_policy.cc",
52 "window_manager_access_policy.h", 56 "window_manager_access_policy.h",
53 "window_manager_factory_registry.cc", 57 "window_manager_factory_registry.cc",
54 "window_manager_factory_registry.h", 58 "window_manager_factory_registry.h",
59 "window_manager_factory_registry_observer.h",
55 "window_manager_factory_service.cc", 60 "window_manager_factory_service.cc",
56 "window_manager_factory_service.h", 61 "window_manager_factory_service.h",
57 "window_manager_state.cc", 62 "window_manager_state.cc",
58 "window_manager_state.h", 63 "window_manager_state.h",
59 "window_tree_factory.cc", 64 "window_tree_factory.cc",
60 "window_tree_factory.h", 65 "window_tree_factory.h",
61 "window_tree_host_connection.cc", 66 "window_tree_host_connection.cc",
62 "window_tree_host_connection.h", 67 "window_tree_host_connection.h",
63 "window_tree_host_impl.cc", 68 "window_tree_host_impl.cc",
64 "window_tree_host_impl.h", 69 "window_tree_host_impl.h",
(...skipping 11 matching lines...) Expand all
76 "//components/mus/public/interfaces", 81 "//components/mus/public/interfaces",
77 "//components/mus/surfaces", 82 "//components/mus/surfaces",
78 "//mojo/common:common_base", 83 "//mojo/common:common_base",
79 "//mojo/converters/geometry", 84 "//mojo/converters/geometry",
80 "//mojo/converters/ime", 85 "//mojo/converters/ime",
81 "//mojo/converters/input_events", 86 "//mojo/converters/input_events",
82 "//mojo/converters/surfaces", 87 "//mojo/converters/surfaces",
83 "//mojo/public/cpp/bindings:callback", 88 "//mojo/public/cpp/bindings:callback",
84 "//mojo/services/tracing/public/cpp", 89 "//mojo/services/tracing/public/cpp",
85 "//mojo/shell/public/cpp", 90 "//mojo/shell/public/cpp",
91 "//mojo/shell/public/interfaces",
86 "//ui/base", 92 "//ui/base",
87 "//ui/events", 93 "//ui/events",
88 "//ui/events/platform", 94 "//ui/events/platform",
89 "//ui/gfx", 95 "//ui/gfx",
90 "//ui/gfx/geometry", 96 "//ui/gfx/geometry",
91 "//ui/gl", 97 "//ui/gl",
92 "//ui/mojo/geometry:interfaces", 98 "//ui/mojo/geometry:interfaces",
93 "//ui/platform_window", 99 "//ui/platform_window",
94 "//ui/platform_window:platform_impls", 100 "//ui/platform_window:platform_impls",
95 ] 101 ]
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 138
133 test("window_manager_unittests") { 139 test("window_manager_unittests") {
134 sources = [ 140 sources = [
135 "event_dispatcher_unittest.cc", 141 "event_dispatcher_unittest.cc",
136 "focus_controller_unittest.cc", 142 "focus_controller_unittest.cc",
137 "server_window_drawn_tracker_unittest.cc", 143 "server_window_drawn_tracker_unittest.cc",
138 "server_window_surface_manager_test_api.cc", 144 "server_window_surface_manager_test_api.cc",
139 "server_window_surface_manager_test_api.h", 145 "server_window_surface_manager_test_api.h",
140 "test_server_window_delegate.cc", 146 "test_server_window_delegate.cc",
141 "test_server_window_delegate.h", 147 "test_server_window_delegate.h",
148 "test_utils.cc",
149 "test_utils.h",
142 "transient_windows_unittest.cc", 150 "transient_windows_unittest.cc",
143 "window_coordinate_conversions_unittest.cc", 151 "window_coordinate_conversions_unittest.cc",
144 "window_finder_unittest.cc", 152 "window_finder_unittest.cc",
153 "window_tree_host_unittest.cc",
145 "window_tree_unittest.cc", 154 "window_tree_unittest.cc",
146 ] 155 ]
147 156
148 deps = [ 157 deps = [
149 ":lib", 158 ":lib",
150 ":test_support", 159 ":test_support",
151 "//base", 160 "//base",
152 "//base/test:test_config", 161 "//base/test:test_config",
153 "//cc:cc", 162 "//cc:cc",
154 "//components/mus/common", 163 "//components/mus/common",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 219
211 if (use_x11) { 220 if (use_x11) {
212 deps += [ "//tools/xdisplaycheck" ] 221 deps += [ "//tools/xdisplaycheck" ]
213 } 222 }
214 } 223 }
215 224
216 mojo_application_manifest("manifest") { 225 mojo_application_manifest("manifest") {
217 application_name = "mus_apptests" 226 application_name = "mus_apptests"
218 source = "apptest_manifest.json" 227 source = "apptest_manifest.json"
219 } 228 }
OLDNEW
« no previous file with comments | « components/mus/mus_app.cc ('k') | components/mus/ws/access_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698