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

Unified Diff: content/shell/BUILD.gn

Issue 2140793002: Add the content_shell_syzyasan GN target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698