diff options
author | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-27 20:15:45 +0000 |
---|---|---|
committer | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-27 20:15:45 +0000 |
commit | fec701e8122a8548a3ab61a94155a2d6ac9ee219 (patch) | |
tree | fe134977b1747ac73fe3118986de7632c5f01d43 /third_party/instrumented_libraries/instrumented_libraries.gyp | |
parent | f823f6114b49a06e526e83316c427b6e73515c24 (diff) | |
download | chromium_src-fec701e8122a8548a3ab61a94155a2d6ac9ee219.zip chromium_src-fec701e8122a8548a3ab61a94155a2d6ac9ee219.tar.gz chromium_src-fec701e8122a8548a3ab61a94155a2d6ac9ee219.tar.bz2 |
Instrumented libraries: use statically linked modules for pango.
This allows us to finally ditch the PREFIX build method.
BUG=313751
TBR=glider@chromium.org
NOTRY=true
TEST=MSan Chrome
Review URL: https://codereview.chromium.org/353193002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@280390 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/instrumented_libraries/instrumented_libraries.gyp')
-rw-r--r-- | third_party/instrumented_libraries/instrumented_libraries.gyp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/third_party/instrumented_libraries/instrumented_libraries.gyp b/third_party/instrumented_libraries/instrumented_libraries.gyp index 7ab04c1..5c8309f 100644 --- a/third_party/instrumented_libraries/instrumented_libraries.gyp +++ b/third_party/instrumented_libraries/instrumented_libraries.gyp @@ -440,8 +440,12 @@ 'extra_configure_flags': [ # Avoid https://bugs.gentoo.org/show_bug.cgi?id=425620 '--enable-introspection=no', + # Pango is normally used with dynamically loaded modules. However, + # ensuring pango is able to find instrumented versions of those modules + # is a huge pain in the neck. Let's link them statically instead, and + # hope for the best. + '--with-included-modules=yes' ], - 'build_method': 'custom_pango', 'includes': ['standard_instrumented_package_target.gypi'], }, { |