| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "RelocatablePositionTest.cpp", | 229 "RelocatablePositionTest.cpp", |
| 230 "SelectionAdjusterTest.cpp", | 230 "SelectionAdjusterTest.cpp", |
| 231 "SelectionControllerTest.cpp", | 231 "SelectionControllerTest.cpp", |
| 232 "SelectionTemplateTest.cpp", | 232 "SelectionTemplateTest.cpp", |
| 233 "SurroundingTextTest.cpp", | 233 "SurroundingTextTest.cpp", |
| 234 "VisiblePositionTest.cpp", | 234 "VisiblePositionTest.cpp", |
| 235 "VisibleSelectionTest.cpp", | 235 "VisibleSelectionTest.cpp", |
| 236 "VisibleUnitsTest.cpp", | 236 "VisibleUnitsTest.cpp", |
| 237 "commands/ApplyBlockElementCommandTest.cpp", | 237 "commands/ApplyBlockElementCommandTest.cpp", |
| 238 "commands/ApplyStyleCommandTest.cpp", | 238 "commands/ApplyStyleCommandTest.cpp", |
| 239 "commands/CompositeEditCommandTest.cpp", |
| 239 "commands/DeleteSelectionCommandTest.cpp", | 240 "commands/DeleteSelectionCommandTest.cpp", |
| 240 "commands/InsertListCommandTest.cpp", | 241 "commands/InsertListCommandTest.cpp", |
| 241 "commands/ReplaceSelectionCommandTest.cpp", | 242 "commands/ReplaceSelectionCommandTest.cpp", |
| 242 "commands/TypingCommandTest.cpp", | 243 "commands/TypingCommandTest.cpp", |
| 243 "iterators/BackwardsTextBufferTest.cpp", | 244 "iterators/BackwardsTextBufferTest.cpp", |
| 244 "iterators/CharacterIteratorTest.cpp", | 245 "iterators/CharacterIteratorTest.cpp", |
| 245 "iterators/ForwardsTextBufferTest.cpp", | 246 "iterators/ForwardsTextBufferTest.cpp", |
| 246 "iterators/SearchBufferTest.cpp", | 247 "iterators/SearchBufferTest.cpp", |
| 247 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 248 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 248 "iterators/TextIteratorTest.cpp", | 249 "iterators/TextIteratorTest.cpp", |
| (...skipping 13 matching lines...) Expand all 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 |