| 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': 1, | 7 'chromium_code': 1, |
| 8 'cc_unit_tests_source_files': [ | 8 'cc_unit_tests_source_files': [ |
| 9 'animation/animation_unittest.cc', | 9 'animation/animation_unittest.cc', |
| 10 'animation/keyframed_animation_curve_unittest.cc', | 10 'animation/keyframed_animation_curve_unittest.cc', |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 } | 290 } |
| 291 ], | 291 ], |
| 292 ], | 292 ], |
| 293 } | 293 } |
| 294 ], | 294 ], |
| 295 ], | 295 ], |
| 296 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 296 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 297 'msvs_disabled_warnings': [ 4267, ], | 297 'msvs_disabled_warnings': [ 4267, ], |
| 298 }, | 298 }, |
| 299 { | 299 { |
| 300 # GN version: //cc/cc_perftests |
| 300 'target_name': 'cc_perftests', | 301 'target_name': 'cc_perftests', |
| 301 'type': '<(gtest_target_type)', | 302 'type': '<(gtest_target_type)', |
| 302 'dependencies': [ | 303 'dependencies': [ |
| 303 '../base/base.gyp:test_support_base', | 304 '../base/base.gyp:test_support_base', |
| 304 '../gpu/gpu.gyp:gpu', | 305 '../gpu/gpu.gyp:gpu', |
| 305 '../gpu/gpu.gyp:gpu_unittest_utils', | 306 '../gpu/gpu.gyp:gpu_unittest_utils', |
| 306 '../media/media.gyp:media', | 307 '../media/media.gyp:media', |
| 307 '../skia/skia.gyp:skia', | 308 '../skia/skia.gyp:skia', |
| 308 '../testing/gmock.gyp:gmock', | 309 '../testing/gmock.gyp:gmock', |
| 309 '../testing/gtest.gyp:gtest', | 310 '../testing/gtest.gyp:gtest', |
| 310 '../testing/perf/perf_test.gyp:*', | 311 '../testing/perf/perf_test.gyp:*', |
| 311 '../ui/gfx/gfx.gyp:gfx', | 312 '../ui/gfx/gfx.gyp:gfx', |
| 312 '../ui/gfx/gfx.gyp:gfx_geometry', | 313 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 313 'cc.gyp:cc', | 314 'cc.gyp:cc', |
| 314 'cc_test_support', | 315 'cc_test_support', |
| 315 ], | 316 ], |
| 316 'sources': [ | 317 'sources': [ |
| 318 # Note: sources list duplicated in GN build. |
| 317 'layers/layer_perftest.cc', | 319 'layers/layer_perftest.cc', |
| 318 'layers/picture_layer_impl_perftest.cc', | 320 'layers/picture_layer_impl_perftest.cc', |
| 319 'resources/picture_layer_tiling_perftest.cc', | 321 'resources/picture_layer_tiling_perftest.cc', |
| 320 'resources/picture_pile_impl_perftest.cc', | 322 'resources/picture_pile_impl_perftest.cc', |
| 321 'resources/raster_worker_pool_perftest.cc', | 323 'resources/raster_worker_pool_perftest.cc', |
| 322 'resources/task_graph_runner_perftest.cc', | 324 'resources/task_graph_runner_perftest.cc', |
| 323 'resources/tile_manager_perftest.cc', | 325 'resources/tile_manager_perftest.cc', |
| 324 'test/cc_test_suite.cc', | 326 'test/cc_test_suite.cc', |
| 325 'test/run_all_perftests.cc', | 327 'test/run_all_perftests.cc', |
| 326 'trees/layer_tree_host_common_perftest.cc', | 328 'trees/layer_tree_host_common_perftest.cc', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 'variables': { | 409 'variables': { |
| 408 'test_suite_name': 'cc_perftests', | 410 'test_suite_name': 'cc_perftests', |
| 409 }, | 411 }, |
| 410 'includes': [ '../build/apk_test.gypi' ], | 412 'includes': [ '../build/apk_test.gypi' ], |
| 411 }, | 413 }, |
| 412 ], | 414 ], |
| 413 } | 415 } |
| 414 ] | 416 ] |
| 415 ], | 417 ], |
| 416 } | 418 } |
| OLD | NEW |