| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "../common/test/test_session_controller_client.cc", | 75 "../common/test/test_session_controller_client.cc", |
| 76 "../common/test/test_session_controller_client.h", | 76 "../common/test/test_session_controller_client.h", |
| 77 "../common/test/test_session_state_delegate.cc", | 77 "../common/test/test_session_state_delegate.cc", |
| 78 "../common/test/test_session_state_delegate.h", | 78 "../common/test/test_session_state_delegate.h", |
| 79 "../common/test/test_shelf_delegate.cc", | 79 "../common/test/test_shelf_delegate.cc", |
| 80 "../common/test/test_shelf_delegate.h", | 80 "../common/test/test_shelf_delegate.h", |
| 81 "../common/test/test_shelf_item_delegate.cc", | 81 "../common/test/test_shelf_item_delegate.cc", |
| 82 "../common/test/test_shelf_item_delegate.h", | 82 "../common/test/test_shelf_item_delegate.h", |
| 83 "../common/test/test_system_tray_delegate.cc", | 83 "../common/test/test_system_tray_delegate.cc", |
| 84 "../common/test/test_system_tray_delegate.h", | 84 "../common/test/test_system_tray_delegate.h", |
| 85 "../common/test/wm_shell_test_api.cc", | |
| 86 "../common/test/wm_shell_test_api.h", | |
| 87 "../common/test/workspace_event_handler_test_helper.cc", | 85 "../common/test/workspace_event_handler_test_helper.cc", |
| 88 "../common/test/workspace_event_handler_test_helper.h", | 86 "../common/test/workspace_event_handler_test_helper.h", |
| 89 | 87 |
| 90 # TODO(jamescook): Move these files into ash/test. | 88 # TODO(jamescook): Move these files into ash/test. |
| 91 "../laser/laser_pointer_controller_test_api.cc", | 89 "../laser/laser_pointer_controller_test_api.cc", |
| 92 "../laser/laser_pointer_controller_test_api.h", | 90 "../laser/laser_pointer_controller_test_api.h", |
| 93 "../laser/laser_pointer_points_test_api.cc", | 91 "../laser/laser_pointer_points_test_api.cc", |
| 94 "../laser/laser_pointer_points_test_api.h", | 92 "../laser/laser_pointer_points_test_api.h", |
| 95 "../rotator/test/screen_rotation_animator_test_api.cc", | 93 "../rotator/test/screen_rotation_animator_test_api.cc", |
| 96 "../rotator/test/screen_rotation_animator_test_api.h", | 94 "../rotator/test/screen_rotation_animator_test_api.h", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 deps = [ | 214 deps = [ |
| 217 ":test_support_with_content", | 215 ":test_support_with_content", |
| 218 "//base", | 216 "//base", |
| 219 "//skia", | 217 "//skia", |
| 220 "//testing/gtest", | 218 "//testing/gtest", |
| 221 "//ui/aura", | 219 "//ui/aura", |
| 222 "//ui/base", | 220 "//ui/base", |
| 223 "//ui/gl:test_support", | 221 "//ui/gl:test_support", |
| 224 ] | 222 ] |
| 225 } | 223 } |
| OLD | NEW |