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

Unified Diff: content/test/BUILD.gn

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: Revert back to original check in didUpdateName Created 3 years, 10 months 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 side-by-side diff with in-line comments
Download patch
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")

Powered by Google App Engine
This is Rietveld 408576698