| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "EditingTestBase.cpp", | 229 "EditingTestBase.cpp", |
| 230 "EditingTestBase.h", | 230 "EditingTestBase.h", |
| 231 "EditingUtilitiesTest.cpp", | 231 "EditingUtilitiesTest.cpp", |
| 232 "EditorTest.cpp", | 232 "EditorTest.cpp", |
| 233 "EphemeralRangeTest.cpp", | 233 "EphemeralRangeTest.cpp", |
| 234 "FrameSelectionTest.cpp", | 234 "FrameSelectionTest.cpp", |
| 235 "GranularityStrategyTest.cpp", | 235 "GranularityStrategyTest.cpp", |
| 236 "InputMethodControllerTest.cpp", | 236 "InputMethodControllerTest.cpp", |
| 237 "PositionTest.cpp", | 237 "PositionTest.cpp", |
| 238 "RelocatablePositionTest.cpp", | 238 "RelocatablePositionTest.cpp", |
| 239 "SelectionAdjusterTest.cpp", | |
| 240 "SelectionControllerTest.cpp", | 239 "SelectionControllerTest.cpp", |
| 241 "SelectionTemplateTest.cpp", | 240 "SelectionTemplateTest.cpp", |
| 242 "SurroundingTextTest.cpp", | 241 "SurroundingTextTest.cpp", |
| 243 "VisiblePositionTest.cpp", | 242 "VisiblePositionTest.cpp", |
| 244 "VisibleSelectionTest.cpp", | 243 "VisibleSelectionTest.cpp", |
| 245 "VisibleUnitsTest.cpp", | 244 "VisibleUnitsTest.cpp", |
| 246 "commands/ApplyBlockElementCommandTest.cpp", | 245 "commands/ApplyBlockElementCommandTest.cpp", |
| 247 "commands/ApplyStyleCommandTest.cpp", | 246 "commands/ApplyStyleCommandTest.cpp", |
| 248 "commands/CompositeEditCommandTest.cpp", | 247 "commands/CompositeEditCommandTest.cpp", |
| 249 "commands/DeleteSelectionCommandTest.cpp", | 248 "commands/DeleteSelectionCommandTest.cpp", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 274 "//third_party/WebKit/Source:config", | 273 "//third_party/WebKit/Source:config", |
| 275 "//third_party/WebKit/Source:inside_blink", | 274 "//third_party/WebKit/Source:inside_blink", |
| 276 ] | 275 ] |
| 277 | 276 |
| 278 deps = [ | 277 deps = [ |
| 279 "//testing/gmock", | 278 "//testing/gmock", |
| 280 "//testing/gtest", | 279 "//testing/gtest", |
| 281 "//third_party/WebKit/Source/core:core", | 280 "//third_party/WebKit/Source/core:core", |
| 282 ] | 281 ] |
| 283 } | 282 } |
| OLD | NEW |