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/animation_unittest.cc', | 9 'animation/animation_unittest.cc', |
10 'layers/content_layer_unittest.cc', | 10 'layers/content_layer_unittest.cc', |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
250 'msvs_disabled_warnings': [ 4267, ], | 250 'msvs_disabled_warnings': [ 4267, ], |
251 }, | 251 }, |
252 { | 252 { |
253 'target_name': 'cc_test_utils', | 253 'target_name': 'cc_test_utils', |
254 'type': 'static_library', | 254 'type': 'static_library', |
255 'include_dirs': [ | 255 'include_dirs': [ |
256 '..' | 256 '..' |
257 ], | 257 ], |
258 'sources': [ | 258 'sources': [ |
| 259 'test/pixel_comparator.cc', |
| 260 'test/pixel_comparator.h', |
259 'test/pixel_test_utils.cc', | 261 'test/pixel_test_utils.cc', |
260 'test/pixel_test_utils.h', | 262 'test/pixel_test_utils.h', |
261 ], | 263 ], |
262 'dependencies': [ | 264 'dependencies': [ |
263 '../skia/skia.gyp:skia', | 265 '../skia/skia.gyp:skia', |
264 '../ui/ui.gyp:ui', # for png_codec | 266 '../ui/ui.gyp:ui', # for png_codec |
265 ], | 267 ], |
266 }, | 268 }, |
267 ], | 269 ], |
268 'conditions': [ | 270 'conditions': [ |
(...skipping 22 matching lines...) Expand all Loading... |
291 'variables': { | 293 'variables': { |
292 'test_suite_name': 'cc_perftests', | 294 'test_suite_name': 'cc_perftests', |
293 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', | 295 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', |
294 }, | 296 }, |
295 'includes': [ '../build/apk_test.gypi' ], | 297 'includes': [ '../build/apk_test.gypi' ], |
296 }, | 298 }, |
297 ], | 299 ], |
298 }] | 300 }] |
299 ], | 301 ], |
300 } | 302 } |
OLD | NEW |