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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'libraries': [ | 204 'libraries': [ |
205 '-limm32.lib', | 205 '-limm32.lib', |
206 '-loleacc.lib', | 206 '-loleacc.lib', |
207 ], | 207 ], |
208 }, | 208 }, |
209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
210 'msvs_disabled_warnings': [ 4267, ], | 210 'msvs_disabled_warnings': [ 4267, ], |
211 }], | 211 }], |
212 ['OS == "linux"', { | 212 ['OS == "linux"', { |
213 'sources': [ | 213 'sources': [ |
214 'base/x/x11_util_unittest.cc', | |
215 'gfx/platform_font_pango_unittest.cc', | 214 'gfx/platform_font_pango_unittest.cc', |
216 ], | 215 ], |
217 }], | 216 }], |
218 ['OS == "linux" and toolkit_views==1', { | 217 ['OS == "linux" and toolkit_views==1', { |
219 'sources': [ | 218 'sources': [ |
220 'base/x/events_x_unittest.cc', | 219 'base/x/events_x_unittest.cc', |
221 ], | 220 ], |
222 }], | 221 }], |
223 ['OS != "mac" and OS != "ios"', { | 222 ['OS != "mac" and OS != "ios"', { |
224 'sources': [ | 223 'sources': [ |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 'variables': { | 320 'variables': { |
322 'test_suite_name': 'ui_unittests', | 321 'test_suite_name': 'ui_unittests', |
323 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 322 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
324 }, | 323 }, |
325 'includes': [ '../build/apk_test.gypi' ], | 324 'includes': [ '../build/apk_test.gypi' ], |
326 }, | 325 }, |
327 ], | 326 ], |
328 }], | 327 }], |
329 ], | 328 ], |
330 } | 329 } |
OLD | NEW |