| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "ash_test_base.h", | 76 "ash_test_base.h", |
| 77 "ash_test_environment.h", | 77 "ash_test_environment.h", |
| 78 "ash_test_helper.cc", | 78 "ash_test_helper.cc", |
| 79 "ash_test_helper.h", | 79 "ash_test_helper.h", |
| 80 "ash_test_views_delegate.cc", | 80 "ash_test_views_delegate.cc", |
| 81 "ash_test_views_delegate.h", | 81 "ash_test_views_delegate.h", |
| 82 "child_modal_window.cc", | 82 "child_modal_window.cc", |
| 83 "child_modal_window.h", | 83 "child_modal_window.h", |
| 84 "cursor_manager_test_api.cc", | 84 "cursor_manager_test_api.cc", |
| 85 "cursor_manager_test_api.h", | 85 "cursor_manager_test_api.h", |
| 86 "display_manager_test_api.cc", | |
| 87 "display_manager_test_api.h", | |
| 88 "immersive_fullscreen_controller_test_api.cc", | 86 "immersive_fullscreen_controller_test_api.cc", |
| 89 "immersive_fullscreen_controller_test_api.h", | 87 "immersive_fullscreen_controller_test_api.h", |
| 90 "mirror_window_test_api.cc", | 88 "mirror_window_test_api.cc", |
| 91 "mirror_window_test_api.h", | 89 "mirror_window_test_api.h", |
| 92 "overflow_bubble_view_test_api.cc", | 90 "overflow_bubble_view_test_api.cc", |
| 93 "overflow_bubble_view_test_api.h", | 91 "overflow_bubble_view_test_api.h", |
| 94 "shelf_button_pressed_metric_tracker_test_api.cc", | 92 "shelf_button_pressed_metric_tracker_test_api.cc", |
| 95 "shelf_button_pressed_metric_tracker_test_api.h", | 93 "shelf_button_pressed_metric_tracker_test_api.h", |
| 96 "shelf_view_test_api.cc", | 94 "shelf_view_test_api.cc", |
| 97 "shelf_view_test_api.h", | 95 "shelf_view_test_api.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 127 "tray_cast_test_api.h", | 125 "tray_cast_test_api.h", |
| 128 "ui_controls_factory_ash.cc", | 126 "ui_controls_factory_ash.cc", |
| 129 "ui_controls_factory_ash.h", | 127 "ui_controls_factory_ash.h", |
| 130 "user_metrics_recorder_test_api.cc", | 128 "user_metrics_recorder_test_api.cc", |
| 131 "user_metrics_recorder_test_api.h", | 129 "user_metrics_recorder_test_api.h", |
| 132 ] | 130 ] |
| 133 configs += [ "//build/config:precompiled_headers" ] | 131 configs += [ "//build/config:precompiled_headers" ] |
| 134 | 132 |
| 135 public_deps = [ | 133 public_deps = [ |
| 136 "//ash", | 134 "//ash", |
| 135 "//ui/display:display_manager_test_api", |
| 137 ] | 136 ] |
| 138 deps = [ | 137 deps = [ |
| 139 "//ash/common/test:test_support", | 138 "//ash/common/test:test_support", |
| 140 "//ash/public/cpp", | 139 "//ash/public/cpp", |
| 141 "//ash/resources", | 140 "//ash/resources", |
| 142 "//base:i18n", | 141 "//base:i18n", |
| 143 "//base/test:test_support", | 142 "//base/test:test_support", |
| 144 "//components/signin/core/account_id", | 143 "//components/signin/core/account_id", |
| 145 "//components/user_manager:user_manager", | 144 "//components/user_manager:user_manager", |
| 146 "//device/bluetooth", | 145 "//device/bluetooth", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 deps = [ | 202 deps = [ |
| 204 ":test_support_with_content", | 203 ":test_support_with_content", |
| 205 "//base", | 204 "//base", |
| 206 "//skia", | 205 "//skia", |
| 207 "//testing/gtest", | 206 "//testing/gtest", |
| 208 "//ui/aura", | 207 "//ui/aura", |
| 209 "//ui/base", | 208 "//ui/base", |
| 210 "//ui/gl:test_support", | 209 "//ui/gl:test_support", |
| 211 ] | 210 ] |
| 212 } | 211 } |
| OLD | NEW |