diff options
Diffstat (limited to 'gtest/gtest-utils.h')
-rw-r--r-- | gtest/gtest-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtest/gtest-utils.h b/gtest/gtest-utils.h index 2b821df..0953848 100644 --- a/gtest/gtest-utils.h +++ b/gtest/gtest-utils.h @@ -33,7 +33,11 @@ // Returns the absolute path of the test output directory as a string. // On Android this path is /sdcard; on all other platforms it is the current // directory. +#if defined(OS_WIN) +std::wstring GetTargetDirectory(); +#else std::string GetTargetDirectory(); +#endif // Files used as input for libjpeg-turbo unit tests are stored in // <chromium>/src/third_party/libjpeg_turbo/testimages. |