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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 "iterators/TextIterator.cpp", | 186 "iterators/TextIterator.cpp", |
187 "iterators/TextIterator.h", | 187 "iterators/TextIterator.h", |
188 "iterators/TextIteratorBehavior.cpp", | 188 "iterators/TextIteratorBehavior.cpp", |
189 "iterators/TextIteratorBehavior.h", | 189 "iterators/TextIteratorBehavior.h", |
190 "iterators/TextIteratorTextNodeHandler.cpp", | 190 "iterators/TextIteratorTextNodeHandler.cpp", |
191 "iterators/TextIteratorTextNodeHandler.h", | 191 "iterators/TextIteratorTextNodeHandler.h", |
192 "iterators/TextIteratorTextState.cpp", | 192 "iterators/TextIteratorTextState.cpp", |
193 "iterators/TextIteratorTextState.h", | 193 "iterators/TextIteratorTextState.h", |
194 "iterators/TextSearcherICU.cpp", | 194 "iterators/TextSearcherICU.cpp", |
195 "iterators/TextSearcherICU.h", | 195 "iterators/TextSearcherICU.h", |
| 196 "markers/ActiveSuggestionMarker.cpp", |
| 197 "markers/ActiveSuggestionMarker.h", |
| 198 "markers/ActiveSuggestionMarkerListImpl.cpp", |
| 199 "markers/ActiveSuggestionMarkerListImpl.h", |
196 "markers/CompositionMarker.cpp", | 200 "markers/CompositionMarker.cpp", |
197 "markers/CompositionMarker.h", | 201 "markers/CompositionMarker.h", |
198 "markers/CompositionMarkerListImpl.cpp", | 202 "markers/CompositionMarkerListImpl.cpp", |
199 "markers/CompositionMarkerListImpl.h", | 203 "markers/CompositionMarkerListImpl.h", |
200 "markers/DocumentMarker.cpp", | 204 "markers/DocumentMarker.cpp", |
201 "markers/DocumentMarker.h", | 205 "markers/DocumentMarker.h", |
202 "markers/DocumentMarkerController.cpp", | 206 "markers/DocumentMarkerController.cpp", |
203 "markers/DocumentMarkerController.h", | 207 "markers/DocumentMarkerController.h", |
204 "markers/DocumentMarkerList.cpp", | 208 "markers/DocumentMarkerList.cpp", |
205 "markers/DocumentMarkerList.h", | 209 "markers/DocumentMarkerList.h", |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 "commands/SetCharacterDataCommandTest.cpp", | 320 "commands/SetCharacterDataCommandTest.cpp", |
317 "commands/SplitTextNodeCommandTest.cpp", | 321 "commands/SplitTextNodeCommandTest.cpp", |
318 "commands/TypingCommandTest.cpp", | 322 "commands/TypingCommandTest.cpp", |
319 "iterators/BackwardsTextBufferTest.cpp", | 323 "iterators/BackwardsTextBufferTest.cpp", |
320 "iterators/CharacterIteratorTest.cpp", | 324 "iterators/CharacterIteratorTest.cpp", |
321 "iterators/ForwardsTextBufferTest.cpp", | 325 "iterators/ForwardsTextBufferTest.cpp", |
322 "iterators/SearchBufferTest.cpp", | 326 "iterators/SearchBufferTest.cpp", |
323 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 327 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
324 "iterators/TextIteratorTest.cpp", | 328 "iterators/TextIteratorTest.cpp", |
325 "iterators/TextSearcherICUTest.cpp", | 329 "iterators/TextSearcherICUTest.cpp", |
| 330 "markers/ActiveSuggestionMarkerListImplTest.cpp", |
| 331 "markers/ActiveSuggestionMarkerTest.cpp", |
326 "markers/CompositionMarkerListImplTest.cpp", | 332 "markers/CompositionMarkerListImplTest.cpp", |
327 "markers/CompositionMarkerTest.cpp", | 333 "markers/CompositionMarkerTest.cpp", |
328 "markers/DocumentMarkerControllerTest.cpp", | 334 "markers/DocumentMarkerControllerTest.cpp", |
329 "markers/DocumentMarkerListEditorTest.cpp", | 335 "markers/DocumentMarkerListEditorTest.cpp", |
330 "markers/DocumentMarkerTest.cpp", | 336 "markers/DocumentMarkerTest.cpp", |
331 "markers/GrammarMarkerListImplTest.cpp", | 337 "markers/GrammarMarkerListImplTest.cpp", |
332 "markers/GrammarMarkerTest.cpp", | 338 "markers/GrammarMarkerTest.cpp", |
333 "markers/SpellingMarkerListImplTest.cpp", | 339 "markers/SpellingMarkerListImplTest.cpp", |
334 "markers/SpellingMarkerTest.cpp", | 340 "markers/SpellingMarkerTest.cpp", |
335 "markers/TextMatchMarkerListImplTest.cpp", | 341 "markers/TextMatchMarkerListImplTest.cpp", |
(...skipping 17 matching lines...) Expand all Loading... |
353 "//third_party/WebKit/Source:config", | 359 "//third_party/WebKit/Source:config", |
354 "//third_party/WebKit/Source:inside_blink", | 360 "//third_party/WebKit/Source:inside_blink", |
355 ] | 361 ] |
356 | 362 |
357 deps = [ | 363 deps = [ |
358 "//testing/gmock", | 364 "//testing/gmock", |
359 "//testing/gtest", | 365 "//testing/gtest", |
360 "//third_party/WebKit/Source/core:core", | 366 "//third_party/WebKit/Source/core:core", |
361 ] | 367 ] |
362 } | 368 } |
OLD | NEW |