aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/BUILD.gn
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2017-12-04 11:15:58 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-04 17:08:09 +0000
commitbee6cacc54357e0af1de67d527fe51eb3602c2d6 (patch)
treec7116187f78aaf8c99a3764947d4c77421f75522 /gn/BUILD.gn
parente7d8da4b20babbe17abc8f95dd2dea56ee8f9af5 (diff)
Merge UBSAN_float_cast_overflow into ASAN.
The new check was a different config while we fixed the errors. Most errors are now fixed, and merging these will help with running both on the CQ. No-Try: true Change-Id: I5804ecea84a8dbbaacf6a4ea96e2af9505641d49 Reviewed-on: https://skia-review.googlesource.com/79323 Commit-Queue: Ben Wagner <benjaminwagner@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'gn/BUILD.gn')
-rw-r--r--gn/BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 9d6952af4a..70db37d52b 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -236,7 +236,7 @@ config("default") {
# or pass one of the couple common aliases used by the bots.
sanitizers = sanitize
if (sanitize == "ASAN") {
- sanitizers = "address,bool,integer-divide-by-zero,nonnull-attribute,null,return,returns-nonnull-attribute,shift,signed-integer-overflow,unreachable,vla-bound,vptr"
+ sanitizers = "address,bool,float-cast-overflow,integer-divide-by-zero,nonnull-attribute,null,return,returns-nonnull-attribute,shift,signed-integer-overflow,unreachable,vla-bound,vptr"
if (!is_mac) {
sanitizers += ",function" # Not supported on Mac.
}