Index: chrome/chrome_syzygy.gyp |
diff --git a/chrome/chrome_syzygy.gyp b/chrome/chrome_syzygy.gyp |
index 0801d18e62b43d9c9101ae5abbaa4698b74bffd6..80fe87dbfe6f2f85338325812607c6d03523086e 100644 |
--- a/chrome/chrome_syzygy.gyp |
+++ b/chrome/chrome_syzygy.gyp |
@@ -63,5 +63,33 @@ |
}], |
], |
}], |
+ ['OS=="win" and asan==1', { |
+ 'variables': { |
+ 'dest_dir': '<(PRODUCT_DIR)/syzygy', |
+ 'syzygy_exe_dir': '<(DEPTH)/third_party/syzygy/binaries/exe', |
+ }, |
+ # Copy the SyzyASan runtime and logger to the syzygy directory. |
+ 'targets': [ |
+ { |
+ 'target_name': 'copy_syzyasan_binaries', |
+ 'type': 'none', |
+ 'outputs': [ |
+ '<(dest_dir)/agent_logger.exe', |
+ '<(dest_dir)/asan_rtl.dll', |
Nico
2013/09/11 03:17:55
Is this identical to the real asan runtime? If not
Sébastien Marchand
2013/09/11 04:25:39
It's not identical to the "real" asan runtime, and
Nico
2013/09/11 04:26:35
I think that's the reply I got when I asked for th
Sébastien Marchand
2013/09/11 04:34:43
Oops, I wasn't aware that someone asked to do the
|
+ '<(dest_dir)/asan_rtl.dll.pdb', |
+ ], |
+ 'copies': [ |
+ { |
+ 'destination': '<(dest_dir)', |
+ 'files': [ |
+ '<(syzygy_exe_dir)/agent_logger.exe', |
+ '<(syzygy_exe_dir)/asan_rtl.dll', |
+ '<(syzygy_exe_dir)/asan_rtl.dll.pdb', |
+ ], |
+ }, |
+ ], |
+ }, |
+ ], |
+ }], |
], |
} |