| 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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1718 if (is_android) { | 1717 if (is_android) { |
| 1719 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1718 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1720 } | 1719 } |
| 1721 } | 1720 } |
| 1722 | 1721 |
| 1723 group("fuzzers") { | 1722 group("fuzzers") { |
| 1724 deps = [ | 1723 deps = [ |
| 1725 "//content/test/fuzzer", | 1724 "//content/test/fuzzer", |
| 1726 ] | 1725 ] |
| 1727 } | 1726 } |
| OLD | NEW |