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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'content_layouttest_support',
9 'conditions': [
10 ['component=="shared_library" or OS=="ios"', {
11 'type': 'none',
12 }, {
13 'type': 'static_library',
14 'variables': {
15 'chromium_code': 1,
16 },
17 'dependencies': [
18 'content_renderer',
19 '<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRende rTree.gyp:TestRunner',
20 ],
21 'include_dirs': [
22 '..',
23 ],
24 'sources': [
25 'layouttest_support/content_layouttest_support.cc',
26 ],
27 }],
28 ],
29 },
30 ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698