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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 101 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
102 ], | 102 ], |
103 'include_dirs': [ | 103 'include_dirs': [ |
104 '../', | 104 '../', |
105 ], | 105 ], |
106 'conditions': [ | 106 'conditions': [ |
107 ['OS == "win"', { | 107 ['OS == "win"', { |
108 'sources': [ | 108 'sources': [ |
109 'base/dragdrop/os_exchange_data_win_unittest.cc', | 109 'base/dragdrop/os_exchange_data_win_unittest.cc', |
110 'base/view_prop_unittest.cc', | 110 'base/view_prop_unittest.cc', |
111 # TODO(brettw) re-enable this when the dependencies on WindowImpl ar
e fixed! | |
112 'gfx/icon_util_unittest.cc', | 111 'gfx/icon_util_unittest.cc', |
113 'gfx/native_theme_win_unittest.cc', | 112 'gfx/native_theme_win_unittest.cc', |
| 113 'gfx/platform_font_win_unittest.cc', |
114 ], | 114 ], |
115 'include_dirs': [ | 115 'include_dirs': [ |
116 '../..', | 116 '../..', |
117 '../third_party/wtl/include', | 117 '../third_party/wtl/include', |
118 ], | 118 ], |
119 'msvs_settings': { | 119 'msvs_settings': { |
120 'VCLinkerTool': { | 120 'VCLinkerTool': { |
121 'DelayLoadDLLs': [ | 121 'DelayLoadDLLs': [ |
122 'd2d1.dll', | 122 'd2d1.dll', |
123 'd3d10_1.dll', | 123 'd3d10_1.dll', |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 }], | 192 }], |
193 ['use_aura==1 or toolkit_views==1', { | 193 ['use_aura==1 or toolkit_views==1', { |
194 'sources': [ | 194 'sources': [ |
195 'base/gestures/velocity_calculator_unittest.cc', | 195 'base/gestures/velocity_calculator_unittest.cc', |
196 ], | 196 ], |
197 }], | 197 }], |
198 ], | 198 ], |
199 }, | 199 }, |
200 ], | 200 ], |
201 } | 201 } |
OLD | NEW |