Files
allwpilib/shared/googletest.gradle
Austin Shalit bbb622aaa6 Revert "Use ASAN when on Clang (#1187)" (#1234)
This reverts commit 340b26bada.

Closes #1232

We are reverting this because it broke Mac builds. The root cause of
this is a requirement that the entire application must be built with ASAN
to link properly. For more information about why this is see the below link.

https://github.com/google/sanitizers/wiki/AddressSanitizerContainerOverflow#false-positives
2018-07-28 09:50:25 -07:00

14 lines
376 B
Groovy

model {
dependencyConfigs {
googletest(DependencyConfig) {
groupId = 'edu.wpi.first.thirdparty.frc2018'
artifactId = 'googletest'
headerClassifier = 'headers'
ext = 'zip'
version = '1.8.0-1-4e4df22'
sharedConfigs = [:]
staticConfigs = project.staticGtestConfigs
}
}
}