| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 # Internal target consumed by |test_support_with_content| and | 61 # Internal target consumed by |test_support_with_content| and |
| 62 # |test_support_without_content|. This target contains all the test support | 62 # |test_support_without_content|. This target contains all the test support |
| 63 # files, with the exception of an implementation of AshTestEnvironment. | 63 # files, with the exception of an implementation of AshTestEnvironment. |
| 64 # Consumers of ash should use one of |test_support_with_content| or | 64 # Consumers of ash should use one of |test_support_with_content| or |
| 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 "ash_test.cc", |
| 71 "../common/test/ash_test.h", | 71 "ash_test.h", |
| 72 "../common/test/ash_test_impl.h", | 72 "ash_test_impl.h", |
| 73 "../common/test/test_palette_delegate.cc", | 73 "test_palette_delegate.cc", |
| 74 "../common/test/test_palette_delegate.h", | 74 "test_palette_delegate.h", |
| 75 "../common/test/test_session_state_delegate.cc", | 75 "test_session_state_delegate.cc", |
| 76 "../common/test/test_session_state_delegate.h", | 76 "test_session_state_delegate.h", |
| 77 "../common/test/test_shelf_delegate.cc", | 77 "test_shelf_delegate.cc", |
| 78 "../common/test/test_shelf_delegate.h", | 78 "test_shelf_delegate.h", |
| 79 "../common/test/test_shelf_item_delegate.cc", | 79 "test_shelf_item_delegate.cc", |
| 80 "../common/test/test_shelf_item_delegate.h", | 80 "test_shelf_item_delegate.h", |
| 81 "../common/test/test_system_tray_delegate.cc", | 81 "test_system_tray_delegate.cc", |
| 82 "../common/test/test_system_tray_delegate.h", | 82 "test_system_tray_delegate.h", |
| 83 "../common/test/wm_shell_test_api.cc", | 83 "wm_shell_test_api.cc", |
| 84 "../common/test/wm_shell_test_api.h", | 84 "wm_shell_test_api.h", |
| 85 "../common/test/workspace_event_handler_test_helper.cc", | 85 "workspace_event_handler_test_helper.cc", |
| 86 "../common/test/workspace_event_handler_test_helper.h", | 86 "workspace_event_handler_test_helper.h", |
| 87 | 87 |
| 88 # TODO(jamescook): Move these files into ash/test. | 88 # TODO(jamescook): Move these files into ash/test. |
| 89 "../laser/laser_pointer_controller_test_api.cc", | 89 "../laser/laser_pointer_controller_test_api.cc", |
| 90 "../laser/laser_pointer_controller_test_api.h", | 90 "../laser/laser_pointer_controller_test_api.h", |
| 91 "../laser/laser_pointer_points_test_api.cc", | 91 "../laser/laser_pointer_points_test_api.cc", |
| 92 "../laser/laser_pointer_points_test_api.h", | 92 "../laser/laser_pointer_points_test_api.h", |
| 93 "../shell/toplevel_window.cc", | 93 "../shell/toplevel_window.cc", |
| 94 "../shell/toplevel_window.h", | 94 "../shell/toplevel_window.h", |
| 95 "ash_test_base.cc", | 95 "ash_test_base.cc", |
| 96 "ash_test_base.h", | 96 "ash_test_base.h", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ | 210 deps = [ |
| 211 ":test_support_with_content", | 211 ":test_support_with_content", |
| 212 "//base", | 212 "//base", |
| 213 "//skia", | 213 "//skia", |
| 214 "//testing/gtest", | 214 "//testing/gtest", |
| 215 "//ui/aura", | 215 "//ui/aura", |
| 216 "//ui/base", | 216 "//ui/base", |
| 217 "//ui/gl:test_support", | 217 "//ui/gl:test_support", |
| 218 ] | 218 ] |
| 219 } | 219 } |
| OLD | NEW |