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("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 ] | 828 ] |
829 | 829 |
830 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 830 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
831 } | 831 } |
832 if (!is_android) { | 832 if (!is_android) { |
833 deps += [ "//third_party/libvpx" ] | 833 deps += [ "//third_party/libvpx" ] |
834 } | 834 } |
835 | 835 |
836 if (use_aura) { | 836 if (use_aura) { |
837 deps += [ | 837 deps += [ |
838 "//components/mus/public/cpp/tests:unittest_support", | 838 "//services/ui/public/cpp/tests:unittest_support", |
839 "//ui/aura:test_support", | 839 "//ui/aura:test_support", |
840 "//ui/aura_extra", | 840 "//ui/aura_extra", |
841 "//ui/wm", | 841 "//ui/wm", |
842 ] | 842 ] |
843 sources += [ "../renderer/mus/compositor_mus_connection_unittest.cc" ] | 843 sources += [ "../renderer/mus/compositor_mus_connection_unittest.cc" ] |
844 } else { | 844 } else { |
845 sources -= [ | 845 sources -= [ |
846 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", | 846 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", |
847 "../browser/renderer_host/web_input_event_aura_unittest.cc", | 847 "../browser/renderer_host/web_input_event_aura_unittest.cc", |
848 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", | 848 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 | 920 |
921 fuzzer_test("renderer_fuzzer") { | 921 fuzzer_test("renderer_fuzzer") { |
922 sources = [ | 922 sources = [ |
923 "renderer_fuzzer.cc", | 923 "renderer_fuzzer.cc", |
924 ] | 924 ] |
925 deps = [ | 925 deps = [ |
926 ":test_support", | 926 ":test_support", |
927 "//content/shell:content_shell_lib", | 927 "//content/shell:content_shell_lib", |
928 ] | 928 ] |
929 } | 929 } |
OLD | NEW |