Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/WebKit/Source/core/page/BUILD.gn

Issue 2870773003: Move EditorClientImpl.cpp out of web/ to core/page/EditorClient.cpp (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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", 19 "CustomContextMenuProvider.cpp",
20 "CustomContextMenuProvider.h", 20 "CustomContextMenuProvider.h",
21 "DragActions.h", 21 "DragActions.h",
22 "DragController.cpp", 22 "DragController.cpp",
23 "DragController.h", 23 "DragController.h",
24 "DragData.cpp", 24 "DragData.cpp",
25 "DragData.h", 25 "DragData.h",
26 "DragSession.h", 26 "DragSession.h",
27 "DragState.h", 27 "DragState.h",
28 "EditorClient.cpp",
28 "EditorClient.h", 29 "EditorClient.h",
29 "EventWithHitTestResults.h", 30 "EventWithHitTestResults.h",
30 "FocusChangedObserver.cpp", 31 "FocusChangedObserver.cpp",
31 "FocusChangedObserver.h", 32 "FocusChangedObserver.h",
32 "FocusController.cpp", 33 "FocusController.cpp",
33 "FocusController.h", 34 "FocusController.h",
34 "FrameTree.cpp", 35 "FrameTree.cpp",
35 "FrameTree.h", 36 "FrameTree.h",
36 "Page.cpp", 37 "Page.cpp",
37 "Page.h", 38 "Page.h",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "scrolling/TopDocumentRootScrollerController.h", 89 "scrolling/TopDocumentRootScrollerController.h",
89 "scrolling/ViewportScrollCallback.cpp", 90 "scrolling/ViewportScrollCallback.cpp",
90 "scrolling/ViewportScrollCallback.h", 91 "scrolling/ViewportScrollCallback.h",
91 ] 92 ]
92 93
93 configs += [ 94 configs += [
94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
95 "//build/config/compiler:no_size_t_to_int_warning", 96 "//build/config/compiler:no_size_t_to_int_warning",
96 ] 97 ]
97 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698