OLD | NEW |
(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 } |
OLD | NEW |