| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "PositionTest.cpp", | 223 "PositionTest.cpp", |
| 224 "RelocatablePositionTest.cpp", | 224 "RelocatablePositionTest.cpp", |
| 225 "SelectionAdjusterTest.cpp", | 225 "SelectionAdjusterTest.cpp", |
| 226 "SelectionControllerTest.cpp", | 226 "SelectionControllerTest.cpp", |
| 227 "SelectionTemplateTest.cpp", | 227 "SelectionTemplateTest.cpp", |
| 228 "SurroundingTextTest.cpp", | 228 "SurroundingTextTest.cpp", |
| 229 "VisiblePositionTest.cpp", | 229 "VisiblePositionTest.cpp", |
| 230 "VisibleSelectionTest.cpp", | 230 "VisibleSelectionTest.cpp", |
| 231 "VisibleUnitsTest.cpp", | 231 "VisibleUnitsTest.cpp", |
| 232 "commands/ApplyBlockElementCommandTest.cpp", | 232 "commands/ApplyBlockElementCommandTest.cpp", |
| 233 "commands/DeleteSelectionCommandTest.cpp", |
| 233 "commands/InsertListCommandTest.cpp", | 234 "commands/InsertListCommandTest.cpp", |
| 234 "commands/ReplaceSelectionCommandTest.cpp", | 235 "commands/ReplaceSelectionCommandTest.cpp", |
| 235 "commands/TypingCommandTest.cpp", | 236 "commands/TypingCommandTest.cpp", |
| 236 "iterators/BackwardsTextBufferTest.cpp", | 237 "iterators/BackwardsTextBufferTest.cpp", |
| 237 "iterators/CharacterIteratorTest.cpp", | 238 "iterators/CharacterIteratorTest.cpp", |
| 238 "iterators/ForwardsTextBufferTest.cpp", | 239 "iterators/ForwardsTextBufferTest.cpp", |
| 239 "iterators/SearchBufferTest.cpp", | 240 "iterators/SearchBufferTest.cpp", |
| 240 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 241 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 241 "iterators/TextIteratorTest.cpp", | 242 "iterators/TextIteratorTest.cpp", |
| 242 "iterators/TextSearcherICUTest.cpp", | 243 "iterators/TextSearcherICUTest.cpp", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 255 "//third_party/WebKit/Source:config", | 256 "//third_party/WebKit/Source:config", |
| 256 "//third_party/WebKit/Source:inside_blink", | 257 "//third_party/WebKit/Source:inside_blink", |
| 257 ] | 258 ] |
| 258 | 259 |
| 259 deps = [ | 260 deps = [ |
| 260 "//testing/gmock", | 261 "//testing/gmock", |
| 261 "//testing/gtest", | 262 "//testing/gtest", |
| 262 "//third_party/WebKit/Source/core:core", | 263 "//third_party/WebKit/Source/core:core", |
| 263 ] | 264 ] |
| 264 } | 265 } |
| OLD | NEW |