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

Side by Side Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 2727733002: Implement AudioWorkletProcessor interface (Closed)
Patch Set: Added AudioWorkletGlobalScopeTest.cpp Created 3 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 "peerconnection/RTCDataChannelTest.cpp", 285 "peerconnection/RTCDataChannelTest.cpp",
286 "presentation/PresentationAvailabilityTest.cpp", 286 "presentation/PresentationAvailabilityTest.cpp",
287 "presentation/PresentationReceiverTest.cpp", 287 "presentation/PresentationReceiverTest.cpp",
288 "presentation/PresentationRequestTest.cpp", 288 "presentation/PresentationRequestTest.cpp",
289 "push_messaging/PushManagerTest.cpp", 289 "push_messaging/PushManagerTest.cpp",
290 "push_messaging/PushMessageDataTest.cpp", 290 "push_messaging/PushMessageDataTest.cpp",
291 "remoteplayback/RemotePlaybackTest.cpp", 291 "remoteplayback/RemotePlaybackTest.cpp",
292 "serviceworkers/ServiceWorkerContainerTest.cpp", 292 "serviceworkers/ServiceWorkerContainerTest.cpp",
293 "webaudio/AudioBasicProcessorHandlerTest.cpp", 293 "webaudio/AudioBasicProcessorHandlerTest.cpp",
294 "webaudio/AudioContextTest.cpp", 294 "webaudio/AudioContextTest.cpp",
295 "webaudio/AudioWorkletGlobalScopeTest.cpp",
hongchan 2017/03/15 22:30:18 I changed the test name because AudioWorkletGlobal
295 "webaudio/AudioWorkletThreadTest.cpp", 296 "webaudio/AudioWorkletThreadTest.cpp",
296 "webaudio/BaseAudioContextTest.cpp", 297 "webaudio/BaseAudioContextTest.cpp",
297 "webaudio/ConvolverNodeTest.cpp", 298 "webaudio/ConvolverNodeTest.cpp",
298 "webaudio/DynamicsCompressorNodeTest.cpp", 299 "webaudio/DynamicsCompressorNodeTest.cpp",
299 "webaudio/ScriptProcessorNodeTest.cpp", 300 "webaudio/ScriptProcessorNodeTest.cpp",
300 "webaudio/StereoPannerNodeTest.cpp", 301 "webaudio/StereoPannerNodeTest.cpp",
301 "webdatabase/QuotaTrackerTest.cpp", 302 "webdatabase/QuotaTrackerTest.cpp",
302 "websockets/DOMWebSocketTest.cpp", 303 "websockets/DOMWebSocketTest.cpp",
303 "websockets/DocumentWebSocketChannelTest.cpp", 304 "websockets/DocumentWebSocketChannelTest.cpp",
304 ] 305 ]
305 306
306 configs += [ 307 configs += [
307 "//third_party/WebKit/Source:config", 308 "//third_party/WebKit/Source:config",
308 "//third_party/WebKit/Source:inside_blink", 309 "//third_party/WebKit/Source:inside_blink",
309 "//third_party/WebKit/Source/core:blink_core_pch", 310 "//third_party/WebKit/Source/core:blink_core_pch",
310 ] 311 ]
311 312
312 deps = [ 313 deps = [
313 ":modules", 314 ":modules",
314 ":modules_testing", 315 ":modules_testing",
315 "//components/payments/content:payment_request_blink", 316 "//components/payments/content:payment_request_blink",
316 "//skia", 317 "//skia",
317 "//testing/gmock", 318 "//testing/gmock",
318 "//testing/gtest", 319 "//testing/gtest",
319 "//third_party/WebKit/Source/core", 320 "//third_party/WebKit/Source/core",
320 "//third_party/WebKit/Source/wtf", 321 "//third_party/WebKit/Source/wtf",
321 "//v8", 322 "//v8",
322 ] 323 ]
323 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698