| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "SurroundingTextTest.cpp", | 268 "SurroundingTextTest.cpp", |
| 269 "VisiblePositionTest.cpp", | 269 "VisiblePositionTest.cpp", |
| 270 "VisibleSelectionTest.cpp", | 270 "VisibleSelectionTest.cpp", |
| 271 "VisibleUnitsTest.cpp", | 271 "VisibleUnitsTest.cpp", |
| 272 "commands/ApplyBlockElementCommandTest.cpp", | 272 "commands/ApplyBlockElementCommandTest.cpp", |
| 273 "commands/ApplyStyleCommandTest.cpp", | 273 "commands/ApplyStyleCommandTest.cpp", |
| 274 "commands/CompositeEditCommandTest.cpp", | 274 "commands/CompositeEditCommandTest.cpp", |
| 275 "commands/DeleteSelectionCommandTest.cpp", | 275 "commands/DeleteSelectionCommandTest.cpp", |
| 276 "commands/InsertIncrementalTextCommandTest.cpp", | 276 "commands/InsertIncrementalTextCommandTest.cpp", |
| 277 "commands/InsertListCommandTest.cpp", | 277 "commands/InsertListCommandTest.cpp", |
| 278 "commands/InsertTextCommandTest.cpp", |
| 278 "commands/ReplaceSelectionCommandTest.cpp", | 279 "commands/ReplaceSelectionCommandTest.cpp", |
| 279 "commands/SetCharacterDataCommandTest.cpp", | 280 "commands/SetCharacterDataCommandTest.cpp", |
| 280 "commands/SplitTextNodeCommandTest.cpp", | 281 "commands/SplitTextNodeCommandTest.cpp", |
| 281 "commands/TypingCommandTest.cpp", | 282 "commands/TypingCommandTest.cpp", |
| 282 "iterators/BackwardsTextBufferTest.cpp", | 283 "iterators/BackwardsTextBufferTest.cpp", |
| 283 "iterators/CharacterIteratorTest.cpp", | 284 "iterators/CharacterIteratorTest.cpp", |
| 284 "iterators/ForwardsTextBufferTest.cpp", | 285 "iterators/ForwardsTextBufferTest.cpp", |
| 285 "iterators/SearchBufferTest.cpp", | 286 "iterators/SearchBufferTest.cpp", |
| 286 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 287 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 287 "iterators/TextIteratorTest.cpp", | 288 "iterators/TextIteratorTest.cpp", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 308 "//third_party/WebKit/Source:config", | 309 "//third_party/WebKit/Source:config", |
| 309 "//third_party/WebKit/Source:inside_blink", | 310 "//third_party/WebKit/Source:inside_blink", |
| 310 ] | 311 ] |
| 311 | 312 |
| 312 deps = [ | 313 deps = [ |
| 313 "//testing/gmock", | 314 "//testing/gmock", |
| 314 "//testing/gtest", | 315 "//testing/gtest", |
| 315 "//third_party/WebKit/Source/core:core", | 316 "//third_party/WebKit/Source/core:core", |
| 316 ] | 317 ] |
| 317 } | 318 } |
| OLD | NEW |