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

Unified Diff: chrome/chrome.isolate

Issue 1852393002: Fix stack symbolization in Telemetry on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
Index: chrome/chrome.isolate
diff --git a/chrome/chrome.isolate b/chrome/chrome.isolate
index 796e53dd5c9769707a13108bb36e98a5d1488d4b..7bfbc62dff7fb1092fe88119602bc40505581904 100644
--- a/chrome/chrome.isolate
+++ b/chrome/chrome.isolate
@@ -121,6 +121,23 @@
],
},
}],
+ ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
+ 'variables': {
+ 'files': [
+ '<(PRODUCT_DIR)/chrome.exe.pdb',
+ ],
+ },
+ }],
+ ['OS=="win" and component=="shared_library" and (fastbuild==0 or fastbuild==1)', {
+ 'variables': {
+ 'files': [
+ '<(PRODUCT_DIR)/base.dll.pdb',
+ '<(PRODUCT_DIR)/blink_platform.dll.pdb',
+ '<(PRODUCT_DIR)/blink_web.dll.pdb',
+ '<(PRODUCT_DIR)/content.dll.pdb',
+ ],
+ },
+ }],
],
'includes': [
'../base/base.isolate',

Powered by Google App Engine
This is Rietveld 408576698