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

Side by Side Diff: third_party/WebKit/Source/modules/modules_idl_files.gni

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 6
7 # The paths in this file are absolute since this file is imported and the 7 # The paths in this file are absolute since this file is imported and the
8 # file lists must be valid from multple "current directories". 8 # file lists must be valid from multple "current directories".
9 9
10 bindings_modules_output_dir = "$bindings_output_dir/modules" 10 bindings_modules_output_dir = "$bindings_output_dir/modules"
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 "webaudio/AudioBuffer.idl", 257 "webaudio/AudioBuffer.idl",
258 "webaudio/AudioBufferCallback.idl", 258 "webaudio/AudioBufferCallback.idl",
259 "webaudio/AudioBufferSourceNode.idl", 259 "webaudio/AudioBufferSourceNode.idl",
260 "webaudio/AudioContext.idl", 260 "webaudio/AudioContext.idl",
261 "webaudio/AudioDestinationNode.idl", 261 "webaudio/AudioDestinationNode.idl",
262 "webaudio/AudioListener.idl", 262 "webaudio/AudioListener.idl",
263 "webaudio/AudioNode.idl", 263 "webaudio/AudioNode.idl",
264 "webaudio/AudioParam.idl", 264 "webaudio/AudioParam.idl",
265 "webaudio/AudioProcessingEvent.idl", 265 "webaudio/AudioProcessingEvent.idl",
266 "webaudio/AudioSourceNode.idl", 266 "webaudio/AudioSourceNode.idl",
267 "webaudio/BaseAudioContext.idl",
267 "webaudio/BiquadFilterNode.idl", 268 "webaudio/BiquadFilterNode.idl",
268 "webaudio/ChannelMergerNode.idl", 269 "webaudio/ChannelMergerNode.idl",
269 "webaudio/ChannelSplitterNode.idl", 270 "webaudio/ChannelSplitterNode.idl",
270 "webaudio/ConvolverNode.idl", 271 "webaudio/ConvolverNode.idl",
271 "webaudio/DelayNode.idl", 272 "webaudio/DelayNode.idl",
272 "webaudio/DynamicsCompressorNode.idl", 273 "webaudio/DynamicsCompressorNode.idl",
273 "webaudio/GainNode.idl", 274 "webaudio/GainNode.idl",
274 "webaudio/IIRFilterNode.idl", 275 "webaudio/IIRFilterNode.idl",
275 "webaudio/MediaElementAudioSourceNode.idl", 276 "webaudio/MediaElementAudioSourceNode.idl",
276 "webaudio/MediaStreamAudioDestinationNode.idl", 277 "webaudio/MediaStreamAudioDestinationNode.idl",
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 modules_dependency_idl_files + modules_testing_dependency_idl_files 583 modules_dependency_idl_files + modules_testing_dependency_idl_files
583 584
584 modules_generated_dependency_idl_files = 585 modules_generated_dependency_idl_files =
585 modules_core_global_constructors_generated_idl_files + 586 modules_core_global_constructors_generated_idl_files +
586 modules_global_constructors_generated_idl_files 587 modules_global_constructors_generated_idl_files
587 588
588 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid 589 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid
589 # collision 590 # collision
590 modules_all_dependency_idl_files = 591 modules_all_dependency_idl_files =
591 modules_static_dependency_idl_files + modules_generated_dependency_idl_files 592 modules_static_dependency_idl_files + modules_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698