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("editing") { | 7 blink_core_sources("editing") { |
8 split_count = 5 | 8 split_count = 5 |
9 sources = [ | 9 sources = [ |
10 "CaretDisplayItemClient.cpp", | 10 "CaretDisplayItemClient.cpp", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "SelectionModifierWord.cpp", | 69 "SelectionModifierWord.cpp", |
70 "SelectionStrategy.h", | 70 "SelectionStrategy.h", |
71 "SelectionTemplate.cpp", | 71 "SelectionTemplate.cpp", |
72 "SelectionTemplate.h", | 72 "SelectionTemplate.h", |
73 "SelectionType.h", | 73 "SelectionType.h", |
74 "SurroundingText.cpp", | 74 "SurroundingText.cpp", |
75 "SurroundingText.h", | 75 "SurroundingText.h", |
76 "TextAffinity.cpp", | 76 "TextAffinity.cpp", |
77 "TextAffinity.h", | 77 "TextAffinity.h", |
78 "TextGranularity.h", | 78 "TextGranularity.h", |
| 79 "TextSuggestionBackendImpl.cpp", |
| 80 "TextSuggestionBackendImpl.h", |
| 81 "TextSuggestionController.cpp", |
| 82 "TextSuggestionController.h", |
79 "VisiblePosition.cpp", | 83 "VisiblePosition.cpp", |
80 "VisiblePosition.h", | 84 "VisiblePosition.h", |
81 "VisibleSelection.cpp", | 85 "VisibleSelection.cpp", |
82 "VisibleSelection.h", | 86 "VisibleSelection.h", |
83 "VisibleUnits.cpp", | 87 "VisibleUnits.cpp", |
84 "VisibleUnits.h", | 88 "VisibleUnits.h", |
85 "VisibleUnitsLine.cpp", | 89 "VisibleUnitsLine.cpp", |
86 "WritingDirection.h", | 90 "WritingDirection.h", |
87 "commands/AppendNodeCommand.cpp", | 91 "commands/AppendNodeCommand.cpp", |
88 "commands/AppendNodeCommand.h", | 92 "commands/AppendNodeCommand.h", |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 "FrameCaretTest.cpp", | 303 "FrameCaretTest.cpp", |
300 "FrameSelectionTest.cpp", | 304 "FrameSelectionTest.cpp", |
301 "GranularityStrategyTest.cpp", | 305 "GranularityStrategyTest.cpp", |
302 "InputMethodControllerTest.cpp", | 306 "InputMethodControllerTest.cpp", |
303 "PositionIteratorTest.cpp", | 307 "PositionIteratorTest.cpp", |
304 "PositionTest.cpp", | 308 "PositionTest.cpp", |
305 "RelocatablePositionTest.cpp", | 309 "RelocatablePositionTest.cpp", |
306 "SelectionControllerTest.cpp", | 310 "SelectionControllerTest.cpp", |
307 "SelectionTemplateTest.cpp", | 311 "SelectionTemplateTest.cpp", |
308 "SurroundingTextTest.cpp", | 312 "SurroundingTextTest.cpp", |
| 313 "TextSuggestionControllerTest.cpp", |
309 "VisiblePositionTest.cpp", | 314 "VisiblePositionTest.cpp", |
310 "VisibleSelectionTest.cpp", | 315 "VisibleSelectionTest.cpp", |
311 "VisibleUnitsTest.cpp", | 316 "VisibleUnitsTest.cpp", |
312 "commands/ApplyBlockElementCommandTest.cpp", | 317 "commands/ApplyBlockElementCommandTest.cpp", |
313 "commands/ApplyStyleCommandTest.cpp", | 318 "commands/ApplyStyleCommandTest.cpp", |
314 "commands/CompositeEditCommandTest.cpp", | 319 "commands/CompositeEditCommandTest.cpp", |
315 "commands/DeleteSelectionCommandTest.cpp", | 320 "commands/DeleteSelectionCommandTest.cpp", |
316 "commands/InsertIncrementalTextCommandTest.cpp", | 321 "commands/InsertIncrementalTextCommandTest.cpp", |
317 "commands/InsertListCommandTest.cpp", | 322 "commands/InsertListCommandTest.cpp", |
318 "commands/InsertTextCommandTest.cpp", | 323 "commands/InsertTextCommandTest.cpp", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 "//third_party/WebKit/Source:config", | 364 "//third_party/WebKit/Source:config", |
360 "//third_party/WebKit/Source:inside_blink", | 365 "//third_party/WebKit/Source:inside_blink", |
361 ] | 366 ] |
362 | 367 |
363 deps = [ | 368 deps = [ |
364 "//testing/gmock", | 369 "//testing/gmock", |
365 "//testing/gtest", | 370 "//testing/gtest", |
366 "//third_party/WebKit/Source/core:core", | 371 "//third_party/WebKit/Source/core:core", |
367 ] | 372 ] |
368 } | 373 } |
OLD | NEW |