Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: third_party/WebKit/Source/modules/webaudio/BUILD.gn

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webaudio/BUILD.gn
diff --git a/third_party/WebKit/Source/modules/webaudio/BUILD.gn b/third_party/WebKit/Source/modules/webaudio/BUILD.gn
index e9ecd2ac7d8f180b50e3996854c2e07f76c3e66b..153daaf7d8b5836d59502ab28ccd527fb9a1bad4 100644
--- a/third_party/WebKit/Source/modules/webaudio/BUILD.gn
+++ b/third_party/WebKit/Source/modules/webaudio/BUILD.gn
@@ -125,6 +125,14 @@ blink_modules_sources("webaudio") {
]
if (is_win) {
+ jumbo_excluded_sources = [
+ # Uses Supplement<LocalDOMWindow> with MODULES_EXPORT while
+ # other files use Supplement<LocalDOMWindow> with
+ # CORE_EXPORT. Mixing those in the same compilation unit
+ # triggers link errors in Windows. https://crbug.com/739340
+ "WindowAudioWorklet.cpp",
+ ]
+
# Result of 32-bit shift implicitly converted to 64 bits.
cflags = [ "/wd4334" ]
}

Powered by Google App Engine
This is Rietveld 408576698