Index: build/config/sanitizers/BUILD.gn |
diff --git a/build/config/sanitizers/BUILD.gn b/build/config/sanitizers/BUILD.gn |
index 6012b48e3a86557e728e109843fb80a3e3d0893f..63728d946c49c3584101bd5baf2a999385e6809c 100644 |
--- a/build/config/sanitizers/BUILD.gn |
+++ b/build/config/sanitizers/BUILD.gn |
@@ -8,17 +8,24 @@ |
group("deps") { |
if (is_asan) { |
public_configs = [ ":sanitizer_options_link_helper" ] |
- deps = [ ":options_sources" ] |
+ deps = [ |
+ ":options_sources", |
+ ] |
} |
} |
config("sanitizer_options_link_helper") { |
- ldflags = [ "-Wl,-u_sanitizer_options_link_helper", "-fsanitize=address" ] |
+ ldflags = [ |
+ "-Wl,-u_sanitizer_options_link_helper", |
+ "-fsanitize=address", |
+ ] |
} |
source_set("options_sources") { |
visibility = [ ":deps" ] |
- sources = [ "//build/sanitizers/sanitizer_options.cc" ] |
+ sources = [ |
+ "//build/sanitizers/sanitizer_options.cc", |
+ ] |
if (is_tsan) { |
sources += [ "//build/sanitizers/tsan_suppressions.cc" ] |