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

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

Issue 2501863003: Support for AudioContextOptions latencyHint. (Closed)
Patch Set: Check all LatencyHints WebAudioDeviceImpl test. Created 4 years 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 "payments/PaymentTestHelper.h", 269 "payments/PaymentTestHelper.h",
270 "payments/PaymentsValidatorsTest.cpp", 270 "payments/PaymentsValidatorsTest.cpp",
271 "peerconnection/RTCDataChannelTest.cpp", 271 "peerconnection/RTCDataChannelTest.cpp",
272 "presentation/PresentationAvailabilityTest.cpp", 272 "presentation/PresentationAvailabilityTest.cpp",
273 "presentation/PresentationReceiverTest.cpp", 273 "presentation/PresentationReceiverTest.cpp",
274 "push_messaging/PushManagerTest.cpp", 274 "push_messaging/PushManagerTest.cpp",
275 "push_messaging/PushMessageDataTest.cpp", 275 "push_messaging/PushMessageDataTest.cpp",
276 "remoteplayback/RemotePlaybackTest.cpp", 276 "remoteplayback/RemotePlaybackTest.cpp",
277 "serviceworkers/ServiceWorkerContainerTest.cpp", 277 "serviceworkers/ServiceWorkerContainerTest.cpp",
278 "webaudio/AudioBasicProcessorHandlerTest.cpp", 278 "webaudio/AudioBasicProcessorHandlerTest.cpp",
279 "webaudio/AudioContextTest.cpp",
279 "webaudio/AudioWorkletThreadTest.cpp", 280 "webaudio/AudioWorkletThreadTest.cpp",
280 "webaudio/BaseAudioContextTest.cpp", 281 "webaudio/BaseAudioContextTest.cpp",
281 "webaudio/ConvolverNodeTest.cpp", 282 "webaudio/ConvolverNodeTest.cpp",
282 "webaudio/DynamicsCompressorNodeTest.cpp", 283 "webaudio/DynamicsCompressorNodeTest.cpp",
283 "webaudio/ScriptProcessorNodeTest.cpp", 284 "webaudio/ScriptProcessorNodeTest.cpp",
284 "webaudio/StereoPannerNodeTest.cpp", 285 "webaudio/StereoPannerNodeTest.cpp",
285 "webdatabase/QuotaTrackerTest.cpp", 286 "webdatabase/QuotaTrackerTest.cpp",
286 "websockets/DOMWebSocketTest.cpp", 287 "websockets/DOMWebSocketTest.cpp",
287 "websockets/DocumentWebSocketChannelTest.cpp", 288 "websockets/DocumentWebSocketChannelTest.cpp",
288 ] 289 ]
289 290
290 configs += [ 291 configs += [
291 "//third_party/WebKit/Source:config", 292 "//third_party/WebKit/Source:config",
292 "//third_party/WebKit/Source:inside_blink", 293 "//third_party/WebKit/Source:inside_blink",
293 "//third_party/WebKit/Source/core:blink_core_pch", 294 "//third_party/WebKit/Source/core:blink_core_pch",
294 ] 295 ]
295 296
296 deps = [ 297 deps = [
297 ":modules", 298 ":modules",
298 ":modules_testing", 299 ":modules_testing",
299 "//components/payments:payment_request_blink", 300 "//components/payments:payment_request_blink",
300 "//skia", 301 "//skia",
301 "//testing/gmock", 302 "//testing/gmock",
302 "//testing/gtest", 303 "//testing/gtest",
303 "//third_party/WebKit/Source/core", 304 "//third_party/WebKit/Source/core",
304 "//third_party/WebKit/Source/wtf", 305 "//third_party/WebKit/Source/wtf",
305 "//v8", 306 "//v8",
306 ] 307 ]
307 } 308 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698