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

Unified Diff: chrome/chrome.gyp

Issue 901673002: Instantiate a Kasko reporter inside the Chrome watcher process, when SyzyASAN instrumented. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ship_kasko
Patch Set: Fix a character literal type. Created 5 years, 10 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 | « chrome/app/client_util.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index 110180d4cfe66c0de4a2687b45e6d68227e4212e..b284d4d912f3a684d4b8fb24c4212aa4dac838f4 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -783,5 +783,41 @@
},
],
}],
+ ['syzyasan==1', {
+ 'variables': {
+ 'kasko_exe_dir': '<(DEPTH)/third_party/kasko',
+ },
+ 'targets': [
+ {
+ 'target_name': 'kasko_dll',
+ 'type': 'none',
+ 'outputs': [
+ '<(PRODUCT_DIR)/kasko.dll',
+ '<(PRODUCT_DIR)/kasko.dll.pdb',
+ ],
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ '<(kasko_exe_dir)/kasko.dll',
+ '<(kasko_exe_dir)/kasko.dll.pdb',
+ ],
+ },
+ ],
+ 'direct_dependent_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalDependencies': [
+ 'kasko.dll.lib',
+ ],
+ 'AdditionalLibraryDirectories': [
+ '<(DEPTH)/third_party/kasko'
+ ],
+ },
+ },
+ },
+ },
+ ],
+ }],
], # 'conditions'
}
« no previous file with comments | « chrome/app/client_util.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698