| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "commands/RemoveFormatCommand.cpp", | 115 "commands/RemoveFormatCommand.cpp", |
| 116 "commands/RemoveFormatCommand.h", | 116 "commands/RemoveFormatCommand.h", |
| 117 "commands/RemoveNodeCommand.cpp", | 117 "commands/RemoveNodeCommand.cpp", |
| 118 "commands/RemoveNodeCommand.h", | 118 "commands/RemoveNodeCommand.h", |
| 119 "commands/RemoveNodePreservingChildrenCommand.cpp", | 119 "commands/RemoveNodePreservingChildrenCommand.cpp", |
| 120 "commands/RemoveNodePreservingChildrenCommand.h", | 120 "commands/RemoveNodePreservingChildrenCommand.h", |
| 121 "commands/ReplaceNodeWithSpanCommand.cpp", | 121 "commands/ReplaceNodeWithSpanCommand.cpp", |
| 122 "commands/ReplaceNodeWithSpanCommand.h", | 122 "commands/ReplaceNodeWithSpanCommand.h", |
| 123 "commands/ReplaceSelectionCommand.cpp", | 123 "commands/ReplaceSelectionCommand.cpp", |
| 124 "commands/ReplaceSelectionCommand.h", | 124 "commands/ReplaceSelectionCommand.h", |
| 125 "commands/SetCharacterDataCommand.cpp", |
| 126 "commands/SetCharacterDataCommand.h", |
| 125 "commands/SetNodeAttributeCommand.cpp", | 127 "commands/SetNodeAttributeCommand.cpp", |
| 126 "commands/SetNodeAttributeCommand.h", | 128 "commands/SetNodeAttributeCommand.h", |
| 127 "commands/SimplifyMarkupCommand.cpp", | 129 "commands/SimplifyMarkupCommand.cpp", |
| 128 "commands/SimplifyMarkupCommand.h", | 130 "commands/SimplifyMarkupCommand.h", |
| 129 "commands/SmartReplace.h", | 131 "commands/SmartReplace.h", |
| 130 "commands/SmartReplaceICU.cpp", | 132 "commands/SmartReplaceICU.cpp", |
| 131 "commands/SplitElementCommand.cpp", | 133 "commands/SplitElementCommand.cpp", |
| 132 "commands/SplitElementCommand.h", | 134 "commands/SplitElementCommand.h", |
| 133 "commands/SplitTextNodeCommand.cpp", | 135 "commands/SplitTextNodeCommand.cpp", |
| 134 "commands/SplitTextNodeCommand.h", | 136 "commands/SplitTextNodeCommand.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "SurroundingTextTest.cpp", | 244 "SurroundingTextTest.cpp", |
| 243 "VisiblePositionTest.cpp", | 245 "VisiblePositionTest.cpp", |
| 244 "VisibleSelectionTest.cpp", | 246 "VisibleSelectionTest.cpp", |
| 245 "VisibleUnitsTest.cpp", | 247 "VisibleUnitsTest.cpp", |
| 246 "commands/ApplyBlockElementCommandTest.cpp", | 248 "commands/ApplyBlockElementCommandTest.cpp", |
| 247 "commands/ApplyStyleCommandTest.cpp", | 249 "commands/ApplyStyleCommandTest.cpp", |
| 248 "commands/CompositeEditCommandTest.cpp", | 250 "commands/CompositeEditCommandTest.cpp", |
| 249 "commands/DeleteSelectionCommandTest.cpp", | 251 "commands/DeleteSelectionCommandTest.cpp", |
| 250 "commands/InsertListCommandTest.cpp", | 252 "commands/InsertListCommandTest.cpp", |
| 251 "commands/ReplaceSelectionCommandTest.cpp", | 253 "commands/ReplaceSelectionCommandTest.cpp", |
| 254 "commands/SetCharacterDataCommandTest.cpp", |
| 252 "commands/TypingCommandTest.cpp", | 255 "commands/TypingCommandTest.cpp", |
| 253 "iterators/BackwardsTextBufferTest.cpp", | 256 "iterators/BackwardsTextBufferTest.cpp", |
| 254 "iterators/CharacterIteratorTest.cpp", | 257 "iterators/CharacterIteratorTest.cpp", |
| 255 "iterators/ForwardsTextBufferTest.cpp", | 258 "iterators/ForwardsTextBufferTest.cpp", |
| 256 "iterators/SearchBufferTest.cpp", | 259 "iterators/SearchBufferTest.cpp", |
| 257 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 260 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 258 "iterators/TextIteratorTest.cpp", | 261 "iterators/TextIteratorTest.cpp", |
| 259 "iterators/TextSearcherICUTest.cpp", | 262 "iterators/TextSearcherICUTest.cpp", |
| 260 "markers/DocumentMarkerControllerTest.cpp", | 263 "markers/DocumentMarkerControllerTest.cpp", |
| 261 "serializers/StyledMarkupSerializerTest.cpp", | 264 "serializers/StyledMarkupSerializerTest.cpp", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 274 "//third_party/WebKit/Source:config", | 277 "//third_party/WebKit/Source:config", |
| 275 "//third_party/WebKit/Source:inside_blink", | 278 "//third_party/WebKit/Source:inside_blink", |
| 276 ] | 279 ] |
| 277 | 280 |
| 278 deps = [ | 281 deps = [ |
| 279 "//testing/gmock", | 282 "//testing/gmock", |
| 280 "//testing/gtest", | 283 "//testing/gtest", |
| 281 "//third_party/WebKit/Source/core:core", | 284 "//third_party/WebKit/Source/core:core", |
| 282 ] | 285 ] |
| 283 } | 286 } |
| OLD | NEW |