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

Unified Diff: build/android/pylib/utils/isolator.py

Issue 895923002: Support MSan/TSan in test isolation and test_env.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix duplicate var Created 5 years, 11 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: build/android/pylib/utils/isolator.py
diff --git a/build/android/pylib/utils/isolator.py b/build/android/pylib/utils/isolator.py
index afbee2a8305c069629b5561dc41029d3de73cfd3..5555db079b3b46bedc3e6d98742b6eb0e9f477ce 100644
--- a/build/android/pylib/utils/isolator.py
+++ b/build/android/pylib/utils/isolator.py
@@ -28,11 +28,15 @@ def DefaultConfigVariables():
'CONFIGURATION_NAME': constants.GetBuildType(),
'OS': 'android',
'asan': '0',
+ 'lsan': '0',
M-A Ruel 2015/02/03 18:54:13 still prefer to keep the list sorted.
earthdok 2015/02/03 19:07:44 Done.
+ 'msan': '0',
+ 'tsan': '0',
+ 'use_custom_libcxx': '0',
+ 'use_instrumented_libraries': '0',
'chromeos': '0',
'component': 'static_library',
'fastbuild': '0',
'icu_use_data_file_flag': '1',
- 'lsan': '0',
# TODO(maruel): This may not always be true.
'target_arch': 'arm',
'use_openssl': '0',

Powered by Google App Engine
This is Rietveld 408576698