| 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 '$(ProjectDir)\\test\\views_unittest.manifest', | 815 '$(ProjectDir)\\test\\views_unittest.manifest', |
| 816 ], | 816 ], |
| 817 }, | 817 }, |
| 818 }, | 818 }, |
| 819 }], | 819 }], |
| 820 ['OS=="win" and win_use_allocator_shim==1', { | 820 ['OS=="win" and win_use_allocator_shim==1', { |
| 821 'dependencies': [ | 821 'dependencies': [ |
| 822 '../../base/allocator/allocator.gyp:allocator', | 822 '../../base/allocator/allocator.gyp:allocator', |
| 823 ], | 823 ], |
| 824 }], | 824 }], |
| 825 ['OS=="linux" and linux_use_tcmalloc==1', { | 825 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 826 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { |
| 826 # See http://crbug.com/162998#c4 for why this is needed. | 827 # See http://crbug.com/162998#c4 for why this is needed. |
| 827 'dependencies': [ | 828 'dependencies': [ |
| 828 '../../base/allocator/allocator.gyp:allocator', | 829 '../../base/allocator/allocator.gyp:allocator', |
| 829 ], | 830 ], |
| 830 }], | 831 }], |
| 831 [ 'use_aura==1', { | 832 [ 'use_aura==1', { |
| 832 'dependencies': [ | 833 'dependencies': [ |
| 833 '../aura/aura.gyp:aura_test_support', | 834 '../aura/aura.gyp:aura_test_support', |
| 834 ], | 835 ], |
| 835 }, { # use_aura==0 | 836 }, { # use_aura==0 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 'sources/': [ | 1067 'sources/': [ |
| 1067 # This is needed because the aura rule strips it from the default | 1068 # This is needed because the aura rule strips it from the default |
| 1068 # sources list. | 1069 # sources list. |
| 1069 ['include', '^../../content/app/startup_helper_win.cc'], | 1070 ['include', '^../../content/app/startup_helper_win.cc'], |
| 1070 ], | 1071 ], |
| 1071 }], | 1072 }], |
| 1072 ], | 1073 ], |
| 1073 }, # target_name: views_examples_with_content_exe | 1074 }, # target_name: views_examples_with_content_exe |
| 1074 ], | 1075 ], |
| 1075 } | 1076 } |
| OLD | NEW |