diff options
author | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-10 17:51:06 +0000 |
---|---|---|
committer | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-10 17:51:06 +0000 |
commit | 246ac92067a53ea3680ee2c90db042a45774be22 (patch) | |
tree | 25c90ad24a942b2b86049b4b5b43f9ecd6b27ff2 /chrome/chrome_exe.gypi | |
parent | f3a2eba38c48bf42c1ebc6d8f7aee97ec302dbca (diff) | |
download | chromium_src-246ac92067a53ea3680ee2c90db042a45774be22.zip chromium_src-246ac92067a53ea3680ee2c90db042a45774be22.tar.gz chromium_src-246ac92067a53ea3680ee2c90db042a45774be22.tar.bz2 |
Send the user's Windows profile type up in crash reports.
I suspect that some of the version shear crashes happen to users with non-local profiles. In this case, it's easy to imagine that the version info in the registry is out of sync with that on the filesystem.
Copied from http://codereview.chromium.org/10740003/. Try jobs on the first pass missed a compile break in chrome_nacl_win64.
BUG=78585
TEST=none
TBR=siggi@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10698129
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_exe.gypi')
-rw-r--r-- | chrome/chrome_exe.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 3da48fb..e3e4f1d 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -464,6 +464,9 @@ ], 'msvs_settings': { 'VCLinkerTool': { + 'AdditionalDependencies': [ + 'userenv.lib', + ], 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', 'DelayLoadDLLs': [ @@ -562,6 +565,9 @@ ], 'msvs_settings': { 'VCLinkerTool': { + 'AdditionalDependencies': [ + 'userenv.lib', + ], 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |