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 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 '<(PRODUCT_DIR)/ui_unittests_strings/en.lproj/locale.pak', | 153 '<(PRODUCT_DIR)/ui_unittests_strings/en.lproj/locale.pak', |
154 ], | 154 ], |
155 }], | 155 }], |
156 ['OS == "win"', { | 156 ['OS == "win"', { |
157 'sources': [ | 157 'sources': [ |
158 'base/dragdrop/os_exchange_data_win_unittest.cc', | 158 'base/dragdrop/os_exchange_data_win_unittest.cc', |
159 'base/win/hwnd_subclass_unittest.cc', | 159 'base/win/hwnd_subclass_unittest.cc', |
160 'gfx/font_fallback_win_unittest.cc', | 160 'gfx/font_fallback_win_unittest.cc', |
161 'gfx/icon_util_unittest.cc', | 161 'gfx/icon_util_unittest.cc', |
162 'gfx/platform_font_win_unittest.cc', | 162 'gfx/platform_font_win_unittest.cc', |
| 163 'surface/accelerated_surface_transformer_win_unittest.cc' |
| 164 ], |
| 165 'dependencies': [ |
| 166 '../ui/surface/surface.gyp:surface', |
163 ], | 167 ], |
164 'include_dirs': [ | 168 'include_dirs': [ |
165 '../..', | 169 '../..', |
166 '../third_party/wtl/include', | 170 '../third_party/wtl/include', |
167 ], | 171 ], |
168 'msvs_settings': { | 172 'msvs_settings': { |
169 'VCLinkerTool': { | 173 'VCLinkerTool': { |
170 'DelayLoadDLLs': [ | 174 'DelayLoadDLLs': [ |
171 'd2d1.dll', | 175 'd2d1.dll', |
172 'd3d10_1.dll', | 176 'd3d10_1.dll', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'variables': { | 294 'variables': { |
291 'test_suite_name': 'ui_unittests', | 295 'test_suite_name': 'ui_unittests', |
292 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 296 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
293 }, | 297 }, |
294 'includes': [ '../build/apk_test.gypi' ], | 298 'includes': [ '../build/apk_test.gypi' ], |
295 }, | 299 }, |
296 ], | 300 ], |
297 }], | 301 }], |
298 ], | 302 ], |
299 } | 303 } |
OLD | NEW |