Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: third_party/instrumented_libraries/download_build_install.py

Issue 390093002: Instrumented libraries: use package-specific sanitizer blacklists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo accidental whitespace change Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/instrumented_libraries/download_build_install.py
diff --git a/third_party/instrumented_libraries/download_build_install.py b/third_party/instrumented_libraries/download_build_install.py
index 4ea25d75c2f055ef01b2298cfd84a2f6f71f9496..3a2062de2be9fdc195c1e3f024d14b4b015f9f66 100755
--- a/third_party/instrumented_libraries/download_build_install.py
+++ b/third_party/instrumented_libraries/download_build_install.py
@@ -229,7 +229,7 @@ def build_environment(parsed_arguments, product_directory, install_prefix):
cflags = unescape_flags(parsed_arguments.cflags)
if parsed_arguments.sanitizer_blacklist:
cflags += ' -fsanitize-blacklist=%s/%s' % (
- product_directory,
+ get_script_absolute_path(),
parsed_arguments.sanitizer_blacklist)
environment['CFLAGS'] = cflags
environment['CXXFLAGS'] = cflags

Powered by Google App Engine
This is Rietveld 408576698