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

Unified Diff: content/content_layouttest_support.gypi

Issue 11362161: Use the WebTestProxy for layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_layouttest_support.gypi
diff --git a/content/content_layouttest_support.gypi b/content/content_layouttest_support.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..55408fa5f5a2e726d537620b6def9535f2cdb5c1
--- /dev/null
+++ b/content/content_layouttest_support.gypi
@@ -0,0 +1,31 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ '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': [
+ 'layouttest_support/content_layouttest_support.cc',
+ ],
+ }],
+ ],
+ },
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698