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

Unified Diff: third_party/instrumented_libraries/scripts/download_binaries.py

Issue 1028383003: Instrumented libraries: add pre-built libs for msan-no-origins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « third_party/instrumented_libraries/instrumented_libraries.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/instrumented_libraries/scripts/download_binaries.py
diff --git a/third_party/instrumented_libraries/scripts/download_binaries.py b/third_party/instrumented_libraries/scripts/download_binaries.py
index 62ef9fc1094939c51d50fafd168de24f40248103..83ec7b6aa86ab9592c8661a88d03e046bef13f6a 100755
--- a/third_party/instrumented_libraries/scripts/download_binaries.py
+++ b/third_party/instrumented_libraries/scripts/download_binaries.py
@@ -20,6 +20,8 @@ def get_ubuntu_release():
def get_configuration(gyp_defines):
if re.search(r'\b(msan)=1', gyp_defines):
+ if 'msan_track_origins=0' in gyp_defines:
+ return 'msan-no-origins'
if 'msan_track_origins=2' in gyp_defines:
return 'msan-chained-origins'
if 'msan_track_origins=' not in gyp_defines:
« no previous file with comments | « third_party/instrumented_libraries/instrumented_libraries.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698