| OLD | NEW |
| 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 public = [ | 9 public = [ |
| 10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "local/layer_tree_frame_sink_local.h", | 36 "local/layer_tree_frame_sink_local.h", |
| 37 "local/window_port_local.h", | 37 "local/window_port_local.h", |
| 38 "mus/capture_synchronizer.h", | 38 "mus/capture_synchronizer.h", |
| 39 "mus/capture_synchronizer_delegate.h", | 39 "mus/capture_synchronizer_delegate.h", |
| 40 "mus/client_surface_embedder.h", | 40 "mus/client_surface_embedder.h", |
| 41 "mus/drag_drop_controller_host.h", | 41 "mus/drag_drop_controller_host.h", |
| 42 "mus/drag_drop_controller_mus.h", | 42 "mus/drag_drop_controller_mus.h", |
| 43 "mus/focus_synchronizer.h", | 43 "mus/focus_synchronizer.h", |
| 44 "mus/focus_synchronizer_delegate.h", | 44 "mus/focus_synchronizer_delegate.h", |
| 45 "mus/focus_synchronizer_observer.h", | 45 "mus/focus_synchronizer_observer.h", |
| 46 "mus/hit_test_data_provider_mus.h", |
| 46 "mus/in_flight_change.h", | 47 "mus/in_flight_change.h", |
| 47 "mus/input_method_mus.h", | 48 "mus/input_method_mus.h", |
| 48 "mus/mus_context_factory.h", | 49 "mus/mus_context_factory.h", |
| 49 "mus/mus_mouse_location_updater.h", | 50 "mus/mus_mouse_location_updater.h", |
| 50 "mus/mus_types.h", | 51 "mus/mus_types.h", |
| 51 "mus/os_exchange_data_provider_mus.h", | 52 "mus/os_exchange_data_provider_mus.h", |
| 52 "mus/property_converter.h", | 53 "mus/property_converter.h", |
| 53 "mus/property_utils.h", | 54 "mus/property_utils.h", |
| 54 "mus/text_input_client_impl.h", | 55 "mus/text_input_client_impl.h", |
| 55 "mus/user_activity_forwarder.h", | 56 "mus/user_activity_forwarder.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "event_injector.cc", | 99 "event_injector.cc", |
| 99 "input_state_lookup.cc", | 100 "input_state_lookup.cc", |
| 100 "input_state_lookup_win.cc", | 101 "input_state_lookup_win.cc", |
| 101 "layout_manager.cc", | 102 "layout_manager.cc", |
| 102 "local/layer_tree_frame_sink_local.cc", | 103 "local/layer_tree_frame_sink_local.cc", |
| 103 "local/window_port_local.cc", | 104 "local/window_port_local.cc", |
| 104 "mus/capture_synchronizer.cc", | 105 "mus/capture_synchronizer.cc", |
| 105 "mus/client_surface_embedder.cc", | 106 "mus/client_surface_embedder.cc", |
| 106 "mus/drag_drop_controller_mus.cc", | 107 "mus/drag_drop_controller_mus.cc", |
| 107 "mus/focus_synchronizer.cc", | 108 "mus/focus_synchronizer.cc", |
| 109 "mus/hit_test_data_provider_mus.cc", |
| 108 "mus/in_flight_change.cc", | 110 "mus/in_flight_change.cc", |
| 109 "mus/input_method_mus.cc", | 111 "mus/input_method_mus.cc", |
| 110 "mus/mus_context_factory.cc", | 112 "mus/mus_context_factory.cc", |
| 111 "mus/mus_mouse_location_updater.cc", | 113 "mus/mus_mouse_location_updater.cc", |
| 112 "mus/os_exchange_data_provider_mus.cc", | 114 "mus/os_exchange_data_provider_mus.cc", |
| 113 "mus/property_converter.cc", | 115 "mus/property_converter.cc", |
| 114 "mus/property_utils.cc", | 116 "mus/property_utils.cc", |
| 115 "mus/text_input_client_impl.cc", | 117 "mus/text_input_client_impl.cc", |
| 116 "mus/user_activity_forwarder.cc", | 118 "mus/user_activity_forwarder.cc", |
| 117 "mus/window_manager_delegate.cc", | 119 "mus/window_manager_delegate.cc", |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 ] | 328 ] |
| 327 | 329 |
| 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", |
| 338 "mus/hit_test_data_provider_mus_unittest.cc", |
| 336 "mus/input_method_mus_unittest.cc", | 339 "mus/input_method_mus_unittest.cc", |
| 337 "mus/os_exchange_data_provider_mus_unittest.cc", | 340 "mus/os_exchange_data_provider_mus_unittest.cc", |
| 338 "mus/property_converter_unittest.cc", | 341 "mus/property_converter_unittest.cc", |
| 339 "mus/user_activity_forwarder_unittest.cc", | 342 "mus/user_activity_forwarder_unittest.cc", |
| 340 "mus/window_tree_client_unittest.cc", | 343 "mus/window_tree_client_unittest.cc", |
| 341 "mus/window_tree_host_mus_unittest.cc", | 344 "mus/window_tree_host_mus_unittest.cc", |
| 342 "test/run_all_unittests.cc", | 345 "test/run_all_unittests.cc", |
| 343 "window_event_dispatcher_unittest.cc", | 346 "window_event_dispatcher_unittest.cc", |
| 344 "window_targeter_unittest.cc", | 347 "window_targeter_unittest.cc", |
| 345 "window_tree_host_unittest.cc", | 348 "window_tree_host_unittest.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 367 ] | 370 ] |
| 368 | 371 |
| 369 if (is_linux) { | 372 if (is_linux) { |
| 370 deps += [ "//third_party/mesa" ] | 373 deps += [ "//third_party/mesa" ] |
| 371 } | 374 } |
| 372 | 375 |
| 373 data_deps = [ | 376 data_deps = [ |
| 374 "//third_party/mesa:osmesa", | 377 "//third_party/mesa:osmesa", |
| 375 ] | 378 ] |
| 376 } | 379 } |
| OLD | NEW |