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("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 } | 881 } |
882 | 882 |
883 if (enable_web_speech) { | 883 if (enable_web_speech) { |
884 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ] | 884 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ] |
885 } | 885 } |
886 | 886 |
887 if (!is_chrome_branded) { | 887 if (!is_chrome_branded) { |
888 # These tests depend on single process mode, which is disabled | 888 # These tests depend on single process mode, which is disabled |
889 # in official builds. | 889 # in official builds. |
890 sources += [ | 890 sources += [ |
891 "../child/child_thread_impl_browsertest.cc", | |
892 "../renderer/browser_render_view_browsertest.cc", | 891 "../renderer/browser_render_view_browsertest.cc", |
893 "../renderer/dom_serializer_browsertest.cc", | 892 "../renderer/dom_serializer_browsertest.cc", |
894 "../renderer/resource_fetcher_browsertest.cc", | 893 "../renderer/resource_fetcher_browsertest.cc", |
895 "../renderer/savable_resources_browsertest.cc", | 894 "../renderer/savable_resources_browsertest.cc", |
896 ] | 895 ] |
897 | 896 |
898 deps += [ | 897 deps += [ |
899 "//components/discardable_memory/client", | 898 "//components/discardable_memory/client", |
900 "//components/discardable_memory/common", | 899 "//components/discardable_memory/common", |
901 "//components/discardable_memory/service", | 900 "//components/discardable_memory/service", |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1716 if (is_android) { | 1715 if (is_android) { |
1717 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1716 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1718 } | 1717 } |
1719 } | 1718 } |
1720 | 1719 |
1721 group("fuzzers") { | 1720 group("fuzzers") { |
1722 deps = [ | 1721 deps = [ |
1723 "//content/test/fuzzer", | 1722 "//content/test/fuzzer", |
1724 ] | 1723 ] |
1725 } | 1724 } |
OLD | NEW |