diff options
author | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 16:35:54 +0000 |
---|---|---|
committer | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 16:35:54 +0000 |
commit | 8a39f21f31608b7471b1f8cc8ac0dd9e845cd701 (patch) | |
tree | da9cc4a1263c1be808b2ca163a03b45742380a07 /third_party | |
parent | 8c37ff742c024ef586101f546402703d90b5563c (diff) | |
download | chromium_src-8a39f21f31608b7471b1f8cc8ac0dd9e845cd701.zip chromium_src-8a39f21f31608b7471b1f8cc8ac0dd9e845cd701.tar.gz chromium_src-8a39f21f31608b7471b1f8cc8ac0dd9e845cd701.tar.bz2 |
Add libudev0 to instrumented libraries.
BUG=313751
TBR=glider@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/163783003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/instrumented_libraries/instrumented_libraries.gyp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/instrumented_libraries/instrumented_libraries.gyp b/third_party/instrumented_libraries/instrumented_libraries.gyp index 9f6f80f..d5f266d 100644 --- a/third_party/instrumented_libraries/instrumented_libraries.gyp +++ b/third_party/instrumented_libraries/instrumented_libraries.gyp @@ -69,6 +69,7 @@ '<(_sanitizer_type)-libcups2', '<(_sanitizer_type)-pango1.0', '<(_sanitizer_type)-libcap2', + '<(_sanitizer_type)-libudev0', ], 'conditions': [ ['asan==1', { @@ -335,5 +336,16 @@ 'dependencies=': [], 'includes': ['standard_instrumented_library_target.gypi'], }, + { + 'library_name': 'libudev0', + 'dependencies=': [], + 'custom_configure_flags': [ + # Without this flag there's a linking step that doesn't honor LDFLAGS + # and fails. + # TODO(earthdok): find a better fix. + '--disable-gudev' + ], + 'includes': ['standard_instrumented_library_target.gypi'], + }, ], } |