| Index: third_party/instrumented_libraries/BUILD.gn
|
| diff --git a/third_party/instrumented_libraries/BUILD.gn b/third_party/instrumented_libraries/BUILD.gn
|
| index 9d7636a8eec3b6c5167776eec5050e32407db877..5f5db357dc167d95a1ec189ac4f1edaa156d0b6a 100644
|
| --- a/third_party/instrumented_libraries/BUILD.gn
|
| +++ b/third_party/instrumented_libraries/BUILD.gn
|
| @@ -152,7 +152,10 @@ if (use_locally_built_instrumented_libraries) {
|
| ":zlib1g",
|
| ]
|
| if (is_msan) {
|
| - deps += [ ":libcups2" ]
|
| + deps += [
|
| + ":libcups2",
|
| + ":libgnutls26",
|
| + ]
|
| }
|
| if (!is_tsan) {
|
| deps += [ ":libpng12-0" ]
|
| @@ -545,6 +548,18 @@ if (use_locally_built_instrumented_libraries) {
|
| package_ldflags = [ "-Wl,--as-needed" ]
|
| }
|
|
|
| + instrumented_library("libgnutls26") {
|
| + extra_configure_flags = [
|
| + # from debian/rules.
|
| + "--enable-ld-version-script",
|
| + "--enable-cxx",
|
| + "--without-lzo",
|
| + "--disable-guile",
|
| + "--with-libgcrypt",
|
| + "--with-packager=Debian",
|
| + ]
|
| + }
|
| +
|
| instrumented_library("libgpg-error0") {
|
| extra_configure_flags = [ "--disable-static" ]
|
| }
|
|
|