| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  127     "test_system_tray_item.cc", |  127     "test_system_tray_item.cc", | 
|  128     "test_system_tray_item.h", |  128     "test_system_tray_item.h", | 
|  129     "test_wallpaper_delegate.cc", |  129     "test_wallpaper_delegate.cc", | 
|  130     "test_wallpaper_delegate.h", |  130     "test_wallpaper_delegate.h", | 
|  131     "tray_cast_test_api.cc", |  131     "tray_cast_test_api.cc", | 
|  132     "tray_cast_test_api.h", |  132     "tray_cast_test_api.h", | 
|  133     "ui_controls_factory_ash.cc", |  133     "ui_controls_factory_ash.cc", | 
|  134     "ui_controls_factory_ash.h", |  134     "ui_controls_factory_ash.h", | 
|  135     "user_metrics_recorder_test_api.cc", |  135     "user_metrics_recorder_test_api.cc", | 
|  136     "user_metrics_recorder_test_api.h", |  136     "user_metrics_recorder_test_api.h", | 
|  137     "wm_window_aura_test_api.cc", |  137     "wm_window_test_api.cc", | 
|  138     "wm_window_aura_test_api.h", |  138     "wm_window_test_api.h", | 
|  139   ] |  139   ] | 
|  140   configs += [ "//build/config:precompiled_headers" ] |  140   configs += [ "//build/config:precompiled_headers" ] | 
|  141  |  141  | 
|  142   public_deps = [ |  142   public_deps = [ | 
|  143     "//ash", |  143     "//ash", | 
|  144     "//ui/display:display_manager_test_api", |  144     "//ui/display:display_manager_test_api", | 
|  145   ] |  145   ] | 
|  146   deps = [ |  146   deps = [ | 
|  147     "//ash/common/test:test_support", |  147     "//ash/common/test:test_support", | 
|  148     "//ash/public/cpp", |  148     "//ash/public/cpp", | 
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  198   deps = [ |  198   deps = [ | 
|  199     ":test_support_with_content", |  199     ":test_support_with_content", | 
|  200     "//base", |  200     "//base", | 
|  201     "//skia", |  201     "//skia", | 
|  202     "//testing/gtest", |  202     "//testing/gtest", | 
|  203     "//ui/aura", |  203     "//ui/aura", | 
|  204     "//ui/base", |  204     "//ui/base", | 
|  205     "//ui/gl:test_support", |  205     "//ui/gl:test_support", | 
|  206   ] |  206   ] | 
|  207 } |  207 } | 
| OLD | NEW |