| 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 "ContextMenuClient.h", | 13 "ContextMenuClient.h", |
| 14 "ContextMenuController.cpp", | 14 "ContextMenuController.cpp", |
| 15 "ContextMenuController.h", | 15 "ContextMenuController.h", |
| 16 "ContextMenuProvider.h", | 16 "ContextMenuProvider.h", |
| 17 "CreateWindow.cpp", | 17 "CreateWindow.cpp", |
| 18 "CreateWindow.h", | 18 "CreateWindow.h", |
| 19 "CustomContextMenuProvider.cpp", | |
| 20 "CustomContextMenuProvider.h", | |
| 21 "DragActions.h", | 19 "DragActions.h", |
| 22 "DragController.cpp", | 20 "DragController.cpp", |
| 23 "DragController.h", | 21 "DragController.h", |
| 24 "DragData.cpp", | 22 "DragData.cpp", |
| 25 "DragData.h", | 23 "DragData.h", |
| 26 "DragSession.h", | 24 "DragSession.h", |
| 27 "DragState.h", | 25 "DragState.h", |
| 28 "EditorClient.h", | 26 "EditorClient.h", |
| 29 "EventWithHitTestResults.h", | 27 "EventWithHitTestResults.h", |
| 30 "FocusChangedObserver.cpp", | 28 "FocusChangedObserver.cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "scrolling/TopDocumentRootScrollerController.h", | 88 "scrolling/TopDocumentRootScrollerController.h", |
| 91 "scrolling/ViewportScrollCallback.cpp", | 89 "scrolling/ViewportScrollCallback.cpp", |
| 92 "scrolling/ViewportScrollCallback.h", | 90 "scrolling/ViewportScrollCallback.h", |
| 93 ] | 91 ] |
| 94 | 92 |
| 95 configs += [ | 93 configs += [ |
| 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 97 "//build/config/compiler:no_size_t_to_int_warning", | 95 "//build/config/compiler:no_size_t_to_int_warning", |
| 98 ] | 96 ] |
| 99 } | 97 } |
| OLD | NEW |