| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "immersive_fullscreen_controller_test_api.cc", | 106 "immersive_fullscreen_controller_test_api.cc", |
| 107 "immersive_fullscreen_controller_test_api.h", | 107 "immersive_fullscreen_controller_test_api.h", |
| 108 "lock_state_controller_test_api.cc", | 108 "lock_state_controller_test_api.cc", |
| 109 "lock_state_controller_test_api.h", | 109 "lock_state_controller_test_api.h", |
| 110 "mirror_window_test_api.cc", | 110 "mirror_window_test_api.cc", |
| 111 "mirror_window_test_api.h", | 111 "mirror_window_test_api.h", |
| 112 "overflow_bubble_view_test_api.cc", | 112 "overflow_bubble_view_test_api.cc", |
| 113 "overflow_bubble_view_test_api.h", | 113 "overflow_bubble_view_test_api.h", |
| 114 "screen_orientation_controller_test_api.cc", |
| 115 "screen_orientation_controller_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", |
| 116 "shelf_view_test_api.cc", | 118 "shelf_view_test_api.cc", |
| 117 "shelf_view_test_api.h", | 119 "shelf_view_test_api.h", |
| 118 "shell_test_api.cc", | 120 "shell_test_api.cc", |
| 119 "shell_test_api.h", | 121 "shell_test_api.h", |
| 120 "status_area_widget_test_helper.cc", | 122 "status_area_widget_test_helper.cc", |
| 121 "status_area_widget_test_helper.h", | 123 "status_area_widget_test_helper.h", |
| 122 "task_switch_time_tracker_test_api.cc", | 124 "task_switch_time_tracker_test_api.cc", |
| 123 "task_switch_time_tracker_test_api.h", | 125 "task_switch_time_tracker_test_api.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 146 "user_metrics_recorder_test_api.cc", | 148 "user_metrics_recorder_test_api.cc", |
| 147 "user_metrics_recorder_test_api.h", | 149 "user_metrics_recorder_test_api.h", |
| 148 "wm_window_test_api.cc", | 150 "wm_window_test_api.cc", |
| 149 "wm_window_test_api.h", | 151 "wm_window_test_api.h", |
| 150 ] | 152 ] |
| 151 configs += [ "//build/config:precompiled_headers" ] | 153 configs += [ "//build/config:precompiled_headers" ] |
| 152 | 154 |
| 153 public_deps = [ | 155 public_deps = [ |
| 154 "//ash", | 156 "//ash", |
| 155 "//testing/gtest", | 157 "//testing/gtest", |
| 158 "//third_party/WebKit/public:blink_headers", |
| 156 "//ui/display:display_manager_test_api", | 159 "//ui/display:display_manager_test_api", |
| 157 ] | 160 ] |
| 158 deps = [ | 161 deps = [ |
| 159 "//ash", | 162 "//ash", |
| 160 "//ash/mus:lib", | 163 "//ash/mus:lib", |
| 161 "//ash/public/cpp:ash_public_cpp", | 164 "//ash/public/cpp:ash_public_cpp", |
| 162 "//ash/resources", | 165 "//ash/resources", |
| 163 "//base:i18n", | 166 "//base:i18n", |
| 164 "//base/test:test_support", | 167 "//base/test:test_support", |
| 165 "//chromeos", | 168 "//chromeos", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ | 213 deps = [ |
| 211 ":test_support_with_content", | 214 ":test_support_with_content", |
| 212 "//base", | 215 "//base", |
| 213 "//skia", | 216 "//skia", |
| 214 "//testing/gtest", | 217 "//testing/gtest", |
| 215 "//ui/aura", | 218 "//ui/aura", |
| 216 "//ui/base", | 219 "//ui/base", |
| 217 "//ui/gl:test_support", | 220 "//ui/gl:test_support", |
| 218 ] | 221 ] |
| 219 } | 222 } |
| OLD | NEW |