| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 } else { | 712 } else { |
| 713 sources -= [ | 713 sources -= [ |
| 714 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", | 714 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", |
| 715 "../browser/renderer_host/web_input_event_aura_unittest.cc", | 715 "../browser/renderer_host/web_input_event_aura_unittest.cc", |
| 716 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", | 716 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", |
| 717 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", | 717 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", |
| 718 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", | 718 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", |
| 719 "../browser/web_contents/web_contents_view_aura_unittest.cc", | 719 "../browser/web_contents/web_contents_view_aura_unittest.cc", |
| 720 ] | 720 ] |
| 721 } | 721 } |
| 722 |
| 723 # Avoid windows due to non-availability of cursor resources in test. |
| 724 if (!use_aura || is_win) { |
| 725 sources -= [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] |
| 726 } |
| 722 if (use_aura || toolkit_views) { | 727 if (use_aura || toolkit_views) { |
| 723 deps += [ "//ui/events:test_support" ] | 728 deps += [ "//ui/events:test_support" ] |
| 724 } | 729 } |
| 725 if (!use_aura && !is_mac) { | 730 if (!use_aura && !is_mac) { |
| 726 sources -= [ | 731 sources -= [ |
| 727 "../browser/compositor/buffer_queue_unittest.cc", | 732 "../browser/compositor/buffer_queue_unittest.cc", |
| 728 "../browser/compositor/reflector_impl_unittest.cc", | 733 "../browser/compositor/reflector_impl_unittest.cc", |
| 729 "../browser/compositor/software_browser_compositor_output_surface_unittest
.cc", | 734 "../browser/compositor/software_browser_compositor_output_surface_unittest
.cc", |
| 730 ] | 735 ] |
| 731 } | 736 } |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 "//gpu/blink", | 839 "//gpu/blink", |
| 835 "//testing/gtest", | 840 "//testing/gtest", |
| 836 "//third_party/WebKit/public:blink", | 841 "//third_party/WebKit/public:blink", |
| 837 "//ui/base", | 842 "//ui/base", |
| 838 "//ui/gfx", | 843 "//ui/gfx", |
| 839 "//ui/gfx/geometry", | 844 "//ui/gfx/geometry", |
| 840 "//ui/gl", | 845 "//ui/gl", |
| 841 "//ui/gl:test_support", | 846 "//ui/gl:test_support", |
| 842 ] | 847 ] |
| 843 } | 848 } |
| OLD | NEW |