OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ui_test_support', | 8 'target_name': 'ui_test_support', |
9 'dependencies': [ | 9 'dependencies': [ |
10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 'include_dirs': [ | 105 'include_dirs': [ |
106 '../', | 106 '../', |
107 ], | 107 ], |
108 'conditions': [ | 108 'conditions': [ |
109 ['OS == "win"', { | 109 ['OS == "win"', { |
110 'sources': [ | 110 'sources': [ |
111 'base/dragdrop/os_exchange_data_win_unittest.cc', | 111 'base/dragdrop/os_exchange_data_win_unittest.cc', |
112 # TODO(brettw) re-enable this when the dependencies on WindowImpl ar
e fixed! | 112 # TODO(brettw) re-enable this when the dependencies on WindowImpl ar
e fixed! |
113 'gfx/icon_util_unittest.cc', | 113 'gfx/icon_util_unittest.cc', |
114 'gfx/native_theme_win_unittest.cc', | 114 'gfx/native_theme_win_unittest.cc', |
| 115 'base/win/hwnd_subclass_unittest.cc', |
115 ], | 116 ], |
116 'include_dirs': [ | 117 'include_dirs': [ |
117 '../..', | 118 '../..', |
118 '../third_party/wtl/include', | 119 '../third_party/wtl/include', |
119 ], | 120 ], |
120 'msvs_settings': { | 121 'msvs_settings': { |
121 'VCLinkerTool': { | 122 'VCLinkerTool': { |
122 'DelayLoadDLLs': [ | 123 'DelayLoadDLLs': [ |
123 'd2d1.dll', | 124 'd2d1.dll', |
124 'd3d10_1.dll', | 125 'd3d10_1.dll', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ], | 187 ], |
187 }], | 188 }], |
188 ['OS!="win" or use_aura==0', { | 189 ['OS!="win" or use_aura==0', { |
189 'sources!': [ | 190 'sources!': [ |
190 'base/view_prop_unittest.cc', | 191 'base/view_prop_unittest.cc', |
191 ], | 192 ], |
192 }], | 193 }], |
193 ['use_aura==1', { | 194 ['use_aura==1', { |
194 'sources!': [ | 195 'sources!': [ |
195 'gfx/screen_unittest.cc', | 196 'gfx/screen_unittest.cc', |
| 197 'gfx/native_theme_win_unittest.cc', |
| 198 'base/dragdrop/os_exchange_data_win_unittest.cc', |
196 ], | 199 ], |
197 }], | 200 }], |
198 ['use_aura==1 or toolkit_views==1', { | 201 ['use_aura==1 or toolkit_views==1', { |
199 'sources': [ | 202 'sources': [ |
200 'base/gestures/velocity_calculator_unittest.cc', | 203 'base/gestures/velocity_calculator_unittest.cc', |
201 ], | 204 ], |
202 }], | 205 }], |
203 ], | 206 ], |
204 }, | 207 }, |
205 ], | 208 ], |
206 } | 209 } |
OLD | NEW |