Index: content/shell/BUILD.gn |
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn |
index dddfb011770e42179cae9e4ca3ec099552b5c116..95450b5343a6e526711142be01b3b5a077996362 100644 |
--- a/content/shell/BUILD.gn |
+++ b/content/shell/BUILD.gn |
@@ -541,3 +541,17 @@ if (!is_android && !is_mac) { |
] |
} |
} |
+ |
+if (is_mac || is_win) { |
+ # GYP version: content/content_shell_and_tests.gyp:layout_test_helper |
+ executable("layout_test_helper") { |
+ sources = [ |
+ "renderer/test_runner/helper/layout_test_helper_mac.mm", |
+ "renderer/test_runner/helper/layout_test_helper_win.cc", |
+ ] |
+ |
+ if (is_mac) { |
+ libs = [ "AppKit.framework" ] |
+ } |
+ } |
+} |