Index: content/shell/BUILD.gn |
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn |
index 8804c4a00904c6025cdefdf2c3477c1488f8a1ad..01ad049b84c9dc15efd2af5b55378fd504d50698 100644 |
--- a/content/shell/BUILD.gn |
+++ b/content/shell/BUILD.gn |
@@ -17,6 +17,8 @@ if (is_android) { |
import("//build/config/mac/rules.gni") |
import("//build_overrides/v8.gni") |
import("//build/mac/tweak_info_plist.gni") |
+} else if (is_win) { |
+ import("//build/win/syzygy/syzygy.gni") |
} |
declare_args() { |
@@ -532,6 +534,17 @@ if (is_win) { |
configs -= [ "//build/config/win:console" ] |
configs += [ "//build/config/win:windowed" ] |
} |
+ |
+ if (is_syzyasan) { |
+ syzygy_asan("content_shell_syzyasan") { |
+ binary_name = "content_shell.exe" |
+ dest_dir = "$root_out_dir/syzygy" |
+ deps = [ |
+ "//content/shell:content_shell", |
+ ] |
+ testonly = true |
+ } |
+ } |
} |
if (is_mac) { |