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