OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 }, | 215 }, |
216 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 216 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
217 'msvs_disabled_warnings': [ 4267, ], | 217 'msvs_disabled_warnings': [ 4267, ], |
218 }], | 218 }], |
219 ['OS != "mac" and OS != "ios"', { | 219 ['OS != "mac" and OS != "ios"', { |
220 'sources': [ | 220 'sources': [ |
221 'gfx/transform_unittest.cc', | 221 'gfx/transform_unittest.cc', |
222 'gfx/interpolated_transform_unittest.cc', | 222 'gfx/interpolated_transform_unittest.cc', |
223 ], | 223 ], |
224 }], | 224 }], |
| 225 ['OS == "android"', { |
| 226 'sources': [ |
| 227 'gfx/android/scroller_unittest.cc', |
| 228 ], |
| 229 }], |
225 ['OS == "android" and gtest_target_type == "shared_library"', { | 230 ['OS == "android" and gtest_target_type == "shared_library"', { |
226 'dependencies': [ | 231 'dependencies': [ |
227 '../testing/android/native_test.gyp:native_test_native_code', | 232 '../testing/android/native_test.gyp:native_test_native_code', |
228 ], | 233 ], |
229 }], | 234 }], |
230 ['desktop_linux == 1 or chromeos == 1 or OS == "ios"', { | 235 ['desktop_linux == 1 or chromeos == 1 or OS == "ios"', { |
231 'dependencies': [ | 236 'dependencies': [ |
232 'base/strings/ui_strings.gyp:ui_unittest_strings', | 237 'base/strings/ui_strings.gyp:ui_unittest_strings', |
233 ], | 238 ], |
234 }], | 239 }], |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 'variables': { | 349 'variables': { |
345 'test_suite_name': 'ui_unittests', | 350 'test_suite_name': 'ui_unittests', |
346 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 351 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
347 }, | 352 }, |
348 'includes': [ '../build/apk_test.gypi' ], | 353 'includes': [ '../build/apk_test.gypi' ], |
349 }, | 354 }, |
350 ], | 355 ], |
351 }], | 356 }], |
352 ], | 357 ], |
353 } | 358 } |
OLD | NEW |