| 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/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("page") { | 7 blink_core_sources("page") { |
| 8 sources = [ | 8 sources = [ |
| 9 "AutoscrollController.cpp", | 9 "AutoscrollController.cpp", |
| 10 "AutoscrollController.h", | 10 "AutoscrollController.h", |
| 11 "ChromeClient.cpp", | 11 "ChromeClient.cpp", |
| 12 "ChromeClient.h", | 12 "ChromeClient.h", |
| 13 "ContextMenuController.cpp", | 13 "ContextMenuController.cpp", |
| 14 "ContextMenuController.h", |
| 14 "ContextMenuProvider.h", | 15 "ContextMenuProvider.h", |
| 15 "CreateWindow.cpp", | 16 "CreateWindow.cpp", |
| 16 "CreateWindow.h", | 17 "CreateWindow.h", |
| 17 "CustomContextMenuProvider.cpp", | 18 "CustomContextMenuProvider.cpp", |
| 18 "CustomContextMenuProvider.h", | 19 "CustomContextMenuProvider.h", |
| 19 "DragController.cpp", | 20 "DragController.cpp", |
| 21 "DragController.h", |
| 20 "DragData.cpp", | 22 "DragData.cpp", |
| 21 "EventWithHitTestResults.h", | 23 "EventWithHitTestResults.h", |
| 22 "FocusChangedObserver.cpp", | 24 "FocusChangedObserver.cpp", |
| 23 "FocusChangedObserver.h", | 25 "FocusChangedObserver.h", |
| 24 "FocusController.cpp", | 26 "FocusController.cpp", |
| 27 "FocusController.h", |
| 25 "FrameTree.cpp", | 28 "FrameTree.cpp", |
| 29 "FrameTree.h", |
| 26 "Page.cpp", | 30 "Page.cpp", |
| 27 "Page.h", | 31 "Page.h", |
| 28 "PageAnimator.cpp", | 32 "PageAnimator.cpp", |
| 29 "PageAnimator.h", | 33 "PageAnimator.h", |
| 30 "PagePopupClient.cpp", | 34 "PagePopupClient.cpp", |
| 31 "PagePopupClient.h", | 35 "PagePopupClient.h", |
| 32 "PagePopupController.cpp", | 36 "PagePopupController.cpp", |
| 33 "PagePopupController.h", | 37 "PagePopupController.h", |
| 34 "PagePopupSupplement.cpp", | 38 "PagePopupSupplement.cpp", |
| 35 "PagePopupSupplement.h", | 39 "PagePopupSupplement.h", |
| 36 "PageVisibilityNotifier.cpp", | 40 "PageVisibilityNotifier.cpp", |
| 37 "PageVisibilityNotifier.h", | 41 "PageVisibilityNotifier.h", |
| 38 "PageVisibilityObserver.h", | 42 "PageVisibilityObserver.h", |
| 39 "PageVisibilityState.cpp", | 43 "PageVisibilityState.cpp", |
| 40 "PointerLockController.cpp", | 44 "PointerLockController.cpp", |
| 41 "PointerLockController.h", | 45 "PointerLockController.h", |
| 42 "PopupOpeningObserver.h", | 46 "PopupOpeningObserver.h", |
| 43 "PrintContext.cpp", | 47 "PrintContext.cpp", |
| 48 "PrintContext.h", |
| 44 "ScopedPageSuspender.cpp", | 49 "ScopedPageSuspender.cpp", |
| 45 "ScopedPageSuspender.h", | 50 "ScopedPageSuspender.h", |
| 46 "SpatialNavigation.cpp", | 51 "SpatialNavigation.cpp", |
| 52 "SpatialNavigation.h", |
| 47 "TouchAdjustment.cpp", | 53 "TouchAdjustment.cpp", |
| 48 "TouchAdjustment.h", | 54 "TouchAdjustment.h", |
| 49 "TouchDisambiguation.cpp", | 55 "TouchDisambiguation.cpp", |
| 50 "TouchDisambiguation.h", | 56 "TouchDisambiguation.h", |
| 51 "WindowFeatures.cpp", | 57 "WindowFeatures.cpp", |
| 52 "scrolling/OverscrollController.cpp", | 58 "scrolling/OverscrollController.cpp", |
| 53 "scrolling/OverscrollController.h", | 59 "scrolling/OverscrollController.h", |
| 54 "scrolling/RootScrollerController.cpp", | 60 "scrolling/RootScrollerController.cpp", |
| 55 "scrolling/RootScrollerController.h", | 61 "scrolling/RootScrollerController.h", |
| 56 "scrolling/RootScrollerUtil.cpp", | 62 "scrolling/RootScrollerUtil.cpp", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 71 "scrolling/TopDocumentRootScrollerController.h", | 77 "scrolling/TopDocumentRootScrollerController.h", |
| 72 "scrolling/ViewportScrollCallback.cpp", | 78 "scrolling/ViewportScrollCallback.cpp", |
| 73 "scrolling/ViewportScrollCallback.h", | 79 "scrolling/ViewportScrollCallback.h", |
| 74 ] | 80 ] |
| 75 | 81 |
| 76 configs += [ | 82 configs += [ |
| 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 78 "//build/config/compiler:no_size_t_to_int_warning", | 84 "//build/config/compiler:no_size_t_to_int_warning", |
| 79 ] | 85 ] |
| 80 } | 86 } |
| OLD | NEW |