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

Unified Diff: content/shell/BUILD.gn

Issue 1131773004: content: Port layout_test_helper target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
+ }
+ }
+}
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698