| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 'cc_test_support', | 336 'cc_test_support', |
| 337 ], | 337 ], |
| 338 'sources': [ | 338 'sources': [ |
| 339 # Note: sources list duplicated in GN build. | 339 # Note: sources list duplicated in GN build. |
| 340 'layers/layer_perftest.cc', | 340 'layers/layer_perftest.cc', |
| 341 'layers/picture_layer_impl_perftest.cc', | 341 'layers/picture_layer_impl_perftest.cc', |
| 342 'resources/picture_layer_tiling_perftest.cc', | 342 'resources/picture_layer_tiling_perftest.cc', |
| 343 'resources/picture_pile_impl_perftest.cc', | 343 'resources/picture_pile_impl_perftest.cc', |
| 344 'resources/tile_task_worker_pool_perftest.cc', | 344 'resources/tile_task_worker_pool_perftest.cc', |
| 345 'resources/task_graph_runner_perftest.cc', | 345 'resources/task_graph_runner_perftest.cc', |
| 346 'resources/texture_compress/texture_compress_perftest.cc', |
| 346 'resources/tile_manager_perftest.cc', | 347 'resources/tile_manager_perftest.cc', |
| 347 'test/cc_test_suite.cc', | 348 'test/cc_test_suite.cc', |
| 348 'test/run_all_perftests.cc', | 349 'test/run_all_perftests.cc', |
| 349 'trees/layer_tree_host_common_perftest.cc', | 350 'trees/layer_tree_host_common_perftest.cc', |
| 350 'trees/layer_tree_host_perftest.cc', | 351 'trees/layer_tree_host_perftest.cc', |
| 351 'trees/occlusion_tracker_perftest.cc', | 352 'trees/occlusion_tracker_perftest.cc', |
| 352 ], | 353 ], |
| 353 'include_dirs': [ | 354 'include_dirs': [ |
| 354 'test', | 355 'test', |
| 355 '.', | 356 '.', |
| 356 ], | 357 ], |
| 357 'conditions': [ | 358 'conditions': [ |
| 358 ['OS == "android"', | 359 ['OS == "android"', |
| 359 { | 360 { |
| 360 'dependencies': [ | 361 'dependencies': [ |
| 361 '../testing/android/native_test.gyp:native_test_native_code', | 362 '../testing/android/native_test.gyp:native_test_native_code', |
| 362 ], | 363 ], |
| 363 } | 364 } |
| 364 ], | 365 ], |
| 365 # See http://crbug.com/162998#c4 for why this is needed. | 366 # See http://crbug.com/162998#c4 for why this is needed. |
| 366 ['OS=="linux" and use_allocator!="none"', | 367 ['OS=="linux" and use_allocator!="none"', |
| 367 { | 368 { |
| 368 'dependencies': [ | 369 'dependencies': [ |
| 369 '../base/allocator/allocator.gyp:allocator', | 370 '../base/allocator/allocator.gyp:allocator', |
| 370 ], | 371 ], |
| 371 } | 372 } |
| 372 ], | 373 ], |
| 374 ['OS == "android"', { |
| 375 'includes': [ |
| 376 '../build/android/cpufeatures.gypi', |
| 377 ] |
| 378 }], |
| 373 ], | 379 ], |
| 374 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 375 'msvs_disabled_warnings': [ 4267, ], | 381 'msvs_disabled_warnings': [ 4267, ], |
| 376 }, | 382 }, |
| 377 { | 383 { |
| 378 'target_name': 'cc_test_support', | 384 'target_name': 'cc_test_support', |
| 379 'type': 'static_library', | 385 'type': 'static_library', |
| 380 'include_dirs': [ | 386 'include_dirs': [ |
| 381 'test', | 387 'test', |
| 382 '.', | 388 '.', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 'variables': { | 438 'variables': { |
| 433 'test_suite_name': 'cc_perftests', | 439 'test_suite_name': 'cc_perftests', |
| 434 }, | 440 }, |
| 435 'includes': [ '../build/apk_test.gypi' ], | 441 'includes': [ '../build/apk_test.gypi' ], |
| 436 }, | 442 }, |
| 437 ], | 443 ], |
| 438 } | 444 } |
| 439 ] | 445 ] |
| 440 ], | 446 ], |
| 441 } | 447 } |
| OLD | NEW |