| 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 'variables': { | 6 'variables': { |
| 7 'verbose_libraries_build%': 0, | 7 'verbose_libraries_build%': 0, |
| 8 'instrumented_libraries_jobs%': 1, | 8 'instrumented_libraries_jobs%': 1, |
| 9 }, | 9 }, |
| 10 | 10 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 '<(_sanitizer_type)-dee', | 140 '<(_sanitizer_type)-dee', |
| 141 '<(_sanitizer_type)-libpixman-1-0', | 141 '<(_sanitizer_type)-libpixman-1-0', |
| 142 ], | 142 ], |
| 143 'conditions': [ | 143 'conditions': [ |
| 144 ['"<(_ubuntu_release)"=="precise"', { | 144 ['"<(_ubuntu_release)"=="precise"', { |
| 145 'dependencies': [ | 145 'dependencies': [ |
| 146 '<(_sanitizer_type)-libtasn1-3', | 146 '<(_sanitizer_type)-libtasn1-3', |
| 147 ], | 147 ], |
| 148 }, { | 148 }, { |
| 149 'dependencies': [ | 149 'dependencies': [ |
| 150 # Trusty and above. |
| 150 '<(_sanitizer_type)-libtasn1-6', | 151 '<(_sanitizer_type)-libtasn1-6', |
| 151 '<(_sanitizer_type)-harfbuzz', | 152 '<(_sanitizer_type)-harfbuzz', |
| 153 '<(_sanitizer_type)-libsecret', |
| 152 ], | 154 ], |
| 153 }], | 155 }], |
| 154 ['msan==1', { | 156 ['msan==1', { |
| 155 'dependencies': [ | 157 'dependencies': [ |
| 156 '<(_sanitizer_type)-libcups2', | 158 '<(_sanitizer_type)-libcups2', |
| 157 ], | 159 ], |
| 158 }], | 160 }], |
| 159 ['tsan==1', { | 161 ['tsan==1', { |
| 160 'dependencies!': [ | 162 'dependencies!': [ |
| 161 '<(_sanitizer_type)-libpng12-0', | 163 '<(_sanitizer_type)-libpng12-0', |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 { | 773 { |
| 772 'package_name': 'libva1', | 774 'package_name': 'libva1', |
| 773 'dependencies=': [], | 775 'dependencies=': [], |
| 774 'extra_configure_flags': ['--disable-static'], | 776 'extra_configure_flags': ['--disable-static'], |
| 775 # Backport a use-after-free fix: | 777 # Backport a use-after-free fix: |
| 776 # http://cgit.freedesktop.org/libva/diff/va/va.c?h=staging&id=d4988142a3f2
256e38c5c5cdcdfc1b4f5f3c1ea9 | 778 # http://cgit.freedesktop.org/libva/diff/va/va.c?h=staging&id=d4988142a3f2
256e38c5c5cdcdfc1b4f5f3c1ea9 |
| 777 'patch': 'patches/libva1.diff', | 779 'patch': 'patches/libva1.diff', |
| 778 'run_before_build': 'scripts/libva1.sh', | 780 'run_before_build': 'scripts/libva1.sh', |
| 779 'includes': ['standard_instrumented_package_target.gypi'], | 781 'includes': ['standard_instrumented_package_target.gypi'], |
| 780 }, | 782 }, |
| 783 { |
| 784 'package_name': 'libsecret', |
| 785 'dependencies=': [], |
| 786 'extra_configure_flags': [ |
| 787 '--disable-static', |
| 788 # See above. |
| 789 '--disable-introspection', |
| 790 ], |
| 791 'run_before_build': 'scripts/autoreconf.sh', |
| 792 'includes': ['standard_instrumented_package_target.gypi'], |
| 793 }, |
| 781 ], | 794 ], |
| 782 } | 795 } |
| OLD | NEW |