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

Unified Diff: third_party/instrumented_libraries/standard_instrumented_package_target.gypi

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
« 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/standard_instrumented_package_target.gypi
diff --git a/third_party/instrumented_libraries/standard_instrumented_package_target.gypi b/third_party/instrumented_libraries/standard_instrumented_package_target.gypi
index 195adabc9b166021b5c3246f44071e098848702e..2d01aa87d0430d603488160591e02977e0711395 100644
--- a/third_party/instrumented_libraries/standard_instrumented_package_target.gypi
+++ b/third_party/instrumented_libraries/standard_instrumented_package_target.gypi
@@ -27,13 +27,10 @@
'--extra-configure-flags=>(_extra_configure_flags)',
'--cflags=>(_package_cflags)',
'--ldflags=>(_package_ldflags)',
- '--patch=>(_patch)',
- '--run-before-build=>(_run_before_build)',
'--cc=<(_cc)',
'--cxx=<(_cxx)',
'--jobs=>(_jobs)',
'--build-method=>(_build_method)',
- '--sanitizer-blacklist=>(_sanitizer_blacklist)',
],
'conditions': [
['verbose_libraries_build==1', {
@@ -44,15 +41,29 @@
],
'target_conditions': [
['">(_patch)"!=""', {
+ 'action+': [
+ '--patch=>(_patch)',
+ ],
'inputs+': [
'>(_patch)',
],
}],
['">(_run_before_build)"!=""', {
+ 'action+': [
+ '--run-before-build=>(_run_before_build)',
+ ],
'inputs+': [
'>(_run_before_build)',
],
}],
+ ['">(_<(_sanitizer_type)_blacklist)"!=""', {
+ 'action+': [
+ '--sanitizer-blacklist=>(_<(_sanitizer_type)_blacklist)',
+ ],
+ 'inputs+': [
+ '>(_<(_sanitizer_type)_blacklist)',
+ ],
+ }],
],
},
],
« 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