| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "PositionTest.cpp", | 227 "PositionTest.cpp", |
| 228 "RelocatablePositionTest.cpp", | 228 "RelocatablePositionTest.cpp", |
| 229 "SelectionAdjusterTest.cpp", | 229 "SelectionAdjusterTest.cpp", |
| 230 "SelectionControllerTest.cpp", | 230 "SelectionControllerTest.cpp", |
| 231 "SelectionTemplateTest.cpp", | 231 "SelectionTemplateTest.cpp", |
| 232 "SurroundingTextTest.cpp", | 232 "SurroundingTextTest.cpp", |
| 233 "VisiblePositionTest.cpp", | 233 "VisiblePositionTest.cpp", |
| 234 "VisibleSelectionTest.cpp", | 234 "VisibleSelectionTest.cpp", |
| 235 "VisibleUnitsTest.cpp", | 235 "VisibleUnitsTest.cpp", |
| 236 "commands/ApplyBlockElementCommandTest.cpp", | 236 "commands/ApplyBlockElementCommandTest.cpp", |
| 237 "commands/ApplyStyleCommandTest.cpp", |
| 237 "commands/DeleteSelectionCommandTest.cpp", | 238 "commands/DeleteSelectionCommandTest.cpp", |
| 238 "commands/InsertListCommandTest.cpp", | 239 "commands/InsertListCommandTest.cpp", |
| 239 "commands/ReplaceSelectionCommandTest.cpp", | 240 "commands/ReplaceSelectionCommandTest.cpp", |
| 240 "commands/TypingCommandTest.cpp", | 241 "commands/TypingCommandTest.cpp", |
| 241 "iterators/BackwardsTextBufferTest.cpp", | 242 "iterators/BackwardsTextBufferTest.cpp", |
| 242 "iterators/CharacterIteratorTest.cpp", | 243 "iterators/CharacterIteratorTest.cpp", |
| 243 "iterators/ForwardsTextBufferTest.cpp", | 244 "iterators/ForwardsTextBufferTest.cpp", |
| 244 "iterators/SearchBufferTest.cpp", | 245 "iterators/SearchBufferTest.cpp", |
| 245 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", | 246 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", |
| 246 "iterators/TextIteratorTest.cpp", | 247 "iterators/TextIteratorTest.cpp", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 260 "//third_party/WebKit/Source:config", | 261 "//third_party/WebKit/Source:config", |
| 261 "//third_party/WebKit/Source:inside_blink", | 262 "//third_party/WebKit/Source:inside_blink", |
| 262 ] | 263 ] |
| 263 | 264 |
| 264 deps = [ | 265 deps = [ |
| 265 "//testing/gmock", | 266 "//testing/gmock", |
| 266 "//testing/gtest", | 267 "//testing/gtest", |
| 267 "//third_party/WebKit/Source/core:core", | 268 "//third_party/WebKit/Source/core:core", |
| 268 ] | 269 ] |
| 269 } | 270 } |
| OLD | NEW |