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

Unified Diff: content/test/BUILD.gn

Issue 2005013002: mac: ensure ui::Compositor exists for visible RWHVs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move dcheck Created 4 years, 6 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 a59f6e4fcbc12dcad0ab73f6daa05b7a40838b4d..61f8529a9032fe331657ae13dd714620b76ff64c 100644
--- a/content/test/BUILD.gn
+++ b/content/test/BUILD.gn
@@ -197,6 +197,10 @@ static_library("test_support") {
if (v8_use_external_startup_data) {
deps += [ "//gin:gin" ]
}
+
+ if (is_mac) {
+ deps += [ "//ui/accelerated_widget_mac" ]
+ }
}
# browsertest_support can be used by targets that run content_shell based
@@ -792,6 +796,7 @@ test("content_unittests") {
deps += [
"//third_party/mozilla",
"//third_party/ocmock",
+ "//ui/accelerated_widget_mac",
]
}
if (is_chromeos) {

Powered by Google App Engine
This is Rietveld 408576698