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

Unified Diff: third_party/WebKit/Source/core/editing/BUILD.gn

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Uploading the latest version from my repo so I can reference it Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_widget.cc ('k') | third_party/WebKit/Source/core/editing/CompositionUnderline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/BUILD.gn
diff --git a/third_party/WebKit/Source/core/editing/BUILD.gn b/third_party/WebKit/Source/core/editing/BUILD.gn
index ca0ed86f21777d9e2085248a836a64334cbcc58a..c485cdc3c8271311b9af8052fc78d3e0e299e906 100644
--- a/third_party/WebKit/Source/core/editing/BUILD.gn
+++ b/third_party/WebKit/Source/core/editing/BUILD.gn
@@ -71,6 +71,11 @@ blink_core_sources("editing") {
"TextAffinity.cpp",
"TextAffinity.h",
"TextGranularity.h",
+ "TextSuggestionController.cpp",
+ "TextSuggestionController.h",
+ "TextSuggestionInfo.h",
+ "TextSuggestionList.cpp",
+ "TextSuggestionList.h",
"VisiblePosition.cpp",
"VisiblePosition.h",
"VisibleSelection.cpp",
@@ -259,6 +264,13 @@ blink_core_sources("editing") {
"state_machines/TextSegmentationMachineState.h",
]
+ if (is_android) {
+ sources += [
+ "TextSuggestionBackendImplAndroid.cpp",
+ "TextSuggestionBackendImplAndroid.h",
+ ]
+ }
+
if (is_mac) {
sources += [ "commands/SmartReplaceCF.cpp" ]
}
« no previous file with comments | « content/renderer/render_widget.cc ('k') | third_party/WebKit/Source/core/editing/CompositionUnderline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698