Index: content/test/BUILD.gn |
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn |
index e02d1a171b539eae2b7339336c24317dada1a8be..2b764e82faba4272bef9e81310bc8e4ca88e9a5e 100644 |
--- a/content/test/BUILD.gn |
+++ b/content/test/BUILD.gn |
@@ -500,6 +500,26 @@ static_library("layouttest_support") { |
} |
} |
+static_library("test_runner_support") { |
+ testonly = true |
+ |
+ # See comment at the top of //content/BUILD.gn for why this is disabled in |
+ # component builds. |
+ if (is_component_build) { |
+ check_includes = false |
+ } |
+ |
+ sources = [ |
+ "../public/test/test_runner_support.h", |
+ "test_runner_support.cc", |
+ ] |
+ |
+ deps = [ |
+ "//content/renderer:for_content_tests", |
+ "//third_party/WebKit/public:blink", |
+ ] |
+} |
+ |
if (is_android) { |
import("//build/config/android/rules.gni") |