| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 sky_core_output_dir = "$root_gen_dir/sky/core" | 5 sky_core_output_dir = "$root_gen_dir/sky/core" |
| 6 | 6 |
| 7 sky_core_files = [ | 7 sky_core_files = [ |
| 8 "Init.cpp", | 8 "Init.cpp", |
| 9 "Init.h", | 9 "Init.h", |
| 10 "animation/ActiveAnimations.cpp", | 10 "animation/ActiveAnimations.cpp", |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 "fetch/ResourcePtr.cpp", | 711 "fetch/ResourcePtr.cpp", |
| 712 "fetch/ResourcePtr.h", | 712 "fetch/ResourcePtr.h", |
| 713 "frame/Console.cpp", | 713 "frame/Console.cpp", |
| 714 "frame/Console.h", | 714 "frame/Console.h", |
| 715 "frame/ConsoleBase.cpp", | 715 "frame/ConsoleBase.cpp", |
| 716 "frame/ConsoleBase.h", | 716 "frame/ConsoleBase.h", |
| 717 "frame/DOMTimer.cpp", | 717 "frame/DOMTimer.cpp", |
| 718 "frame/DOMTimer.h", | 718 "frame/DOMTimer.h", |
| 719 "frame/DOMWindowBase64.cpp", | 719 "frame/DOMWindowBase64.cpp", |
| 720 "frame/DOMWindowBase64.h", | 720 "frame/DOMWindowBase64.h", |
| 721 "frame/DOMWindowEventHandlers.h", | |
| 722 "frame/DOMWindowLifecycleNotifier.cpp", | 721 "frame/DOMWindowLifecycleNotifier.cpp", |
| 723 "frame/DOMWindowLifecycleNotifier.h", | 722 "frame/DOMWindowLifecycleNotifier.h", |
| 724 "frame/DOMWindowLifecycleObserver.cpp", | 723 "frame/DOMWindowLifecycleObserver.cpp", |
| 725 "frame/DOMWindowLifecycleObserver.h", | 724 "frame/DOMWindowLifecycleObserver.h", |
| 726 "frame/DOMWindowProperty.cpp", | 725 "frame/DOMWindowProperty.cpp", |
| 727 "frame/DOMWindowProperty.h", | 726 "frame/DOMWindowProperty.h", |
| 728 "frame/DOMWindowTimers.cpp", | 727 "frame/DOMWindowTimers.cpp", |
| 729 "frame/DOMWindowTimers.h", | 728 "frame/DOMWindowTimers.h", |
| 730 "frame/EventHandlerRegistry.cpp", | 729 "frame/EventHandlerRegistry.cpp", |
| 731 "frame/EventHandlerRegistry.h", | 730 "frame/EventHandlerRegistry.h", |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1386 core_dependency_idl_files = get_path_info([ | 1385 core_dependency_idl_files = get_path_info([ |
| 1387 "animation/DocumentAnimation.idl", | 1386 "animation/DocumentAnimation.idl", |
| 1388 "animation/ElementAnimation.idl", | 1387 "animation/ElementAnimation.idl", |
| 1389 "css/DocumentFontFaceSet.idl", | 1388 "css/DocumentFontFaceSet.idl", |
| 1390 "dom/ChildNode.idl", | 1389 "dom/ChildNode.idl", |
| 1391 "dom/ParentNode.idl", | 1390 "dom/ParentNode.idl", |
| 1392 "dom/URLUtils.idl", | 1391 "dom/URLUtils.idl", |
| 1393 "dom/URLUtilsReadOnly.idl", | 1392 "dom/URLUtilsReadOnly.idl", |
| 1394 "events/EventListener.idl", | 1393 "events/EventListener.idl", |
| 1395 "frame/WindowBase64.idl", | 1394 "frame/WindowBase64.idl", |
| 1396 "frame/WindowEventHandlers.idl", | |
| 1397 "frame/WindowTimers.idl", | 1395 "frame/WindowTimers.idl", |
| 1398 "html/canvas/CanvasPathMethods.idl", | 1396 "html/canvas/CanvasPathMethods.idl", |
| 1399 "html/canvas/MouseEventHitRegion.idl", | 1397 "html/canvas/MouseEventHitRegion.idl", |
| 1400 "html/canvas/WebGLRenderingContextBase.idl", | 1398 "html/canvas/WebGLRenderingContextBase.idl", |
| 1401 ], "abspath") | 1399 ], "abspath") |
| 1402 | 1400 |
| 1403 # interfaces that inherit from Event, including Event itself | 1401 # interfaces that inherit from Event, including Event itself |
| 1404 core_event_idl_files = get_path_info([ | 1402 core_event_idl_files = get_path_info([ |
| 1405 "css/FontFaceSetLoadEvent.idl", | 1403 "css/FontFaceSetLoadEvent.idl", |
| 1406 "css/MediaQueryListEvent.idl", | 1404 "css/MediaQueryListEvent.idl", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1420 "events/ResourceProgressEvent.idl", | 1418 "events/ResourceProgressEvent.idl", |
| 1421 "events/TextEvent.idl", | 1419 "events/TextEvent.idl", |
| 1422 "events/TouchEvent.idl", | 1420 "events/TouchEvent.idl", |
| 1423 "events/TransitionEvent.idl", | 1421 "events/TransitionEvent.idl", |
| 1424 "events/UIEvent.idl", | 1422 "events/UIEvent.idl", |
| 1425 "events/WebKitAnimationEvent.idl", | 1423 "events/WebKitAnimationEvent.idl", |
| 1426 "events/WheelEvent.idl", | 1424 "events/WheelEvent.idl", |
| 1427 "html/MediaKeyEvent.idl", | 1425 "html/MediaKeyEvent.idl", |
| 1428 "html/canvas/WebGLContextEvent.idl", | 1426 "html/canvas/WebGLContextEvent.idl", |
| 1429 ], "abspath") | 1427 ], "abspath") |
| OLD | NEW |