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