| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
| 7 # Test support files for the 'sync_core' target. | 7 # Test support files for the 'sync_core' target. |
| 8 { | 8 { |
| 9 'target_name': 'test_support_sync_core', | 9 'target_name': 'test_support_sync_core', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 '../base/base.gyp:run_all_unittests', | 497 '../base/base.gyp:run_all_unittests', |
| 498 'sync_api_tests', | 498 'sync_api_tests', |
| 499 'sync_core_tests', | 499 'sync_core_tests', |
| 500 'sync_internal_api_tests', | 500 'sync_internal_api_tests', |
| 501 'sync_notifier_tests', | 501 'sync_notifier_tests', |
| 502 ], | 502 ], |
| 503 'conditions': [ | 503 'conditions': [ |
| 504 # TODO(akalin): This is needed because histogram.cc uses | 504 # TODO(akalin): This is needed because histogram.cc uses |
| 505 # leak_annotations.h, which pulls this in. Make 'base' | 505 # leak_annotations.h, which pulls this in. Make 'base' |
| 506 # propagate this dependency. | 506 # propagate this dependency. |
| 507 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 507 ['OS=="linux" and use_allocator!="none"', { |
| 508 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | |
| 509 'dependencies': [ | 508 'dependencies': [ |
| 510 '../base/allocator/allocator.gyp:allocator', | 509 '../base/allocator/allocator.gyp:allocator', |
| 511 ], | 510 ], |
| 512 }], | 511 }], |
| 513 ['OS == "android" and gtest_target_type == "shared_library"', { | 512 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 514 'dependencies': [ | 513 'dependencies': [ |
| 515 '../testing/android/native_test.gyp:native_test_native_code', | 514 '../testing/android/native_test.gyp:native_test_native_code', |
| 516 ], | 515 ], |
| 517 }], | 516 }], |
| 518 ], | 517 ], |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 ], | 680 ], |
| 682 'variables': { | 681 'variables': { |
| 683 'test_suite_name': 'sync_unit_tests', | 682 'test_suite_name': 'sync_unit_tests', |
| 684 }, | 683 }, |
| 685 'includes': [ '../build/apk_test.gypi' ], | 684 'includes': [ '../build/apk_test.gypi' ], |
| 686 }, | 685 }, |
| 687 ], | 686 ], |
| 688 }], | 687 }], |
| 689 ], | 688 ], |
| 690 } | 689 } |
| OLD | NEW |