| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 "svg/SVGTextContentElement.idl", | 384 "svg/SVGTextContentElement.idl", |
| 385 "svg/SVGTextElement.idl", | 385 "svg/SVGTextElement.idl", |
| 386 "svg/SVGTextPathElement.idl", | 386 "svg/SVGTextPathElement.idl", |
| 387 "svg/SVGTextPositioningElement.idl", | 387 "svg/SVGTextPositioningElement.idl", |
| 388 "svg/SVGTitleElement.idl", | 388 "svg/SVGTitleElement.idl", |
| 389 "svg/SVGTransform.idl", | 389 "svg/SVGTransform.idl", |
| 390 "svg/SVGTransformList.idl", | 390 "svg/SVGTransformList.idl", |
| 391 "svg/SVGUnitTypes.idl", | 391 "svg/SVGUnitTypes.idl", |
| 392 "svg/SVGUseElement.idl", | 392 "svg/SVGUseElement.idl", |
| 393 "svg/SVGViewElement.idl", | 393 "svg/SVGViewElement.idl", |
| 394 "svg/SVGViewSpec.idl", | |
| 395 "timing/MemoryInfo.idl", | 394 "timing/MemoryInfo.idl", |
| 396 "timing/Performance.idl", | 395 "timing/Performance.idl", |
| 397 "timing/PerformanceEntry.idl", | 396 "timing/PerformanceEntry.idl", |
| 398 "timing/PerformanceLongTaskTiming.idl", | 397 "timing/PerformanceLongTaskTiming.idl", |
| 399 "timing/PerformanceMark.idl", | 398 "timing/PerformanceMark.idl", |
| 400 "timing/PerformanceMeasure.idl", | 399 "timing/PerformanceMeasure.idl", |
| 401 "timing/PerformanceNavigation.idl", | 400 "timing/PerformanceNavigation.idl", |
| 402 "timing/PerformanceObserver.idl", | 401 "timing/PerformanceObserver.idl", |
| 403 "timing/PerformanceObserverEntryList.idl", | 402 "timing/PerformanceObserverEntryList.idl", |
| 404 "timing/PerformanceResourceTiming.idl", | 403 "timing/PerformanceResourceTiming.idl", |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 628 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 630 core_generated_dependency_idl_files = | 629 core_generated_dependency_idl_files = |
| 631 core_global_constructors_generated_idl_files # partial interfaces | 630 core_global_constructors_generated_idl_files # partial interfaces |
| 632 | 631 |
| 633 # Dependency IDL files: don't generate individual bindings, but do process | 632 # Dependency IDL files: don't generate individual bindings, but do process |
| 634 # in IDL dependency computation, and count as build dependencies | 633 # in IDL dependency computation, and count as build dependencies |
| 635 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 634 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 636 # collision | 635 # collision |
| 637 core_all_dependency_idl_files = | 636 core_all_dependency_idl_files = |
| 638 core_static_dependency_idl_files + core_generated_dependency_idl_files | 637 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |