| 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", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "PagePopupSupplement.cpp", | 34 "PagePopupSupplement.cpp", |
| 35 "PagePopupSupplement.h", | 35 "PagePopupSupplement.h", |
| 36 "PageVisibilityNotifier.cpp", | 36 "PageVisibilityNotifier.cpp", |
| 37 "PageVisibilityNotifier.h", | 37 "PageVisibilityNotifier.h", |
| 38 "PageVisibilityObserver.h", | 38 "PageVisibilityObserver.h", |
| 39 "PageVisibilityState.cpp", | 39 "PageVisibilityState.cpp", |
| 40 "PointerLockController.cpp", | 40 "PointerLockController.cpp", |
| 41 "PointerLockController.h", | 41 "PointerLockController.h", |
| 42 "PopupOpeningObserver.h", | 42 "PopupOpeningObserver.h", |
| 43 "PrintContext.cpp", | 43 "PrintContext.cpp", |
| 44 "ScopedPageLoadDeferrer.cpp", | 44 "ScopedPageSuspender.cpp", |
| 45 "ScopedPageLoadDeferrer.h", | 45 "ScopedPageSuspender.h", |
| 46 "SpatialNavigation.cpp", | 46 "SpatialNavigation.cpp", |
| 47 "TouchAdjustment.cpp", | 47 "TouchAdjustment.cpp", |
| 48 "TouchAdjustment.h", | 48 "TouchAdjustment.h", |
| 49 "TouchDisambiguation.cpp", | 49 "TouchDisambiguation.cpp", |
| 50 "TouchDisambiguation.h", | 50 "TouchDisambiguation.h", |
| 51 "WindowFeatures.cpp", | 51 "WindowFeatures.cpp", |
| 52 "scrolling/OverscrollController.cpp", | 52 "scrolling/OverscrollController.cpp", |
| 53 "scrolling/OverscrollController.h", | 53 "scrolling/OverscrollController.h", |
| 54 "scrolling/RootScrollerController.cpp", | 54 "scrolling/RootScrollerController.cpp", |
| 55 "scrolling/RootScrollerController.h", | 55 "scrolling/RootScrollerController.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 71 "scrolling/TopDocumentRootScrollerController.h", | 71 "scrolling/TopDocumentRootScrollerController.h", |
| 72 "scrolling/ViewportScrollCallback.cpp", | 72 "scrolling/ViewportScrollCallback.cpp", |
| 73 "scrolling/ViewportScrollCallback.h", | 73 "scrolling/ViewportScrollCallback.h", |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 configs += [ | 76 configs += [ |
| 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 78 "//build/config/compiler:no_size_t_to_int_warning", | 78 "//build/config/compiler:no_size_t_to_int_warning", |
| 79 ] | 79 ] |
| 80 } | 80 } |
| OLD | NEW |