| OLD | NEW |
| 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 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 # The paths in this file are absolute since this file is imported and the | 8 # The paths in this file are absolute since this file is imported and the |
| 9 # file lists must be valid from multple "current directories". | 9 # file lists must be valid from multple "current directories". |
| 10 | 10 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "html/HTMLTableElement.idl", | 266 "html/HTMLTableElement.idl", |
| 267 "html/HTMLTableRowElement.idl", | 267 "html/HTMLTableRowElement.idl", |
| 268 "html/HTMLTableSectionElement.idl", | 268 "html/HTMLTableSectionElement.idl", |
| 269 "html/HTMLTemplateElement.idl", | 269 "html/HTMLTemplateElement.idl", |
| 270 "html/HTMLTextAreaElement.idl", | 270 "html/HTMLTextAreaElement.idl", |
| 271 "html/HTMLTitleElement.idl", | 271 "html/HTMLTitleElement.idl", |
| 272 "html/HTMLTrackElement.idl", | 272 "html/HTMLTrackElement.idl", |
| 273 "html/HTMLUListElement.idl", | 273 "html/HTMLUListElement.idl", |
| 274 "html/HTMLUnknownElement.idl", | 274 "html/HTMLUnknownElement.idl", |
| 275 "html/ImageData.idl", | 275 "html/ImageData.idl", |
| 276 "html/MediaError.idl", | |
| 277 "html/RadioNodeList.idl", | 276 "html/RadioNodeList.idl", |
| 278 "html/TextMetrics.idl", | 277 "html/TextMetrics.idl", |
| 279 "html/TimeRanges.idl", | 278 "html/TimeRanges.idl", |
| 280 "html/ValidityState.idl", | 279 "html/ValidityState.idl", |
| 281 "html/VoidCallback.idl", | 280 "html/VoidCallback.idl", |
| 281 "html/media/MediaError.idl", |
| 282 "html/track/AudioTrackList.idl", | 282 "html/track/AudioTrackList.idl", |
| 283 "html/track/TextTrack.idl", | 283 "html/track/TextTrack.idl", |
| 284 "html/track/TextTrackCue.idl", | 284 "html/track/TextTrackCue.idl", |
| 285 "html/track/TextTrackCueList.idl", | 285 "html/track/TextTrackCueList.idl", |
| 286 "html/track/TextTrackList.idl", | 286 "html/track/TextTrackList.idl", |
| 287 "html/track/TrackEvent.idl", | 287 "html/track/TrackEvent.idl", |
| 288 "html/track/VideoTrackList.idl", | 288 "html/track/VideoTrackList.idl", |
| 289 "html/track/vtt/VTTCue.idl", | 289 "html/track/vtt/VTTCue.idl", |
| 290 "html/track/vtt/VTTRegion.idl", | 290 "html/track/vtt/VTTRegion.idl", |
| 291 "input/InputDeviceCapabilities.idl", | 291 "input/InputDeviceCapabilities.idl", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 652 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 653 core_generated_dependency_idl_files = | 653 core_generated_dependency_idl_files = |
| 654 core_global_constructors_generated_idl_files # partial interfaces | 654 core_global_constructors_generated_idl_files # partial interfaces |
| 655 | 655 |
| 656 # Dependency IDL files: don't generate individual bindings, but do process | 656 # Dependency IDL files: don't generate individual bindings, but do process |
| 657 # in IDL dependency computation, and count as build dependencies | 657 # in IDL dependency computation, and count as build dependencies |
| 658 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 658 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 659 # collision | 659 # collision |
| 660 core_all_dependency_idl_files = | 660 core_all_dependency_idl_files = |
| 661 core_static_dependency_idl_files + core_generated_dependency_idl_files | 661 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |