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

Side by Side Diff: ui/aura/BUILD.gn

Issue 2639703004: mus: Forward user activity from window server to detector. (Closed)
Patch Set: address jamescook@'s comments Created 3 years, 11 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/manifest.json ('k') | ui/aura/mus/DEPS » ('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 7
8 component("aura") { 8 component("aura") {
9 sources = [ 9 sources = [
10 "../wm/public/activation_change_observer.cc", 10 "../wm/public/activation_change_observer.cc",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "mus/mus_util.cc", 89 "mus/mus_util.cc",
90 "mus/mus_util.h", 90 "mus/mus_util.h",
91 "mus/os_exchange_data_provider_mus.cc", 91 "mus/os_exchange_data_provider_mus.cc",
92 "mus/os_exchange_data_provider_mus.h", 92 "mus/os_exchange_data_provider_mus.h",
93 "mus/property_converter.cc", 93 "mus/property_converter.cc",
94 "mus/property_converter.h", 94 "mus/property_converter.h",
95 "mus/property_utils.cc", 95 "mus/property_utils.cc",
96 "mus/property_utils.h", 96 "mus/property_utils.h",
97 "mus/text_input_client_impl.cc", 97 "mus/text_input_client_impl.cc",
98 "mus/text_input_client_impl.h", 98 "mus/text_input_client_impl.h",
99 "mus/user_activity_forwarder.cc",
100 "mus/user_activity_forwarder.h",
99 "mus/window_compositor_frame_sink.cc", 101 "mus/window_compositor_frame_sink.cc",
100 "mus/window_compositor_frame_sink.h", 102 "mus/window_compositor_frame_sink.h",
101 "mus/window_manager_delegate.cc", 103 "mus/window_manager_delegate.cc",
102 "mus/window_manager_delegate.h", 104 "mus/window_manager_delegate.h",
103 "mus/window_mus.h", 105 "mus/window_mus.h",
104 "mus/window_port_mus.cc", 106 "mus/window_port_mus.cc",
105 "mus/window_port_mus.h", 107 "mus/window_port_mus.h",
106 "mus/window_tree_client.cc", 108 "mus/window_tree_client.cc",
107 "mus/window_tree_client.h", 109 "mus/window_tree_client.h",
108 "mus/window_tree_client_delegate.cc", 110 "mus/window_tree_client_delegate.cc",
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 if (use_x11) { 330 if (use_x11) {
329 deps += [ "//ui/gfx/x" ] 331 deps += [ "//ui/gfx/x" ]
330 } 332 }
331 } 333 }
332 334
333 test("aura_unittests") { 335 test("aura_unittests") {
334 sources = [ 336 sources = [
335 "gestures/gesture_recognizer_unittest.cc", 337 "gestures/gesture_recognizer_unittest.cc",
336 "mus/os_exchange_data_provider_mus_unittest.cc", 338 "mus/os_exchange_data_provider_mus_unittest.cc",
337 "mus/property_converter_unittest.cc", 339 "mus/property_converter_unittest.cc",
340 "mus/user_activity_forwarder_unittest.cc",
338 "mus/window_tree_client_unittest.cc", 341 "mus/window_tree_client_unittest.cc",
339 "mus/window_tree_host_mus_unittest.cc", 342 "mus/window_tree_host_mus_unittest.cc",
340 "test/run_all_unittests.cc", 343 "test/run_all_unittests.cc",
341 "window_event_dispatcher_unittest.cc", 344 "window_event_dispatcher_unittest.cc",
342 "window_targeter_unittest.cc", 345 "window_targeter_unittest.cc",
343 "window_tree_host_unittest.cc", 346 "window_tree_host_unittest.cc",
344 "window_unittest.cc", 347 "window_unittest.cc",
345 ] 348 ]
346 349
347 deps = [ 350 deps = [
348 ":test_support", 351 ":test_support",
349 "//base/test:test_support", 352 "//base/test:test_support",
350 "//mojo/common", 353 "//mojo/common",
354 "//mojo/edk/system",
351 "//net", 355 "//net",
356 "//services/ui/common:task_runner_test_base",
352 "//services/ui/public/cpp", 357 "//services/ui/public/cpp",
353 "//skia", 358 "//skia",
354 "//testing/gtest", 359 "//testing/gtest",
355 "//ui/base:test_support", 360 "//ui/base:test_support",
356 "//ui/compositor:test_support", 361 "//ui/compositor:test_support",
357 "//ui/display:test_support", 362 "//ui/display:test_support",
358 "//ui/events:gesture_detection", 363 "//ui/events:gesture_detection",
359 "//ui/events:test_support", 364 "//ui/events:test_support",
360 "//ui/gfx", 365 "//ui/gfx",
361 "//ui/gfx/geometry", 366 "//ui/gfx/geometry",
362 "//ui/gl:test_support", 367 "//ui/gl:test_support",
363 ] 368 ]
364 369
365 if (is_linux) { 370 if (is_linux) {
366 deps += [ "//third_party/mesa" ] 371 deps += [ "//third_party/mesa" ]
367 } 372 }
368 373
369 data_deps = [ 374 data_deps = [
370 "//third_party/mesa:osmesa", 375 "//third_party/mesa:osmesa",
371 ] 376 ]
372 } 377 }
OLDNEW
« no previous file with comments | « services/ui/manifest.json ('k') | ui/aura/mus/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698