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 "ContextMenuProvider.h", | 14 "ContextMenuProvider.h", |
15 "CreateWindow.cpp", | 15 "CreateWindow.cpp", |
16 "CreateWindow.h", | 16 "CreateWindow.h", |
17 "CustomContextMenuProvider.cpp", | 17 "CustomContextMenuProvider.cpp", |
18 "CustomContextMenuProvider.h", | 18 "CustomContextMenuProvider.h", |
19 "DragController.cpp", | 19 "DragController.cpp", |
20 "DragData.cpp", | 20 "DragData.cpp", |
21 "EventWithHitTestResults.h", | 21 "EventWithHitTestResults.h", |
22 "FocusChangedObserver.cpp", | 22 "FocusChangedObserver.cpp", |
23 "FocusChangedObserver.h", | 23 "FocusChangedObserver.h", |
24 "FocusController.cpp", | 24 "FocusController.cpp", |
25 "FrameTree.cpp", | 25 "FrameTree.cpp", |
26 "NetworkStateNotifier.cpp", | |
27 "NetworkStateNotifier.h", | |
28 "Page.cpp", | 26 "Page.cpp", |
29 "Page.h", | 27 "Page.h", |
30 "PageAnimator.cpp", | 28 "PageAnimator.cpp", |
31 "PageAnimator.h", | 29 "PageAnimator.h", |
32 "PagePopupClient.cpp", | 30 "PagePopupClient.cpp", |
33 "PagePopupClient.h", | 31 "PagePopupClient.h", |
34 "PagePopupController.cpp", | 32 "PagePopupController.cpp", |
35 "PagePopupController.h", | 33 "PagePopupController.h", |
36 "PagePopupSupplement.cpp", | 34 "PagePopupSupplement.cpp", |
37 "PagePopupSupplement.h", | 35 "PagePopupSupplement.h", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "scrolling/TopDocumentRootScrollerController.h", | 71 "scrolling/TopDocumentRootScrollerController.h", |
74 "scrolling/ViewportScrollCallback.cpp", | 72 "scrolling/ViewportScrollCallback.cpp", |
75 "scrolling/ViewportScrollCallback.h", | 73 "scrolling/ViewportScrollCallback.h", |
76 ] | 74 ] |
77 | 75 |
78 configs += [ | 76 configs += [ |
79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
80 "//build/config/compiler:no_size_t_to_int_warning", | 78 "//build/config/compiler:no_size_t_to_int_warning", |
81 ] | 79 ] |
82 } | 80 } |
OLD | NEW |