OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 '../build/win_precompile.gypi', | 7 '../build/win_precompile.gypi', |
8 '../third_party/WebKit/Source/WebKit/chromium/features.gypi', | 8 '../third_party/WebKit/Source/WebKit/chromium/features.gypi', |
9 'tools/test_shell/test_shell.gypi', | 9 'tools/test_shell/test_shell.gypi', |
10 ], | 10 ], |
11 'variables': { | 11 'variables': { |
12 'chromium_code': 1, | 12 'chromium_code': 1, |
13 }, | 13 }, |
14 'targets': [ | 14 'conditions': [ |
15 { | 15 # TODO(dpranke): See https://bugs.webkit.org/show_bug.cgi?id=68463 , |
16 'target_name': 'pull_in_webkit_unit_tests', | 16 # flag in build/common.gypi. |
17 'type': 'none', | 17 ['build_webkit_exes_from_webkit_gyp==1', { |
18 'dependencies': [ | 18 'targets': [ |
19 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_unit_tes
ts' | 19 { |
| 20 'target_name': 'pull_in_webkit_unit_tests', |
| 21 'type': 'none', |
| 22 'dependencies': [ |
| 23 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_unit
_tests' |
| 24 ], |
| 25 }, |
| 26 { |
| 27 'target_name': 'pull_in_DumpRenderTree', |
| 28 'type': 'none', |
| 29 'dependencies': [ |
| 30 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderT
ree' |
| 31 ], |
| 32 } |
20 ], | 33 ], |
21 }, | 34 }, { |
22 { | 35 'targets': [ |
23 'target_name': 'pull_in_DumpRenderTree', | 36 { |
24 'type': 'none', | 37 'target_name': 'pull_in_webkit_unit_tests', |
25 'dependencies': [ | 38 'type': 'none', |
26 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree' | 39 'dependencies': [ |
| 40 '../third_party/WebKit/Source/WebKit/chromium/WebKitTest.gyp:webkit_
unit_tests' |
| 41 ], |
| 42 }, |
| 43 { |
| 44 'target_name': 'pull_in_DumpRenderTree', |
| 45 'type': 'none', |
| 46 'dependencies': [ |
| 47 '../third_party/WebKit/Tools/Tools.gyp:DumpRenderTree' |
| 48 ], |
| 49 } |
27 ], | 50 ], |
28 }, | 51 }] |
29 ], # targets | 52 ], # targets |
30 } | 53 } |
OLD | NEW |