| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 'base_extra_target': 0, | 9 'base_extra_target': 0, |
| 10 }, | 10 }, |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 { | 656 { |
| 657 'target_name': 'base_fpic', | 657 'target_name': 'base_fpic', |
| 658 'type': '<(library)', | 658 'type': '<(library)', |
| 659 'variables': { | 659 'variables': { |
| 660 'base_target': 1, | 660 'base_target': 1, |
| 661 'base_extra_target': 1, | 661 'base_extra_target': 1, |
| 662 }, | 662 }, |
| 663 'cflags': [ | 663 'cflags': [ |
| 664 '-fPIC', | 664 '-fPIC', |
| 665 ], | 665 ], |
| 666 # Official builds set -gstabs, which fails when building with -fPIC. | |
| 667 # It's useless on 64 bits anyways because breakpad doesn't work then. | |
| 668 'cflags!': [ | |
| 669 '-gstabs', | |
| 670 ], | |
| 671 'direct_dependent_settings': { | 666 'direct_dependent_settings': { |
| 672 'include_dirs': [ | 667 'include_dirs': [ |
| 673 '..', | 668 '..', |
| 674 ], | 669 ], |
| 675 }, | 670 }, |
| 676 'conditions': [ | 671 'conditions': [ |
| 677 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 672 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
| 678 'dependencies': [ | 673 'dependencies': [ |
| 679 '../build/util/build_util.gyp:lastchange', | 674 '../build/util/build_util.gyp:lastchange', |
| 680 '../build/linux/system.gyp:gtk', | 675 '../build/linux/system.gyp:gtk', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 'third_party/xdg_mime/xdgmimemagic.c', | 754 'third_party/xdg_mime/xdgmimemagic.c', |
| 760 'third_party/xdg_mime/xdgmimemagic.h', | 755 'third_party/xdg_mime/xdgmimemagic.h', |
| 761 'third_party/xdg_mime/xdgmimeparent.c', | 756 'third_party/xdg_mime/xdgmimeparent.c', |
| 762 'third_party/xdg_mime/xdgmimeparent.h', | 757 'third_party/xdg_mime/xdgmimeparent.h', |
| 763 ], | 758 ], |
| 764 }, | 759 }, |
| 765 ], | 760 ], |
| 766 }], | 761 }], |
| 767 ], | 762 ], |
| 768 } | 763 } |
| OLD | NEW |