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

Side by Side Diff: components/view_manager/BUILD.gn

Issue 1153633006: Added UMA statistics for changing the active window via click or touch events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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("//third_party/mojo/src/mojo/public/mojo_application.gni") 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
8 8
9 mojo_native_application("view_manager") { 9 mojo_native_application("view_manager") {
10 sources = [ 10 sources = [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "server_view_drawn_tracker_observer.h", 54 "server_view_drawn_tracker_observer.h",
55 "server_view_observer.h", 55 "server_view_observer.h",
56 "view_coordinate_conversions.cc", 56 "view_coordinate_conversions.cc",
57 "view_coordinate_conversions.h", 57 "view_coordinate_conversions.h",
58 "view_locator.cc", 58 "view_locator.cc",
59 "view_locator.h", 59 "view_locator.h",
60 "view_manager_app.cc", 60 "view_manager_app.cc",
61 "view_manager_app.h", 61 "view_manager_app.h",
62 "view_manager_service_impl.cc", 62 "view_manager_service_impl.cc",
63 "view_manager_service_impl.h", 63 "view_manager_service_impl.h",
64 "window_activation_pre_target_handler.cc",
65 "window_activation_pre_target_handler.h",
66 "window_activation_pre_target_handler_observer.cc",
67 "window_activation_pre_target_handler_observer.h",
64 "window_manager_access_policy.cc", 68 "window_manager_access_policy.cc",
65 "window_manager_access_policy.h", 69 "window_manager_access_policy.h",
66 ] 70 ]
67 71
68 public_deps = [ 72 public_deps = [
69 "//components/view_manager/public/cpp", 73 "//components/view_manager/public/cpp",
70 ] 74 ]
71 75
72 deps = [ 76 deps = [
73 "//base", 77 "//base",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "//base/test:test_config", 178 "//base/test:test_config",
175 "//components/view_manager/public/cpp", 179 "//components/view_manager/public/cpp",
176 "//components/view_manager/public/interfaces", 180 "//components/view_manager/public/interfaces",
177 "//mojo/application/public/cpp:test_support", 181 "//mojo/application/public/cpp:test_support",
178 "//ui/mojo/geometry:interfaces", 182 "//ui/mojo/geometry:interfaces",
179 "//ui/mojo/geometry:util", 183 "//ui/mojo/geometry:util",
180 ] 184 ]
181 185
182 data_deps = [ ":view_manager" ] 186 data_deps = [ ":view_manager" ]
183 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698