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

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

Issue 2530843003: Introduce InsertIncrementalTextCommand to respect existing style for composition (Closed)
Patch Set: Address xiaochengh@'s review Created 4 years 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("editing") { 7 blink_core_sources("editing") {
8 split_count = 5 8 split_count = 5
9 sources = [ 9 sources = [
10 "CaretBase.cpp", 10 "CaretBase.cpp",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "commands/DragAndDropCommand.h", 84 "commands/DragAndDropCommand.h",
85 "commands/EditCommand.cpp", 85 "commands/EditCommand.cpp",
86 "commands/EditCommand.h", 86 "commands/EditCommand.h",
87 "commands/EditingState.cpp", 87 "commands/EditingState.cpp",
88 "commands/EditingState.h", 88 "commands/EditingState.h",
89 "commands/EditorCommand.cpp", 89 "commands/EditorCommand.cpp",
90 "commands/FormatBlockCommand.cpp", 90 "commands/FormatBlockCommand.cpp",
91 "commands/FormatBlockCommand.h", 91 "commands/FormatBlockCommand.h",
92 "commands/IndentOutdentCommand.cpp", 92 "commands/IndentOutdentCommand.cpp",
93 "commands/IndentOutdentCommand.h", 93 "commands/IndentOutdentCommand.h",
94 "commands/InsertIncrementalTextCommand.cpp",
95 "commands/InsertIncrementalTextCommand.h",
94 "commands/InsertIntoTextNodeCommand.cpp", 96 "commands/InsertIntoTextNodeCommand.cpp",
95 "commands/InsertIntoTextNodeCommand.h", 97 "commands/InsertIntoTextNodeCommand.h",
96 "commands/InsertLineBreakCommand.cpp", 98 "commands/InsertLineBreakCommand.cpp",
97 "commands/InsertLineBreakCommand.h", 99 "commands/InsertLineBreakCommand.h",
98 "commands/InsertListCommand.cpp", 100 "commands/InsertListCommand.cpp",
99 "commands/InsertListCommand.h", 101 "commands/InsertListCommand.h",
100 "commands/InsertNodeBeforeCommand.cpp", 102 "commands/InsertNodeBeforeCommand.cpp",
101 "commands/InsertNodeBeforeCommand.h", 103 "commands/InsertNodeBeforeCommand.h",
102 "commands/InsertParagraphSeparatorCommand.cpp", 104 "commands/InsertParagraphSeparatorCommand.cpp",
103 "commands/InsertParagraphSeparatorCommand.h", 105 "commands/InsertParagraphSeparatorCommand.h",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 "//third_party/WebKit/Source:config", 258 "//third_party/WebKit/Source:config",
257 "//third_party/WebKit/Source:inside_blink", 259 "//third_party/WebKit/Source:inside_blink",
258 ] 260 ]
259 261
260 deps = [ 262 deps = [
261 "//testing/gmock", 263 "//testing/gmock",
262 "//testing/gtest", 264 "//testing/gtest",
263 "//third_party/WebKit/Source/core:core", 265 "//third_party/WebKit/Source/core:core",
264 ] 266 ]
265 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698