| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 '../ui/gfx/gfx.gyp:gfx', | 359 '../ui/gfx/gfx.gyp:gfx', |
| 360 '../ui/gfx/gfx.gyp:gfx_geometry', | 360 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 361 'cc.gyp:cc', | 361 'cc.gyp:cc', |
| 362 'cc.gyp:cc_surfaces', | 362 'cc.gyp:cc_surfaces', |
| 363 'cc_test_support', | 363 'cc_test_support', |
| 364 ], | 364 ], |
| 365 'sources': [ | 365 'sources': [ |
| 366 'test/run_all_unittests.cc', | 366 'test/run_all_unittests.cc', |
| 367 'test/cc_test_suite.cc', | 367 'test/cc_test_suite.cc', |
| 368 'surfaces/surface_unittest.cc', | 368 'surfaces/surface_unittest.cc', |
| 369 'surfaces/surface_aggregator_unittest.cc', |
| 370 'surfaces/surface_aggregator_test_helpers.cc', |
| 371 'surfaces/surface_aggregator_test_helpers.h', |
| 369 ], | 372 ], |
| 370 'include_dirs': [ | 373 'include_dirs': [ |
| 371 'test', | 374 'test', |
| 372 '.', | 375 '.', |
| 373 ], | 376 ], |
| 374 'conditions': [ | 377 'conditions': [ |
| 375 ['OS == "android" and gtest_target_type == "shared_library"', | 378 ['OS == "android" and gtest_target_type == "shared_library"', |
| 376 { | 379 { |
| 377 'dependencies': [ | 380 'dependencies': [ |
| 378 '../testing/android/native_test.gyp:native_test_native_code', | 381 '../testing/android/native_test.gyp:native_test_native_code', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 'test_suite_name': 'cc_perftests', | 428 'test_suite_name': 'cc_perftests', |
| 426 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', | 429 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', |
| 427 }, | 430 }, |
| 428 'includes': [ '../build/apk_test.gypi' ], | 431 'includes': [ '../build/apk_test.gypi' ], |
| 429 }, | 432 }, |
| 430 ], | 433 ], |
| 431 } | 434 } |
| 432 ] | 435 ] |
| 433 ], | 436 ], |
| 434 } | 437 } |
| OLD | NEW |