| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 ], | 690 ], |
| 691 'conditions': [ | 691 'conditions': [ |
| 692 ['OS == "linux" or OS == "freebsd"', { | 692 ['OS == "linux" or OS == "freebsd"', { |
| 693 'sources!': [ | 693 'sources!': [ |
| 694 'file_version_info_unittest.cc', | 694 'file_version_info_unittest.cc', |
| 695 'worker_pool_linux_unittest.cc', | 695 'worker_pool_linux_unittest.cc', |
| 696 ], | 696 ], |
| 697 'conditions': [ | 697 'conditions': [ |
| 698 [ 'linux_use_tcmalloc==1', { | 698 [ 'linux_use_tcmalloc==1', { |
| 699 'dependencies': [ | 699 'dependencies': [ |
| 700 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', | 700 'allocator/allocator.gyp:allocator', |
| 701 ], | 701 ], |
| 702 }, | 702 }, |
| 703 ], | 703 ], |
| 704 ], | 704 ], |
| 705 'dependencies': [ | 705 'dependencies': [ |
| 706 '../build/linux/system.gyp:gtk', | 706 '../build/linux/system.gyp:gtk', |
| 707 '../build/linux/system.gyp:nss', | 707 '../build/linux/system.gyp:nss', |
| 708 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 708 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 709 ], | 709 ], |
| 710 }, { # OS != "linux" and OS != "freebsd" | 710 }, { # OS != "linux" and OS != "freebsd" |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 ], | 860 ], |
| 861 }], | 861 }], |
| 862 ], | 862 ], |
| 863 } | 863 } |
| 864 | 864 |
| 865 # Local Variables: | 865 # Local Variables: |
| 866 # tab-width:2 | 866 # tab-width:2 |
| 867 # indent-tabs-mode:nil | 867 # indent-tabs-mode:nil |
| 868 # End: | 868 # End: |
| 869 # vim: set expandtab tabstop=2 shiftwidth=2: | 869 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |