| 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 | 665 |
| 666 deps = [ | 666 deps = [ |
| 667 ":browsertest_support", | 667 ":browsertest_support", |
| 668 ":content_test_mojo_bindings", | 668 ":content_test_mojo_bindings", |
| 669 ":layouttest_support", | 669 ":layouttest_support", |
| 670 ":test_support", | 670 ":test_support", |
| 671 ":web_ui_test_mojo_bindings", | 671 ":web_ui_test_mojo_bindings", |
| 672 "//base/test:test_support", | 672 "//base/test:test_support", |
| 673 "//components/discardable_memory/client", | 673 "//components/discardable_memory/client", |
| 674 "//components/discardable_memory/common", | 674 "//components/discardable_memory/common", |
| 675 "//components/discardable_memory/service", |
| 675 "//content:resources", | 676 "//content:resources", |
| 676 "//content/app:both_for_content_tests", | 677 "//content/app:both_for_content_tests", |
| 677 "//content/browser:for_content_tests", | 678 "//content/browser:for_content_tests", |
| 678 "//content/browser/background_sync:background_sync_proto", | 679 "//content/browser/background_sync:background_sync_proto", |
| 679 "//content/child:for_content_tests", | 680 "//content/child:for_content_tests", |
| 680 "//content/gpu", | 681 "//content/gpu", |
| 681 "//content/public/browser", | 682 "//content/public/browser", |
| 682 "//content/public/child", | 683 "//content/public/child", |
| 683 "//content/public/common", | 684 "//content/public/common", |
| 684 "//content/public/renderer", | 685 "//content/public/renderer", |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 } | 884 } |
| 884 | 885 |
| 885 if (enable_web_speech) { | 886 if (enable_web_speech) { |
| 886 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ] | 887 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ] |
| 887 } | 888 } |
| 888 | 889 |
| 889 if (!is_chrome_branded) { | 890 if (!is_chrome_branded) { |
| 890 # These tests depend on single process mode, which is disabled | 891 # These tests depend on single process mode, which is disabled |
| 891 # in official builds. | 892 # in official builds. |
| 892 sources += [ | 893 sources += [ |
| 893 "../child/child_thread_impl_browsertest.cc", | |
| 894 "../renderer/browser_render_view_browsertest.cc", | 894 "../renderer/browser_render_view_browsertest.cc", |
| 895 "../renderer/dom_serializer_browsertest.cc", | 895 "../renderer/dom_serializer_browsertest.cc", |
| 896 "../renderer/resource_fetcher_browsertest.cc", | 896 "../renderer/resource_fetcher_browsertest.cc", |
| 897 "../renderer/savable_resources_browsertest.cc", | 897 "../renderer/savable_resources_browsertest.cc", |
| 898 ] | 898 ] |
| 899 | 899 |
| 900 deps += [ | 900 deps += [ |
| 901 "//components/discardable_memory/client", | 901 "//components/discardable_memory/client", |
| 902 "//components/discardable_memory/common", | 902 "//components/discardable_memory/common", |
| 903 "//components/discardable_memory/service", | 903 "//components/discardable_memory/service", |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1721 if (is_android) { | 1721 if (is_android) { |
| 1722 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1722 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1723 } | 1723 } |
| 1724 } | 1724 } |
| 1725 | 1725 |
| 1726 group("fuzzers") { | 1726 group("fuzzers") { |
| 1727 deps = [ | 1727 deps = [ |
| 1728 "//content/test/fuzzer", | 1728 "//content/test/fuzzer", |
| 1729 ] | 1729 ] |
| 1730 } | 1730 } |
| OLD | NEW |