| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "ScopedPageSuspender.cpp", | 57 "ScopedPageSuspender.cpp", |
| 58 "ScopedPageSuspender.h", | 58 "ScopedPageSuspender.h", |
| 59 "SpatialNavigation.cpp", | 59 "SpatialNavigation.cpp", |
| 60 "SpatialNavigation.h", | 60 "SpatialNavigation.h", |
| 61 "SpellCheckerClient.h", | 61 "SpellCheckerClient.h", |
| 62 "TouchAdjustment.cpp", | 62 "TouchAdjustment.cpp", |
| 63 "TouchAdjustment.h", | 63 "TouchAdjustment.h", |
| 64 "TouchDisambiguation.cpp", | 64 "TouchDisambiguation.cpp", |
| 65 "TouchDisambiguation.h", | 65 "TouchDisambiguation.h", |
| 66 "ValidationMessageClient.h", | 66 "ValidationMessageClient.h", |
| 67 "ValidationMessageClientImpl.cpp", |
| 68 "ValidationMessageClientImpl.h", |
| 67 "WindowFeatures.cpp", | 69 "WindowFeatures.cpp", |
| 68 "WindowFeatures.h", | 70 "WindowFeatures.h", |
| 69 "scrolling/OverscrollController.cpp", | 71 "scrolling/OverscrollController.cpp", |
| 70 "scrolling/OverscrollController.h", | 72 "scrolling/OverscrollController.h", |
| 71 "scrolling/RootScrollerController.cpp", | 73 "scrolling/RootScrollerController.cpp", |
| 72 "scrolling/RootScrollerController.h", | 74 "scrolling/RootScrollerController.h", |
| 73 "scrolling/RootScrollerUtil.cpp", | 75 "scrolling/RootScrollerUtil.cpp", |
| 74 "scrolling/RootScrollerUtil.h", | 76 "scrolling/RootScrollerUtil.h", |
| 75 "scrolling/ScrollCustomizationCallbacks.cpp", | 77 "scrolling/ScrollCustomizationCallbacks.cpp", |
| 76 "scrolling/ScrollCustomizationCallbacks.h", | 78 "scrolling/ScrollCustomizationCallbacks.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 88 "scrolling/TopDocumentRootScrollerController.h", | 90 "scrolling/TopDocumentRootScrollerController.h", |
| 89 "scrolling/ViewportScrollCallback.cpp", | 91 "scrolling/ViewportScrollCallback.cpp", |
| 90 "scrolling/ViewportScrollCallback.h", | 92 "scrolling/ViewportScrollCallback.h", |
| 91 ] | 93 ] |
| 92 | 94 |
| 93 configs += [ | 95 configs += [ |
| 94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 95 "//build/config/compiler:no_size_t_to_int_warning", | 97 "//build/config/compiler:no_size_t_to_int_warning", |
| 96 ] | 98 ] |
| 97 } | 99 } |
| OLD | NEW |