| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'target_defaults': { | 8 'target_defaults': { |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['use_aura==1', { | 10 ['use_aura==1', { |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 '$(ProjectDir)\\test\\views_unittest.manifest', | 692 '$(ProjectDir)\\test\\views_unittest.manifest', |
| 693 ], | 693 ], |
| 694 }, | 694 }, |
| 695 }, | 695 }, |
| 696 }], | 696 }], |
| 697 ['OS=="win" and win_use_allocator_shim==1', { | 697 ['OS=="win" and win_use_allocator_shim==1', { |
| 698 'dependencies': [ | 698 'dependencies': [ |
| 699 '../../base/allocator/allocator.gyp:allocator', | 699 '../../base/allocator/allocator.gyp:allocator', |
| 700 ], | 700 ], |
| 701 }], | 701 }], |
| 702 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 702 ['OS=="linux" and use_allocator!="none"', { |
| 703 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | |
| 704 # See http://crbug.com/162998#c4 for why this is needed. | 703 # See http://crbug.com/162998#c4 for why this is needed. |
| 705 'dependencies': [ | 704 'dependencies': [ |
| 706 '../../base/allocator/allocator.gyp:allocator', | 705 '../../base/allocator/allocator.gyp:allocator', |
| 707 ], | 706 ], |
| 708 }], | 707 }], |
| 709 ['use_ozone==1', { | 708 ['use_ozone==1', { |
| 710 'sources!': [ | 709 'sources!': [ |
| 711 'corewm/capture_controller_unittest.cc', | 710 'corewm/capture_controller_unittest.cc', |
| 712 ], | 711 ], |
| 713 }], | 712 }], |
| 714 ['use_aura==1', { | 713 ['use_aura==1', { |
| 715 'dependencies': [ | 714 'dependencies': [ |
| 716 '../aura/aura.gyp:aura_test_support', | 715 '../aura/aura.gyp:aura_test_support', |
| 717 ], | 716 ], |
| 718 }], | 717 }], |
| 719 ], | 718 ], |
| 720 }, # target_name: views_unittests | 719 }, # target_name: views_unittests |
| 721 ], | 720 ], |
| 722 } | 721 } |
| OLD | NEW |