| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "commands/TypingCommandTest.cpp", | 300 "commands/TypingCommandTest.cpp", |
| 301 "iterators/BackwardsTextBufferTest.cpp", | 301 "iterators/BackwardsTextBufferTest.cpp", |
| 302 "iterators/CharacterIteratorTest.cpp", | 302 "iterators/CharacterIteratorTest.cpp", |
| 303 "iterators/ForwardsTextBufferTest.cpp", | 303 "iterators/ForwardsTextBufferTest.cpp", |
| 304 "iterators/SearchBufferTest.cpp", | 304 "iterators/SearchBufferTest.cpp", |
| 305 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 305 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 306 "iterators/TextIteratorTest.cpp", | 306 "iterators/TextIteratorTest.cpp", |
| 307 "iterators/TextSearcherICUTest.cpp", | 307 "iterators/TextSearcherICUTest.cpp", |
| 308 "markers/CompositionMarkerListImplTest.cpp", | 308 "markers/CompositionMarkerListImplTest.cpp", |
| 309 "markers/DocumentMarkerControllerTest.cpp", | 309 "markers/DocumentMarkerControllerTest.cpp", |
| 310 "markers/DocumentMarkerListEditorTest.cpp", |
| 310 "markers/DocumentMarkerTest.cpp", | 311 "markers/DocumentMarkerTest.cpp", |
| 311 "markers/GrammarMarkerListImplTest.cpp", | 312 "markers/GrammarMarkerListImplTest.cpp", |
| 312 "markers/SpellingMarkerListImplTest.cpp", | 313 "markers/SpellingMarkerListImplTest.cpp", |
| 313 "markers/TextMatchMarkerListImplTest.cpp", | 314 "markers/TextMatchMarkerListImplTest.cpp", |
| 314 "serializers/StyledMarkupSerializerTest.cpp", | 315 "serializers/StyledMarkupSerializerTest.cpp", |
| 315 "spellcheck/IdleSpellCheckCallbackTest.cpp", | 316 "spellcheck/IdleSpellCheckCallbackTest.cpp", |
| 316 "spellcheck/SpellCheckTestBase.cpp", | 317 "spellcheck/SpellCheckTestBase.cpp", |
| 317 "spellcheck/SpellCheckTestBase.h", | 318 "spellcheck/SpellCheckTestBase.h", |
| 318 "spellcheck/SpellCheckerTest.cpp", | 319 "spellcheck/SpellCheckerTest.cpp", |
| 319 "state_machines/BackspaceStateMachineTest.cpp", | 320 "state_machines/BackspaceStateMachineTest.cpp", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 331 "//third_party/WebKit/Source:config", | 332 "//third_party/WebKit/Source:config", |
| 332 "//third_party/WebKit/Source:inside_blink", | 333 "//third_party/WebKit/Source:inside_blink", |
| 333 ] | 334 ] |
| 334 | 335 |
| 335 deps = [ | 336 deps = [ |
| 336 "//testing/gmock", | 337 "//testing/gmock", |
| 337 "//testing/gtest", | 338 "//testing/gtest", |
| 338 "//third_party/WebKit/Source/core:core", | 339 "//third_party/WebKit/Source/core:core", |
| 339 ] | 340 ] |
| 340 } | 341 } |
| OLD | NEW |