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 'variables': { | 6 'variables': { |
7 'chromium_code': 0, | 7 'chromium_code': 0, |
8 'cc_unit_tests_source_files': [ | 8 'cc_unit_tests_source_files': [ |
9 'animation_unittest.cc', | 9 'animation_unittest.cc', |
10 'content_layer_unittest.cc', | 10 'content_layer_unittest.cc', |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 241 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
242 'msvs_disabled_warnings': [ 4267, ], | 242 'msvs_disabled_warnings': [ 4267, ], |
243 }, | 243 }, |
244 { | 244 { |
245 'target_name': 'cc_test_utils', | 245 'target_name': 'cc_test_utils', |
246 'type': 'static_library', | 246 'type': 'static_library', |
247 'include_dirs': [ | 247 'include_dirs': [ |
248 '..' | 248 '..' |
249 ], | 249 ], |
250 'sources': [ | 250 'sources': [ |
| 251 'test/pixel_comparator.cc', |
| 252 'test/pixel_comparator.h', |
251 'test/pixel_test_utils.cc', | 253 'test/pixel_test_utils.cc', |
252 'test/pixel_test_utils.h', | 254 'test/pixel_test_utils.h', |
253 ], | 255 ], |
254 'dependencies': [ | 256 'dependencies': [ |
255 '../skia/skia.gyp:skia', | 257 '../skia/skia.gyp:skia', |
256 '../ui/ui.gyp:ui', # for png_codec | 258 '../ui/ui.gyp:ui', # for png_codec |
257 ], | 259 ], |
258 }, | 260 }, |
259 ], | 261 ], |
260 'conditions': [ | 262 'conditions': [ |
(...skipping 22 matching lines...) Expand all Loading... |
283 'variables': { | 285 'variables': { |
284 'test_suite_name': 'cc_perftests', | 286 'test_suite_name': 'cc_perftests', |
285 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', | 287 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', |
286 }, | 288 }, |
287 'includes': [ '../build/apk_test.gypi' ], | 289 'includes': [ '../build/apk_test.gypi' ], |
288 }, | 290 }, |
289 ], | 291 ], |
290 }] | 292 }] |
291 ], | 293 ], |
292 } | 294 } |
OLD | NEW |