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

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

Issue 2372303002: [worklets] Add AudioWorkletGlobalScope and AudioWorkletThread (Closed)
Patch Set: Add a unit test for AudioWorkletThread Created 4 years, 2 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"
11 blink_modules_output_dir = "$root_gen_dir/blink/modules" 11 blink_modules_output_dir = "$root_gen_dir/blink/modules"
12 12
13 modules_core_global_constructors_original_interfaces = [ 13 modules_core_global_constructors_original_interfaces = [
14 "CompositorWorkerGlobalScope", 14 "CompositorWorkerGlobalScope",
15 "AudioWorkletGlobalScope",
nhiroki 2016/09/30 11:28:57 Can you sort this in alphabetical order?
hongchan 2016/10/11 23:42:38 Done.
15 "PaintWorkletGlobalScope", 16 "PaintWorkletGlobalScope",
16 "ServiceWorkerGlobalScope", 17 "ServiceWorkerGlobalScope",
17 ] 18 ]
18 19
19 modules_global_constructors_original_interfaces = [ 20 modules_global_constructors_original_interfaces = [
20 "Window", 21 "Window",
21 "CompositorWorkerGlobalScope", 22 "CompositorWorkerGlobalScope",
22 "DedicatedWorkerGlobalScope", 23 "DedicatedWorkerGlobalScope",
24 "AudioWorkletGlobalScope",
nhiroki 2016/09/30 11:28:57 ditto.
hongchan 2016/10/11 23:42:38 Done.
23 "PaintWorkletGlobalScope", 25 "PaintWorkletGlobalScope",
24 "ServiceWorkerGlobalScope", 26 "ServiceWorkerGlobalScope",
25 "SharedWorkerGlobalScope", 27 "SharedWorkerGlobalScope",
26 ] 28 ]
27 29
28 # The interfaces aren't technically files, but we can treat them as file names 30 # The interfaces aren't technically files, but we can treat them as file names
29 # to get process_file_template to generate lists of IDL files corresponding 31 # to get process_file_template to generate lists of IDL files corresponding
30 # to each interface. 32 # to each interface.
31 modules_core_global_constructors_generated_idl_files = process_file_template( 33 modules_core_global_constructors_generated_idl_files = process_file_template(
32 modules_core_global_constructors_original_interfaces, 34 modules_core_global_constructors_original_interfaces,
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 "webaudio/AudioBuffer.idl", 262 "webaudio/AudioBuffer.idl",
261 "webaudio/AudioBufferCallback.idl", 263 "webaudio/AudioBufferCallback.idl",
262 "webaudio/AudioBufferSourceNode.idl", 264 "webaudio/AudioBufferSourceNode.idl",
263 "webaudio/AudioContext.idl", 265 "webaudio/AudioContext.idl",
264 "webaudio/AudioDestinationNode.idl", 266 "webaudio/AudioDestinationNode.idl",
265 "webaudio/AudioListener.idl", 267 "webaudio/AudioListener.idl",
266 "webaudio/AudioNode.idl", 268 "webaudio/AudioNode.idl",
267 "webaudio/AudioParam.idl", 269 "webaudio/AudioParam.idl",
268 "webaudio/AudioProcessingEvent.idl", 270 "webaudio/AudioProcessingEvent.idl",
269 "webaudio/AudioSourceNode.idl", 271 "webaudio/AudioSourceNode.idl",
272 "webaudio/AudioWorkletGlobalScope.idl",
270 "webaudio/BaseAudioContext.idl", 273 "webaudio/BaseAudioContext.idl",
271 "webaudio/BiquadFilterNode.idl", 274 "webaudio/BiquadFilterNode.idl",
272 "webaudio/ChannelMergerNode.idl", 275 "webaudio/ChannelMergerNode.idl",
273 "webaudio/ChannelSplitterNode.idl", 276 "webaudio/ChannelSplitterNode.idl",
274 "webaudio/ConvolverNode.idl", 277 "webaudio/ConvolverNode.idl",
275 "webaudio/DelayNode.idl", 278 "webaudio/DelayNode.idl",
276 "webaudio/DynamicsCompressorNode.idl", 279 "webaudio/DynamicsCompressorNode.idl",
277 "webaudio/GainNode.idl", 280 "webaudio/GainNode.idl",
278 "webaudio/IIRFilterNode.idl", 281 "webaudio/IIRFilterNode.idl",
279 "webaudio/MediaElementAudioSourceNode.idl", 282 "webaudio/MediaElementAudioSourceNode.idl",
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 "$blink_modules_output_dir/websockets/CloseEventInit.h", 864 "$blink_modules_output_dir/websockets/CloseEventInit.h",
862 "$blink_modules_output_dir/webusb/USBConnectionEventInit.cpp", 865 "$blink_modules_output_dir/webusb/USBConnectionEventInit.cpp",
863 "$blink_modules_output_dir/webusb/USBConnectionEventInit.h", 866 "$blink_modules_output_dir/webusb/USBConnectionEventInit.h",
864 "$blink_modules_output_dir/webusb/USBControlTransferParameters.cpp", 867 "$blink_modules_output_dir/webusb/USBControlTransferParameters.cpp",
865 "$blink_modules_output_dir/webusb/USBControlTransferParameters.h", 868 "$blink_modules_output_dir/webusb/USBControlTransferParameters.h",
866 "$blink_modules_output_dir/webusb/USBDeviceFilter.cpp", 869 "$blink_modules_output_dir/webusb/USBDeviceFilter.cpp",
867 "$blink_modules_output_dir/webusb/USBDeviceFilter.h", 870 "$blink_modules_output_dir/webusb/USBDeviceFilter.h",
868 "$blink_modules_output_dir/webusb/USBDeviceRequestOptions.cpp", 871 "$blink_modules_output_dir/webusb/USBDeviceRequestOptions.cpp",
869 "$blink_modules_output_dir/webusb/USBDeviceRequestOptions.h", 872 "$blink_modules_output_dir/webusb/USBDeviceRequestOptions.h",
870 ] 873 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698