| 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 "../laser/laser_pointer_controller_test_api.h", | 73 "../laser/laser_pointer_controller_test_api.h", |
| 74 "../laser/laser_pointer_points_test_api.cc", | 74 "../laser/laser_pointer_points_test_api.cc", |
| 75 "../laser/laser_pointer_points_test_api.h", | 75 "../laser/laser_pointer_points_test_api.h", |
| 76 "../shell/toplevel_window.cc", | 76 "../shell/toplevel_window.cc", |
| 77 "../shell/toplevel_window.h", | 77 "../shell/toplevel_window.h", |
| 78 "ash_test_base.cc", | 78 "ash_test_base.cc", |
| 79 "ash_test_base.h", | 79 "ash_test_base.h", |
| 80 "ash_test_environment.h", | 80 "ash_test_environment.h", |
| 81 "ash_test_helper.cc", | 81 "ash_test_helper.cc", |
| 82 "ash_test_helper.h", | 82 "ash_test_helper.h", |
| 83 "ash_test_suite.cc", | |
| 84 "ash_test_suite.h", | |
| 85 "ash_test_views_delegate.cc", | 83 "ash_test_views_delegate.cc", |
| 86 "ash_test_views_delegate.h", | 84 "ash_test_views_delegate.h", |
| 87 "child_modal_window.cc", | 85 "child_modal_window.cc", |
| 88 "child_modal_window.h", | 86 "child_modal_window.h", |
| 89 "cursor_manager_test_api.cc", | 87 "cursor_manager_test_api.cc", |
| 90 "cursor_manager_test_api.h", | 88 "cursor_manager_test_api.h", |
| 91 "immersive_fullscreen_controller_test_api.cc", | 89 "immersive_fullscreen_controller_test_api.cc", |
| 92 "immersive_fullscreen_controller_test_api.h", | 90 "immersive_fullscreen_controller_test_api.h", |
| 93 "lock_state_controller_test_api.cc", | 91 "lock_state_controller_test_api.cc", |
| 94 "lock_state_controller_test_api.h", | 92 "lock_state_controller_test_api.h", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "wm_window_test_api.h", | 132 "wm_window_test_api.h", |
| 135 ] | 133 ] |
| 136 configs += [ "//build/config:precompiled_headers" ] | 134 configs += [ "//build/config:precompiled_headers" ] |
| 137 | 135 |
| 138 public_deps = [ | 136 public_deps = [ |
| 139 "//ash", | 137 "//ash", |
| 140 "//ui/display:display_manager_test_api", | 138 "//ui/display:display_manager_test_api", |
| 141 ] | 139 ] |
| 142 deps = [ | 140 deps = [ |
| 143 "//ash/common/test:test_support", | 141 "//ash/common/test:test_support", |
| 142 "//ash/mus:lib", |
| 144 "//ash/public/cpp:ash_public_cpp", | 143 "//ash/public/cpp:ash_public_cpp", |
| 145 "//ash/public/interfaces", | 144 "//ash/public/interfaces", |
| 146 "//ash/resources", | 145 "//ash/resources", |
| 147 "//base:i18n", | 146 "//base:i18n", |
| 148 "//base/test:test_support", | 147 "//base/test:test_support", |
| 149 "//chromeos", | 148 "//chromeos", |
| 150 "//components/signin/core/account_id", | 149 "//components/signin/core/account_id", |
| 151 "//components/user_manager:user_manager", | 150 "//components/user_manager:user_manager", |
| 152 "//device/bluetooth", | 151 "//device/bluetooth", |
| 153 "//services/ui/public/interfaces", | 152 "//services/ui/public/interfaces", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 deps = [ | 193 deps = [ |
| 195 ":test_support_with_content", | 194 ":test_support_with_content", |
| 196 "//base", | 195 "//base", |
| 197 "//skia", | 196 "//skia", |
| 198 "//testing/gtest", | 197 "//testing/gtest", |
| 199 "//ui/aura", | 198 "//ui/aura", |
| 200 "//ui/base", | 199 "//ui/base", |
| 201 "//ui/gl:test_support", | 200 "//ui/gl:test_support", |
| 202 ] | 201 ] |
| 203 } | 202 } |
| OLD | NEW |