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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 'libraries': [ | 233 'libraries': [ |
234 '-limm32.lib', | 234 '-limm32.lib', |
235 '-loleacc.lib', | 235 '-loleacc.lib', |
236 ], | 236 ], |
237 }, | 237 }, |
238 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 238 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
239 'msvs_disabled_warnings': [ 4267, ], | 239 'msvs_disabled_warnings': [ 4267, ], |
240 }], | 240 }], |
241 ['OS == "linux" and toolkit_views==1', { | 241 ['OS == "linux" and toolkit_views==1', { |
242 'sources': [ | 242 'sources': [ |
243 'base/x/events_x_unittest.cc', | 243 'events/x/events_x_unittest.cc', |
244 ], | 244 ], |
245 }], | 245 }], |
246 ['OS != "mac" and OS != "ios"', { | 246 ['OS != "mac" and OS != "ios"', { |
247 'sources': [ | 247 'sources': [ |
248 'gfx/transform_unittest.cc', | 248 'gfx/transform_unittest.cc', |
249 'gfx/interpolated_transform_unittest.cc', | 249 'gfx/interpolated_transform_unittest.cc', |
250 ], | 250 ], |
251 }], | 251 }], |
252 ['OS == "android" and gtest_target_type == "shared_library"', { | 252 ['OS == "android" and gtest_target_type == "shared_library"', { |
253 'dependencies': [ | 253 'dependencies': [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 'variables': { | 358 'variables': { |
359 'test_suite_name': 'ui_unittests', | 359 'test_suite_name': 'ui_unittests', |
360 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 360 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
361 }, | 361 }, |
362 'includes': [ '../build/apk_test.gypi' ], | 362 'includes': [ '../build/apk_test.gypi' ], |
363 }, | 363 }, |
364 ], | 364 ], |
365 }], | 365 }], |
366 ], | 366 ], |
367 } | 367 } |
OLD | NEW |