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