| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 }, | 144 }, |
| 145 'link_settings': { | 145 'link_settings': { |
| 146 'libraries': [ | 146 'libraries': [ |
| 147 '-limm32.lib', | 147 '-limm32.lib', |
| 148 '-loleacc.lib', | 148 '-loleacc.lib', |
| 149 ], | 149 ], |
| 150 }, | 150 }, |
| 151 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 151 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 152 'msvs_disabled_warnings': [ 4267, ], | 152 'msvs_disabled_warnings': [ 4267, ], |
| 153 }], | 153 }], |
| 154 ['OS != "mac" and OS != "ios"', { | |
| 155 'sources': [ | |
| 156 'gfx/transform_unittest.cc', | |
| 157 'gfx/interpolated_transform_unittest.cc', | |
| 158 ], | |
| 159 }], | |
| 160 ['OS == "android"', { | 154 ['OS == "android"', { |
| 161 'sources': [ | 155 'sources': [ |
| 162 'gfx/android/scroller_unittest.cc', | 156 'gfx/android/scroller_unittest.cc', |
| 163 ], | 157 ], |
| 164 }], | 158 }], |
| 165 ['OS == "android" and gtest_target_type == "shared_library"', { | 159 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 166 'dependencies': [ | 160 'dependencies': [ |
| 167 '../testing/android/native_test.gyp:native_test_native_code', | 161 '../testing/android/native_test.gyp:native_test_native_code', |
| 168 ], | 162 ], |
| 169 }], | 163 }], |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 ], | 277 ], |
| 284 'variables': { | 278 'variables': { |
| 285 'test_suite_name': 'ui_unittests', | 279 'test_suite_name': 'ui_unittests', |
| 286 }, | 280 }, |
| 287 'includes': [ '../build/apk_test.gypi' ], | 281 'includes': [ '../build/apk_test.gypi' ], |
| 288 }, | 282 }, |
| 289 ], | 283 ], |
| 290 }], | 284 }], |
| 291 ], | 285 ], |
| 292 } | 286 } |
| OLD | NEW |