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

Unified Diff: build/all.gyp

Issue 25492004: Adds Windows support to the chromium_builder_asan target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index 8b9f488d5d91953c63ce2e0a87a771fa367d501b..0e2a3e3464b4310a8f8956591b95dc72a23801bf 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -484,12 +484,30 @@
# We refer to content_shell directly rather than all_webkit
# because we don't want the _unittests binaries.
- '../content/content.gyp:content_browsertests',
'../content/content.gyp:content_shell',
-
- '../net/net.gyp:dns_fuzz_stub',
- ],
- },
+ ],
+ 'conditions': [
+ ['OS!="win"', {
+ 'dependencies': [
+ '../content/content.gyp:content_browsertests',
+ '../net/net.gyp:dns_fuzz_stub',
+ ],
+ }],
+ ['OS=="win" and fastbuild==0 and target_arch=="ia32"', {
+ 'dependencies': [
+ '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy',
+ '../content/content.gyp:content_shell_syzyasan',
+ ],
+ 'conditions': [
+ ['chrome_multiple_dll==1', {
+ 'dependencies': [
+ '../chrome/chrome_syzygy.gyp:chrome_child_dll_syzygy',
+ ],
+ }],
+ ],
+ }],
+ ],
+ },
], # targets
}],
['OS=="mac"', {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698