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

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

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update files to the right GN files. 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "serviceworkers/ForeignFetchOptions.idl", 452 "serviceworkers/ForeignFetchOptions.idl",
453 "serviceworkers/ForeignFetchResponse.idl", 453 "serviceworkers/ForeignFetchResponse.idl",
454 "serviceworkers/RegistrationOptions.idl", 454 "serviceworkers/RegistrationOptions.idl",
455 "serviceworkers/ServiceWorkerMessageEventInit.idl", 455 "serviceworkers/ServiceWorkerMessageEventInit.idl",
456 "speech/SpeechRecognitionErrorInit.idl", 456 "speech/SpeechRecognitionErrorInit.idl",
457 "speech/SpeechRecognitionEventInit.idl", 457 "speech/SpeechRecognitionEventInit.idl",
458 "storage/StorageEventInit.idl", 458 "storage/StorageEventInit.idl",
459 "vr/VRDisplayEventInit.idl", 459 "vr/VRDisplayEventInit.idl",
460 "vr/VRFieldOfViewInit.idl", 460 "vr/VRFieldOfViewInit.idl",
461 "vr/VRLayer.idl", 461 "vr/VRLayer.idl",
462 "webaudio/AnalyserOptions.idl",
463 "webaudio/AudioBufferOptions.idl",
464 "webaudio/AudioBufferSourceOptions.idl",
465 "webaudio/AudioNodeOptions.idl",
466 "webaudio/BiquadFilterOptions.idl",
467 "webaudio/ChannelMergerOptions.idl",
468 "webaudio/ChannelSplitterOptions.idl",
469 "webaudio/ConvolverOptions.idl",
470 "webaudio/DelayOptions.idl",
471 "webaudio/DynamicsCompressorOptions.idl",
472 "webaudio/GainOptions.idl",
473 "webaudio/IIRFilterOptions.idl",
474 "webaudio/MediaElementAudioSourceOptions.idl",
475 "webaudio/PannerOptions.idl",
462 "webaudio/PeriodicWaveConstraints.idl", 476 "webaudio/PeriodicWaveConstraints.idl",
477 "webaudio/PeriodicWaveOptions.idl",
478 "webaudio/OscillatorOptions.idl",
479 "webaudio/StereoPannerOptions.idl",
480 "webaudio/WaveShaperOptions.idl",
463 "webgl/WebGLContextAttributes.idl", 481 "webgl/WebGLContextAttributes.idl",
464 "webgl/WebGLContextEventInit.idl", 482 "webgl/WebGLContextEventInit.idl",
465 "webmidi/MIDIConnectionEventInit.idl", 483 "webmidi/MIDIConnectionEventInit.idl",
466 "webmidi/MIDIMessageEventInit.idl", 484 "webmidi/MIDIMessageEventInit.idl",
467 "webmidi/MIDIOptions.idl", 485 "webmidi/MIDIOptions.idl",
468 "webshare/ShareData.idl", 486 "webshare/ShareData.idl",
469 "websockets/CloseEventInit.idl", 487 "websockets/CloseEventInit.idl",
470 "webusb/USBConnectionEventInit.idl", 488 "webusb/USBConnectionEventInit.idl",
471 "webusb/USBControlTransferParameters.idl", 489 "webusb/USBControlTransferParameters.idl",
472 "webusb/USBDeviceFilter.idl", 490 "webusb/USBDeviceFilter.idl",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 modules_dependency_idl_files + modules_testing_dependency_idl_files 600 modules_dependency_idl_files + modules_testing_dependency_idl_files
583 601
584 modules_generated_dependency_idl_files = 602 modules_generated_dependency_idl_files =
585 modules_core_global_constructors_generated_idl_files + 603 modules_core_global_constructors_generated_idl_files +
586 modules_global_constructors_generated_idl_files 604 modules_global_constructors_generated_idl_files
587 605
588 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid 606 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid
589 # collision 607 # collision
590 modules_all_dependency_idl_files = 608 modules_all_dependency_idl_files =
591 modules_static_dependency_idl_files + modules_generated_dependency_idl_files 609 modules_static_dependency_idl_files + modules_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698