| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "timing/PerformanceEntry.idl", | 401 "timing/PerformanceEntry.idl", |
| 402 "timing/PerformanceLongTaskTiming.idl", | 402 "timing/PerformanceLongTaskTiming.idl", |
| 403 "timing/PerformanceMark.idl", | 403 "timing/PerformanceMark.idl", |
| 404 "timing/PerformanceMeasure.idl", | 404 "timing/PerformanceMeasure.idl", |
| 405 "timing/PerformanceNavigation.idl", | 405 "timing/PerformanceNavigation.idl", |
| 406 "timing/PerformanceNavigationTiming.idl", | 406 "timing/PerformanceNavigationTiming.idl", |
| 407 "timing/PerformanceObserver.idl", | 407 "timing/PerformanceObserver.idl", |
| 408 "timing/PerformanceObserverEntryList.idl", | 408 "timing/PerformanceObserverEntryList.idl", |
| 409 "timing/PerformancePaintTiming.idl", | 409 "timing/PerformancePaintTiming.idl", |
| 410 "timing/PerformanceResourceTiming.idl", | 410 "timing/PerformanceResourceTiming.idl", |
| 411 "timing/PerformanceServerTiming.idl", |
| 411 "timing/PerformanceTiming.idl", | 412 "timing/PerformanceTiming.idl", |
| 412 "timing/TaskAttributionTiming.idl", | 413 "timing/TaskAttributionTiming.idl", |
| 413 "timing/WorkerPerformance.idl", | 414 "timing/WorkerPerformance.idl", |
| 414 "workers/SharedWorker.idl", | 415 "workers/SharedWorker.idl", |
| 415 "workers/Worker.idl", | 416 "workers/Worker.idl", |
| 416 "workers/WorkerLocation.idl", | 417 "workers/WorkerLocation.idl", |
| 417 "workers/Worklet.idl", | 418 "workers/Worklet.idl", |
| 418 "workers/WorkletGlobalScope.idl", | 419 "workers/WorkletGlobalScope.idl", |
| 419 "xml/DOMParser.idl", | 420 "xml/DOMParser.idl", |
| 420 "xml/XMLSerializer.idl", | 421 "xml/XMLSerializer.idl", |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 654 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 654 core_generated_dependency_idl_files = | 655 core_generated_dependency_idl_files = |
| 655 core_global_constructors_generated_idl_files # partial interfaces | 656 core_global_constructors_generated_idl_files # partial interfaces |
| 656 | 657 |
| 657 # Dependency IDL files: don't generate individual bindings, but do process | 658 # Dependency IDL files: don't generate individual bindings, but do process |
| 658 # in IDL dependency computation, and count as build dependencies | 659 # in IDL dependency computation, and count as build dependencies |
| 659 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 660 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 660 # collision | 661 # collision |
| 661 core_all_dependency_idl_files = | 662 core_all_dependency_idl_files = |
| 662 core_static_dependency_idl_files + core_generated_dependency_idl_files | 663 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |