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

Unified Diff: content/content_tests.gypi

Issue 11362161: Use the WebTestProxy for layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: version that doesn't expose RenderViewImpl in public API Created 8 years, 1 month 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/content_tests.gypi
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index c87b945a692b41c8fe180e3d52aa499f91c51e07..313bee774f4296cf20299c6b421d86b74147ce3c 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -598,6 +598,30 @@
}],
],
},
+ {
+ 'target_name': 'content_layouttest_support',
+ 'conditions': [
+ ['component=="shared_library" or OS=="ios"', {
+ 'type': 'none',
+ }, {
+ 'type': 'static_library',
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'dependencies': [
+ 'content_renderer',
+ '<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:TestRunner',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'public/test/content_layouttest_support.h',
+ 'test/content_layouttest_support.cc',
+ ],
+ }],
+ ],
+ },
],
'conditions': [
['OS!="ios"', {

Powered by Google App Engine
This is Rietveld 408576698