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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/WebKit/Source/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("webaudio") { 7 blink_modules_sources("webaudio") {
8 sources = [ 8 sources = [
9 "AnalyserNode.cpp", 9 "AnalyserNode.cpp",
10 "AnalyserNode.h", 10 "AnalyserNode.h",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "WaveShaperDSPKernel.h", 118 "WaveShaperDSPKernel.h",
119 "WaveShaperNode.cpp", 119 "WaveShaperNode.cpp",
120 "WaveShaperNode.h", 120 "WaveShaperNode.h",
121 "WaveShaperProcessor.cpp", 121 "WaveShaperProcessor.cpp",
122 "WaveShaperProcessor.h", 122 "WaveShaperProcessor.h",
123 "WindowAudioWorklet.cpp", 123 "WindowAudioWorklet.cpp",
124 "WindowAudioWorklet.h", 124 "WindowAudioWorklet.h",
125 ] 125 ]
126 126
127 if (is_win) { 127 if (is_win) {
128 jumbo_excluded_sources = [
129 # Uses Supplement<LocalDOMWindow> with MODULES_EXPORT while
130 # other files use Supplement<LocalDOMWindow> with
131 # CORE_EXPORT. Mixing those in the same compilation unit
132 # triggers link errors in Windows. https://crbug.com/739340
133 "WindowAudioWorklet.cpp",
134 ]
135
128 # Result of 32-bit shift implicitly converted to 64 bits. 136 # Result of 32-bit shift implicitly converted to 64 bits.
129 cflags = [ "/wd4334" ] 137 cflags = [ "/wd4334" ]
130 } 138 }
131 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698