| 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 "CaretBase.cpp", | 10 "CaretBase.cpp", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "commands/SplitElementCommand.cpp", | 129 "commands/SplitElementCommand.cpp", |
| 130 "commands/SplitElementCommand.h", | 130 "commands/SplitElementCommand.h", |
| 131 "commands/SplitTextNodeCommand.cpp", | 131 "commands/SplitTextNodeCommand.cpp", |
| 132 "commands/SplitTextNodeCommand.h", | 132 "commands/SplitTextNodeCommand.h", |
| 133 "commands/SplitTextNodeContainingElementCommand.cpp", | 133 "commands/SplitTextNodeContainingElementCommand.cpp", |
| 134 "commands/SplitTextNodeContainingElementCommand.h", | 134 "commands/SplitTextNodeContainingElementCommand.h", |
| 135 "commands/TypingCommand.cpp", | 135 "commands/TypingCommand.cpp", |
| 136 "commands/TypingCommand.h", | 136 "commands/TypingCommand.h", |
| 137 "commands/UndoStack.cpp", | 137 "commands/UndoStack.cpp", |
| 138 "commands/UndoStack.h", | 138 "commands/UndoStack.h", |
| 139 "commands/UndoStep.cpp", |
| 139 "commands/UndoStep.h", | 140 "commands/UndoStep.h", |
| 140 "commands/UnlinkCommand.cpp", | 141 "commands/UnlinkCommand.cpp", |
| 141 "commands/UnlinkCommand.h", | 142 "commands/UnlinkCommand.h", |
| 142 "commands/WrapContentsInDummySpanCommand.cpp", | 143 "commands/WrapContentsInDummySpanCommand.cpp", |
| 143 "commands/WrapContentsInDummySpanCommand.h", | 144 "commands/WrapContentsInDummySpanCommand.h", |
| 144 "iterators/BackwardsCharacterIterator.cpp", | 145 "iterators/BackwardsCharacterIterator.cpp", |
| 145 "iterators/BackwardsTextBuffer.cpp", | 146 "iterators/BackwardsTextBuffer.cpp", |
| 146 "iterators/BackwardsTextBuffer.h", | 147 "iterators/BackwardsTextBuffer.h", |
| 147 "iterators/BitStack.cpp", | 148 "iterators/BitStack.cpp", |
| 148 "iterators/CharacterIterator.cpp", | 149 "iterators/CharacterIterator.cpp", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 "//third_party/WebKit/Source:config", | 263 "//third_party/WebKit/Source:config", |
| 263 "//third_party/WebKit/Source:inside_blink", | 264 "//third_party/WebKit/Source:inside_blink", |
| 264 ] | 265 ] |
| 265 | 266 |
| 266 deps = [ | 267 deps = [ |
| 267 "//testing/gmock", | 268 "//testing/gmock", |
| 268 "//testing/gtest", | 269 "//testing/gtest", |
| 269 "//third_party/WebKit/Source/core:core", | 270 "//third_party/WebKit/Source/core:core", |
| 270 ] | 271 ] |
| 271 } | 272 } |
| OLD | NEW |