| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 6 |
| 7 # Used to test ash with an aura backend. | 7 # Used to test ash with an aura backend. |
| 8 source_set("ash_with_aura_test_support") { | 8 source_set("ash_with_aura_test_support") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "../common/test/wm_shell_test_api.cc", | 83 "../common/test/wm_shell_test_api.cc", |
| 84 "../common/test/wm_shell_test_api.h", | 84 "../common/test/wm_shell_test_api.h", |
| 85 "../common/test/workspace_event_handler_test_helper.cc", | 85 "../common/test/workspace_event_handler_test_helper.cc", |
| 86 "../common/test/workspace_event_handler_test_helper.h", | 86 "../common/test/workspace_event_handler_test_helper.h", |
| 87 | 87 |
| 88 # TODO(jamescook): Move these files into ash/test. | 88 # TODO(jamescook): Move these files into ash/test. |
| 89 "../laser/laser_pointer_controller_test_api.cc", | 89 "../laser/laser_pointer_controller_test_api.cc", |
| 90 "../laser/laser_pointer_controller_test_api.h", | 90 "../laser/laser_pointer_controller_test_api.h", |
| 91 "../laser/laser_pointer_points_test_api.cc", | 91 "../laser/laser_pointer_points_test_api.cc", |
| 92 "../laser/laser_pointer_points_test_api.h", | 92 "../laser/laser_pointer_points_test_api.h", |
| 93 "../rotator/test/screen_rotation_animator_test_api.cc", |
| 94 "../rotator/test/screen_rotation_animator_test_api.h", |
| 93 "../shell/toplevel_window.cc", | 95 "../shell/toplevel_window.cc", |
| 94 "../shell/toplevel_window.h", | 96 "../shell/toplevel_window.h", |
| 95 "ash_test_base.cc", | 97 "ash_test_base.cc", |
| 96 "ash_test_base.h", | 98 "ash_test_base.h", |
| 97 "ash_test_environment.h", | 99 "ash_test_environment.h", |
| 98 "ash_test_helper.cc", | 100 "ash_test_helper.cc", |
| 99 "ash_test_helper.h", | 101 "ash_test_helper.h", |
| 100 "ash_test_views_delegate.cc", | 102 "ash_test_views_delegate.cc", |
| 101 "ash_test_views_delegate.h", | 103 "ash_test_views_delegate.h", |
| 102 "child_modal_window.cc", | 104 "child_modal_window.cc", |
| 103 "child_modal_window.h", | 105 "child_modal_window.h", |
| 104 "cursor_manager_test_api.cc", | 106 "cursor_manager_test_api.cc", |
| 105 "cursor_manager_test_api.h", | 107 "cursor_manager_test_api.h", |
| 108 "display_configuration_controller_test_api.cc", |
| 109 "display_configuration_controller_test_api.h", |
| 106 "immersive_fullscreen_controller_test_api.cc", | 110 "immersive_fullscreen_controller_test_api.cc", |
| 107 "immersive_fullscreen_controller_test_api.h", | 111 "immersive_fullscreen_controller_test_api.h", |
| 108 "lock_state_controller_test_api.cc", | 112 "lock_state_controller_test_api.cc", |
| 109 "lock_state_controller_test_api.h", | 113 "lock_state_controller_test_api.h", |
| 110 "mirror_window_test_api.cc", | 114 "mirror_window_test_api.cc", |
| 111 "mirror_window_test_api.h", | 115 "mirror_window_test_api.h", |
| 112 "overflow_bubble_view_test_api.cc", | 116 "overflow_bubble_view_test_api.cc", |
| 113 "overflow_bubble_view_test_api.h", | 117 "overflow_bubble_view_test_api.h", |
| 114 "shelf_button_pressed_metric_tracker_test_api.cc", | 118 "shelf_button_pressed_metric_tracker_test_api.cc", |
| 115 "shelf_button_pressed_metric_tracker_test_api.h", | 119 "shelf_button_pressed_metric_tracker_test_api.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ | 214 deps = [ |
| 211 ":test_support_with_content", | 215 ":test_support_with_content", |
| 212 "//base", | 216 "//base", |
| 213 "//skia", | 217 "//skia", |
| 214 "//testing/gtest", | 218 "//testing/gtest", |
| 215 "//ui/aura", | 219 "//ui/aura", |
| 216 "//ui/base", | 220 "//ui/base", |
| 217 "//ui/gl:test_support", | 221 "//ui/gl:test_support", |
| 218 ] | 222 ] |
| 219 } | 223 } |
| OLD | NEW |