| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "test_shell_delegate.cc", | 114 "test_shell_delegate.cc", |
| 115 "test_shell_delegate.h", | 115 "test_shell_delegate.h", |
| 116 "test_suite.cc", | 116 "test_suite.cc", |
| 117 "test_suite.h", | 117 "test_suite.h", |
| 118 "test_suite_init.h", | 118 "test_suite_init.h", |
| 119 "test_suite_init.mm", | 119 "test_suite_init.mm", |
| 120 "test_system_tray_item.cc", | 120 "test_system_tray_item.cc", |
| 121 "test_system_tray_item.h", | 121 "test_system_tray_item.h", |
| 122 "test_wallpaper_delegate.cc", | 122 "test_wallpaper_delegate.cc", |
| 123 "test_wallpaper_delegate.h", | 123 "test_wallpaper_delegate.h", |
| 124 "tray_cast_test_api.cc", | |
| 125 "tray_cast_test_api.h", | |
| 126 "ui_controls_factory_ash.cc", | 124 "ui_controls_factory_ash.cc", |
| 127 "ui_controls_factory_ash.h", | 125 "ui_controls_factory_ash.h", |
| 128 "user_metrics_recorder_test_api.cc", | 126 "user_metrics_recorder_test_api.cc", |
| 129 "user_metrics_recorder_test_api.h", | 127 "user_metrics_recorder_test_api.h", |
| 130 ] | 128 ] |
| 131 configs += [ "//build/config:precompiled_headers" ] | 129 configs += [ "//build/config:precompiled_headers" ] |
| 132 | 130 |
| 133 public_deps = [ | 131 public_deps = [ |
| 134 "//ash", | 132 "//ash", |
| 135 "//ui/display:display_manager_test_api", | 133 "//ui/display:display_manager_test_api", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 deps += [ | 175 deps += [ |
| 178 "//chromeos", | 176 "//chromeos", |
| 179 "//ui/display", | 177 "//ui/display", |
| 180 ] | 178 ] |
| 181 | 179 |
| 182 sources += [ | 180 sources += [ |
| 183 "../laser/laser_pointer_controller_test_api.cc", | 181 "../laser/laser_pointer_controller_test_api.cc", |
| 184 "../laser/laser_pointer_controller_test_api.h", | 182 "../laser/laser_pointer_controller_test_api.h", |
| 185 "../laser/laser_pointer_points_test_api.cc", | 183 "../laser/laser_pointer_points_test_api.cc", |
| 186 "../laser/laser_pointer_points_test_api.h", | 184 "../laser/laser_pointer_points_test_api.h", |
| 185 "tray_cast_test_api.cc", |
| 186 "tray_cast_test_api.h", |
| 187 ] | 187 ] |
| 188 } | 188 } |
| 189 } | 189 } |
| 190 | 190 |
| 191 static_library("interactive_ui_test_support") { | 191 static_library("interactive_ui_test_support") { |
| 192 testonly = true | 192 testonly = true |
| 193 configs += [ "//build/config:precompiled_headers" ] | 193 configs += [ "//build/config:precompiled_headers" ] |
| 194 public_deps = [ | 194 public_deps = [ |
| 195 ":test_support_without_content", | 195 ":test_support_without_content", |
| 196 "//ash", | 196 "//ash", |
| 197 ] | 197 ] |
| 198 sources = [ | 198 sources = [ |
| 199 "ash_interactive_ui_test_base.cc", | 199 "ash_interactive_ui_test_base.cc", |
| 200 "ash_interactive_ui_test_base.h", | 200 "ash_interactive_ui_test_base.h", |
| 201 ] | 201 ] |
| 202 deps = [ | 202 deps = [ |
| 203 ":test_support_with_content", | 203 ":test_support_with_content", |
| 204 "//base", | 204 "//base", |
| 205 "//skia", | 205 "//skia", |
| 206 "//testing/gtest", | 206 "//testing/gtest", |
| 207 "//ui/aura", | 207 "//ui/aura", |
| 208 "//ui/base", | 208 "//ui/base", |
| 209 "//ui/gl:test_support", | 209 "//ui/gl:test_support", |
| 210 ] | 210 ] |
| 211 } | 211 } |
| OLD | NEW |