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

Unified Diff: scripts/slave/recipes/libyuv/libyuv.py

Issue 1401313002: libyuv: Remove lsan for Mac since it's not supported. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 2 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: scripts/slave/recipes/libyuv/libyuv.py
diff --git a/scripts/slave/recipes/libyuv/libyuv.py b/scripts/slave/recipes/libyuv/libyuv.py
index 06c2b372a66d4dce8f578626139d2cae1c89e280..e0403b7b068c37446abee579faa8774c3c566559 100644
--- a/scripts/slave/recipes/libyuv/libyuv.py
+++ b/scripts/slave/recipes/libyuv/libyuv.py
@@ -29,10 +29,6 @@ RECIPE_CONFIGS = freeze({
'chromium_config': 'libyuv_clang',
'gclient_config': 'libyuv',
},
- 'libyuv_asan': {
- 'chromium_config': 'libyuv_asan',
- 'gclient_config': 'libyuv',
- },
'libyuv_android': {
'chromium_config': 'libyuv_android',
'gclient_config': 'libyuv_android',
@@ -191,7 +187,8 @@ BUILDERS = freeze({
'testing': {'platform': 'mac'},
},
'Mac Asan': {
- 'recipe_config': 'libyuv_asan',
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['asan'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
@@ -289,7 +286,8 @@ BUILDERS = freeze({
'testing': {'platform': 'linux'},
},
'Linux Asan': {
- 'recipe_config': 'libyuv_asan',
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['asan', 'lsan'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
@@ -430,7 +428,8 @@ BUILDERS = freeze({
'testing': {'platform': 'mac'},
},
'mac_asan': {
- 'recipe_config': 'libyuv_asan',
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['asan'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
@@ -512,7 +511,8 @@ BUILDERS = freeze({
'testing': {'platform': 'linux'},
},
'linux_asan': {
- 'recipe_config': 'libyuv_asan',
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['asan', 'lsan'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,

Powered by Google App Engine
This is Rietveld 408576698