| 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 static_library("test_support_without_content") { | 7 static_library("test_support_without_content") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "ash_test_environment_default.cc", | 10 "ash_test_environment_default.cc", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 # Internal target consumed by |test_support_with_content| and | 43 # Internal target consumed by |test_support_with_content| and |
| 44 # |test_support_without_content|. This target contains all the test support | 44 # |test_support_without_content|. This target contains all the test support |
| 45 # files, with the exception of an implementation of AshTestEnvironment. | 45 # files, with the exception of an implementation of AshTestEnvironment. |
| 46 # Consumers of ash should use one of |test_support_with_content| or | 46 # Consumers of ash should use one of |test_support_with_content| or |
| 47 # |test_support_without_content|. | 47 # |test_support_without_content|. |
| 48 static_library("test_support_common") { | 48 static_library("test_support_common") { |
| 49 testonly = true | 49 testonly = true |
| 50 visibility = [ ":*" ] | 50 visibility = [ ":*" ] |
| 51 sources = [ | 51 sources = [ |
| 52 # TODO(jamescook): Move these files into ash/test. | |
| 53 "../laser/laser_pointer_controller_test_api.cc", | 52 "../laser/laser_pointer_controller_test_api.cc", |
| 54 "../laser/laser_pointer_controller_test_api.h", | 53 "../laser/laser_pointer_controller_test_api.h", |
| 55 "../laser/laser_pointer_points_test_api.cc", | 54 "../laser/laser_pointer_points_test_api.cc", |
| 56 "../laser/laser_pointer_points_test_api.h", | 55 "../laser/laser_pointer_points_test_api.h", |
| 57 "../rotator/test/screen_rotation_animator_test_api.cc", | 56 "../rotator/test/screen_rotation_animator_test_api.cc", |
| 58 "../rotator/test/screen_rotation_animator_test_api.h", | 57 "../rotator/test/screen_rotation_animator_test_api.h", |
| 59 "../shell/toplevel_window.cc", | 58 "../shell/toplevel_window.cc", |
| 60 "../shell/toplevel_window.h", | 59 "../shell/toplevel_window.h", |
| 60 "../system/tray/system_tray_test_api.h", |
| 61 "ash_test_base.cc", | 61 "ash_test_base.cc", |
| 62 "ash_test_base.h", | 62 "ash_test_base.h", |
| 63 "ash_test_environment.h", | 63 "ash_test_environment.h", |
| 64 "ash_test_helper.cc", | 64 "ash_test_helper.cc", |
| 65 "ash_test_helper.h", | 65 "ash_test_helper.h", |
| 66 "ash_test_views_delegate.cc", | 66 "ash_test_views_delegate.cc", |
| 67 "ash_test_views_delegate.h", | 67 "ash_test_views_delegate.h", |
| 68 "child_modal_window.cc", | 68 "child_modal_window.cc", |
| 69 "child_modal_window.h", | 69 "child_modal_window.h", |
| 70 "cursor_manager_test_api.cc", | 70 "cursor_manager_test_api.cc", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 deps = [ | 199 deps = [ |
| 200 ":test_support_with_content", | 200 ":test_support_with_content", |
| 201 "//base", | 201 "//base", |
| 202 "//skia", | 202 "//skia", |
| 203 "//testing/gtest", | 203 "//testing/gtest", |
| 204 "//ui/aura", | 204 "//ui/aura", |
| 205 "//ui/base", | 205 "//ui/base", |
| 206 "//ui/gl:test_support", | 206 "//ui/gl:test_support", |
| 207 ] | 207 ] |
| 208 } | 208 } |
| OLD | NEW |