| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 # |test_support_without_content|. | 65 # |test_support_without_content|. |
| 66 static_library("test_support_common") { | 66 static_library("test_support_common") { |
| 67 testonly = true | 67 testonly = true |
| 68 visibility = [ ":*" ] | 68 visibility = [ ":*" ] |
| 69 sources = [ | 69 sources = [ |
| 70 "../common/test/ash_test.cc", | 70 "../common/test/ash_test.cc", |
| 71 "../common/test/ash_test.h", | 71 "../common/test/ash_test.h", |
| 72 "../common/test/ash_test_impl.h", | 72 "../common/test/ash_test_impl.h", |
| 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_controller_client.cc", |
| 76 "../common/test/test_session_controller_client.h", |
| 75 "../common/test/test_session_state_delegate.cc", | 77 "../common/test/test_session_state_delegate.cc", |
| 76 "../common/test/test_session_state_delegate.h", | 78 "../common/test/test_session_state_delegate.h", |
| 77 "../common/test/test_shelf_delegate.cc", | 79 "../common/test/test_shelf_delegate.cc", |
| 78 "../common/test/test_shelf_delegate.h", | 80 "../common/test/test_shelf_delegate.h", |
| 79 "../common/test/test_shelf_item_delegate.cc", | 81 "../common/test/test_shelf_item_delegate.cc", |
| 80 "../common/test/test_shelf_item_delegate.h", | 82 "../common/test/test_shelf_item_delegate.h", |
| 81 "../common/test/test_system_tray_delegate.cc", | 83 "../common/test/test_system_tray_delegate.cc", |
| 82 "../common/test/test_system_tray_delegate.h", | 84 "../common/test/test_system_tray_delegate.h", |
| 83 "../common/test/wm_shell_test_api.cc", | 85 "../common/test/wm_shell_test_api.cc", |
| 84 "../common/test/wm_shell_test_api.h", | 86 "../common/test/wm_shell_test_api.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ | 212 deps = [ |
| 211 ":test_support_with_content", | 213 ":test_support_with_content", |
| 212 "//base", | 214 "//base", |
| 213 "//skia", | 215 "//skia", |
| 214 "//testing/gtest", | 216 "//testing/gtest", |
| 215 "//ui/aura", | 217 "//ui/aura", |
| 216 "//ui/base", | 218 "//ui/base", |
| 217 "//ui/gl:test_support", | 219 "//ui/gl:test_support", |
| 218 ] | 220 ] |
| 219 } | 221 } |
| OLD | NEW |