Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: content/test/BUILD.gn

Issue 2485623002: discardable_memory: Using mojo IPC to replace Chrome IPC (Closed)
Patch Set: Fix build bots. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 } 878 }
879 879
880 if (enable_web_speech) { 880 if (enable_web_speech) {
881 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ] 881 sources += [ "../browser/speech/speech_recognition_browsertest.cc" ]
882 } 882 }
883 883
884 if (!is_chrome_branded) { 884 if (!is_chrome_branded) {
885 # These tests depend on single process mode, which is disabled 885 # These tests depend on single process mode, which is disabled
886 # in official builds. 886 # in official builds.
887 sources += [ 887 sources += [
888 "../child/child_thread_impl_browsertest.cc",
889 "../renderer/browser_render_view_browsertest.cc", 888 "../renderer/browser_render_view_browsertest.cc",
890 "../renderer/dom_serializer_browsertest.cc", 889 "../renderer/dom_serializer_browsertest.cc",
891 "../renderer/resource_fetcher_browsertest.cc", 890 "../renderer/resource_fetcher_browsertest.cc",
892 "../renderer/savable_resources_browsertest.cc", 891 "../renderer/savable_resources_browsertest.cc",
893 ] 892 ]
894 893
895 deps += [ 894 deps += [
896 "//components/discardable_memory/client", 895 "//components/discardable_memory/client",
897 "//components/discardable_memory/common", 896 "//components/discardable_memory/common",
898 "//components/discardable_memory/service", 897 "//components/discardable_memory/service",
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
1713 if (is_android) { 1712 if (is_android) {
1714 deps += [ "//testing/android/native_test:native_test_native_code" ] 1713 deps += [ "//testing/android/native_test:native_test_native_code" ]
1715 } 1714 }
1716 } 1715 }
1717 1716
1718 group("fuzzers") { 1717 group("fuzzers") {
1719 deps = [ 1718 deps = [
1720 "//content/test/fuzzer", 1719 "//content/test/fuzzer",
1721 ] 1720 ]
1722 } 1721 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698