| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 deps += [ | 816 deps += [ |
| 817 "//services/ui/public/cpp/tests:unittest_support", | 817 "//services/ui/public/cpp/tests:unittest_support", |
| 818 "//ui/aura:test_support", | 818 "//ui/aura:test_support", |
| 819 "//ui/aura_extra", | 819 "//ui/aura_extra", |
| 820 "//ui/wm", | 820 "//ui/wm", |
| 821 ] | 821 ] |
| 822 sources += [ "../renderer/mus/compositor_mus_connection_unittest.cc" ] | 822 sources += [ "../renderer/mus/compositor_mus_connection_unittest.cc" ] |
| 823 } else { | 823 } else { |
| 824 sources -= [ | 824 sources -= [ |
| 825 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", | 825 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", |
| 826 "../browser/renderer_host/web_input_event_aura_unittest.cc", | |
| 827 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", | 826 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", |
| 828 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", | 827 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", |
| 829 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", | 828 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", |
| 830 "../browser/web_contents/web_contents_view_aura_unittest.cc", | 829 "../browser/web_contents/web_contents_view_aura_unittest.cc", |
| 831 ] | 830 ] |
| 832 } | 831 } |
| 833 | 832 |
| 834 # Avoid windows due to non-availability of cursor resources in test. | 833 # Avoid windows due to non-availability of cursor resources in test. |
| 835 if (!use_aura || is_win) { | 834 if (!use_aura || is_win) { |
| 836 sources -= [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] | 835 sources -= [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 if (is_android) { | 895 if (is_android) { |
| 897 deps += [ "//testing/android/native_test:native_test_native_code" ] | 896 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 898 } | 897 } |
| 899 } | 898 } |
| 900 | 899 |
| 901 group("fuzzers") { | 900 group("fuzzers") { |
| 902 deps = [ | 901 deps = [ |
| 903 "//content/test/fuzzer", | 902 "//content/test/fuzzer", |
| 904 ] | 903 ] |
| 905 } | 904 } |
| OLD | NEW |