summaryrefslogtreecommitdiff
path: root/third_party/googletest/README.libvpx
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2022-09-08 15:35:13 -0700
committerWan-Teh Chang <wtc@google.com>2022-09-09 14:38:15 -0700
commit33c43c14ee04e6bb74ce037d44b98c5ad4ea9474 (patch)
tree5c598b307d63ade805fecf6445d0b3625140db11 /third_party/googletest/README.libvpx
parenta46ca4b6bd8e5f360da74693bb43b400d29d91e8 (diff)
downloadlibvpx-33c43c14ee04e6bb74ce037d44b98c5ad4ea9474.tar
libvpx-33c43c14ee04e6bb74ce037d44b98c5ad4ea9474.tar.gz
libvpx-33c43c14ee04e6bb74ce037d44b98c5ad4ea9474.tar.bz2
libvpx-33c43c14ee04e6bb74ce037d44b98c5ad4ea9474.zip
Update third_party/googletest to v1.12.1
See https://github.com/google/googletest/releases/tag/release-1.12.1. Modeled after https://aomedia-review.googlesource.com/c/aom/+/162601. Change-Id: If0ced3097b4c8490985e3381aaac9b3266d52ae7
Diffstat (limited to 'third_party/googletest/README.libvpx')
-rw-r--r--third_party/googletest/README.libvpx10
1 files changed, 9 insertions, 1 deletions
diff --git a/third_party/googletest/README.libvpx b/third_party/googletest/README.libvpx
index b9a74922f..5f6b01b0e 100644
--- a/third_party/googletest/README.libvpx
+++ b/third_party/googletest/README.libvpx
@@ -1,5 +1,5 @@
URL: https://github.com/google/googletest.git
-Version: release-1.11.0
+Version: release-1.12.1
License: BSD
License File: LICENSE
@@ -13,9 +13,17 @@ generation.
Local Modifications:
- Remove everything but:
+ .clang-format
CONTRIBUTORS
googletest/
include
README.md
src
LICENSE
+- Move .clang-format, CONTRIBUTORS, and LICENSE into googletest/
+- In googletest/include/gtest/internal/custom/gtest-port.h, define
+ GTEST_HAS_NOTIFICATION_ as 1 and use a stub Notification class to fix
+ the mingw32 g++ compilation errors caused by the lack of std::mutex
+ and std::condition_variable in the <mutex> and <condition_variable>
+ headers if mingw32 is configured with the win32 threads option. See
+ https://stackoverflow.com/questions/17242516/mingw-w64-threads-posix-vs-win32