Pier Angelo Vendrame pushed to branch mullvad-browser-140.0a1-15.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
-
623f30c0
by Pier Angelo Vendrame at 2025-06-11T08:50:46+02:00
5 changed files:
- media/libaom/moz.build
- third_party/abseil-cpp/absl/base/base_gn/moz.build
- third_party/abseil-cpp/absl/base/internal/thread_identity.cc
- third_party/abseil-cpp/absl/base/internal/thread_identity.h
- third_party/libwebrtc/modules/desktop_capture/win/wgc_capture_session.cc
Changes:
... | ... | @@ -143,6 +143,3 @@ LOCAL_INCLUDES += [ |
143 | 143 | # TEST_DIRS += [
|
144 | 144 | # 'test/fuzztest'
|
145 | 145 | # ] |
146 | - |
|
147 | -if CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CC_TYPE"] == "clang":
|
|
148 | - OS_LIBS += ["pthread"] |
... | ... | @@ -168,7 +168,4 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": |
168 | 168 | |
169 | 169 | DEFINES["_GNU_SOURCE"] = True
|
170 | 170 | |
171 | -if CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CC_TYPE"] == "clang":
|
|
172 | - OS_LIBS += ["pthread"]
|
|
173 | - |
|
174 | 171 | Library("base_gn") |
... | ... | @@ -14,7 +14,7 @@ |
14 | 14 | |
15 | 15 | #include "absl/base/internal/thread_identity.h"
|
16 | 16 | |
17 | -#if !defined(_WIN32) || defined(__MINGW32__)
|
|
17 | +#if !defined(_WIN32)
|
|
18 | 18 | #include <pthread.h>
|
19 | 19 | #ifndef __wasi__
|
20 | 20 | // WASI does not provide this header, either way we disable use
|
... | ... | @@ -217,7 +217,7 @@ void ClearCurrentThreadIdentity(); |
217 | 217 | #error ABSL_THREAD_IDENTITY_MODE cannot be directly set
|
218 | 218 | #elif defined(ABSL_FORCE_THREAD_IDENTITY_MODE)
|
219 | 219 | #define ABSL_THREAD_IDENTITY_MODE ABSL_FORCE_THREAD_IDENTITY_MODE
|
220 | -#elif defined(_WIN32) && !defined(__MINGW32__)
|
|
220 | +#elif defined(_WIN32)
|
|
221 | 221 | #define ABSL_THREAD_IDENTITY_MODE ABSL_THREAD_IDENTITY_MODE_USE_CPP11
|
222 | 222 | #elif defined(__APPLE__) && defined(ABSL_HAVE_THREAD_LOCAL)
|
223 | 223 | #define ABSL_THREAD_IDENTITY_MODE ABSL_THREAD_IDENTITY_MODE_USE_CPP11
|
... | ... | @@ -370,7 +370,7 @@ HRESULT WgcCaptureSession::ProcessFrame() { |
370 | 370 | return hr;
|
371 | 371 | }
|
372 | 372 | |
373 | - ComPtr<ABI::Windows::Graphics::DirectX::Direct3D11::IDirect3DDxgiInterfaceAccess>
|
|
373 | + ComPtr<Windows::Graphics::DirectX::Direct3D11::IDirect3DDxgiInterfaceAccess>
|
|
374 | 374 | direct3DDxgiInterfaceAccess;
|
375 | 375 | hr = d3d_surface->QueryInterface(IID_PPV_ARGS(&direct3DDxgiInterfaceAccess));
|
376 | 376 | if (FAILED(hr)) {
|