| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 "SurroundingTextTest.cpp", | 278 "SurroundingTextTest.cpp", |
| 279 "VisiblePositionTest.cpp", | 279 "VisiblePositionTest.cpp", |
| 280 "VisibleSelectionTest.cpp", | 280 "VisibleSelectionTest.cpp", |
| 281 "VisibleUnitsTest.cpp", | 281 "VisibleUnitsTest.cpp", |
| 282 "commands/ApplyBlockElementCommandTest.cpp", | 282 "commands/ApplyBlockElementCommandTest.cpp", |
| 283 "commands/ApplyStyleCommandTest.cpp", | 283 "commands/ApplyStyleCommandTest.cpp", |
| 284 "commands/CompositeEditCommandTest.cpp", | 284 "commands/CompositeEditCommandTest.cpp", |
| 285 "commands/DeleteSelectionCommandTest.cpp", | 285 "commands/DeleteSelectionCommandTest.cpp", |
| 286 "commands/InsertIncrementalTextCommandTest.cpp", | 286 "commands/InsertIncrementalTextCommandTest.cpp", |
| 287 "commands/InsertListCommandTest.cpp", | 287 "commands/InsertListCommandTest.cpp", |
| 288 "commands/InsertTextCommandTest.cpp", | |
| 289 "commands/ReplaceSelectionCommandTest.cpp", | 288 "commands/ReplaceSelectionCommandTest.cpp", |
| 290 "commands/SetCharacterDataCommandTest.cpp", | 289 "commands/SetCharacterDataCommandTest.cpp", |
| 291 "commands/SplitTextNodeCommandTest.cpp", | 290 "commands/SplitTextNodeCommandTest.cpp", |
| 292 "commands/TypingCommandTest.cpp", | 291 "commands/TypingCommandTest.cpp", |
| 293 "iterators/BackwardsTextBufferTest.cpp", | 292 "iterators/BackwardsTextBufferTest.cpp", |
| 294 "iterators/CharacterIteratorTest.cpp", | 293 "iterators/CharacterIteratorTest.cpp", |
| 295 "iterators/ForwardsTextBufferTest.cpp", | 294 "iterators/ForwardsTextBufferTest.cpp", |
| 296 "iterators/SearchBufferTest.cpp", | 295 "iterators/SearchBufferTest.cpp", |
| 297 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 296 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 298 "iterators/TextIteratorTest.cpp", | 297 "iterators/TextIteratorTest.cpp", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 319 "//third_party/WebKit/Source:config", | 318 "//third_party/WebKit/Source:config", |
| 320 "//third_party/WebKit/Source:inside_blink", | 319 "//third_party/WebKit/Source:inside_blink", |
| 321 ] | 320 ] |
| 322 | 321 |
| 323 deps = [ | 322 deps = [ |
| 324 "//testing/gmock", | 323 "//testing/gmock", |
| 325 "//testing/gtest", | 324 "//testing/gtest", |
| 326 "//third_party/WebKit/Source/core:core", | 325 "//third_party/WebKit/Source/core:core", |
| 327 ] | 326 ] |
| 328 } | 327 } |
| OLD | NEW |