| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "ash_test_base.h", | 96 "ash_test_base.h", |
| 97 "ash_test_environment.h", | 97 "ash_test_environment.h", |
| 98 "ash_test_helper.cc", | 98 "ash_test_helper.cc", |
| 99 "ash_test_helper.h", | 99 "ash_test_helper.h", |
| 100 "ash_test_views_delegate.cc", | 100 "ash_test_views_delegate.cc", |
| 101 "ash_test_views_delegate.h", | 101 "ash_test_views_delegate.h", |
| 102 "child_modal_window.cc", | 102 "child_modal_window.cc", |
| 103 "child_modal_window.h", | 103 "child_modal_window.h", |
| 104 "cursor_manager_test_api.cc", | 104 "cursor_manager_test_api.cc", |
| 105 "cursor_manager_test_api.h", | 105 "cursor_manager_test_api.h", |
| 106 "display_configuration_controller_test_api.cc", |
| 107 "display_configuration_controller_test_api.h", |
| 106 "immersive_fullscreen_controller_test_api.cc", | 108 "immersive_fullscreen_controller_test_api.cc", |
| 107 "immersive_fullscreen_controller_test_api.h", | 109 "immersive_fullscreen_controller_test_api.h", |
| 108 "lock_state_controller_test_api.cc", | 110 "lock_state_controller_test_api.cc", |
| 109 "lock_state_controller_test_api.h", | 111 "lock_state_controller_test_api.h", |
| 110 "mirror_window_test_api.cc", | 112 "mirror_window_test_api.cc", |
| 111 "mirror_window_test_api.h", | 113 "mirror_window_test_api.h", |
| 112 "overflow_bubble_view_test_api.cc", | 114 "overflow_bubble_view_test_api.cc", |
| 113 "overflow_bubble_view_test_api.h", | 115 "overflow_bubble_view_test_api.h", |
| 114 "shelf_button_pressed_metric_tracker_test_api.cc", | 116 "shelf_button_pressed_metric_tracker_test_api.cc", |
| 115 "shelf_button_pressed_metric_tracker_test_api.h", | 117 "shelf_button_pressed_metric_tracker_test_api.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ | 212 deps = [ |
| 211 ":test_support_with_content", | 213 ":test_support_with_content", |
| 212 "//base", | 214 "//base", |
| 213 "//skia", | 215 "//skia", |
| 214 "//testing/gtest", | 216 "//testing/gtest", |
| 215 "//ui/aura", | 217 "//ui/aura", |
| 216 "//ui/base", | 218 "//ui/base", |
| 217 "//ui/gl:test_support", | 219 "//ui/gl:test_support", |
| 218 ] | 220 ] |
| 219 } | 221 } |
| OLD | NEW |