Chromium Code Reviews| Index: tools/win_dbghelp.cpp |
| =================================================================== |
| --- tools/win_dbghelp.cpp (revision 8057) |
| +++ tools/win_dbghelp.cpp (working copy) |
| @@ -5,8 +5,6 @@ |
| * found in the LICENSE file. |
| */ |
| -#ifdef SK_BUILD_FOR_WIN32 |
|
borenet
2013/03/08 23:13:21
Not needed with gyp guard.
|
| - |
| #include "windows.h" |
| #include "win_dbghelp.h" |
| #include <process.h> |
| @@ -206,7 +204,7 @@ |
| void setUpDebuggingFromArgs(const char* vargs0) { |
| int i = strlen(vargs0); |
| - if (i >= 4 && stricmp(vargs0 - 4, ".exe") == 0) { |
| + if (i >= 4 && _stricmp(vargs0 - 4, ".exe") == 0) { |
| // Ignore .exe |
| i -= 4; |
| } |
| @@ -244,4 +242,3 @@ |
| setCdbPath(cdbExePath); |
| } |
| -#endif // SK_BUILD_FOR_WIN32 |