| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "ClipboardEventFlowTest.cpp", | 227 "ClipboardEventFlowTest.cpp", |
| 228 "CompositionUnderlineTest.cpp", | 228 "CompositionUnderlineTest.cpp", |
| 229 "EditingCommandTest.cpp", | 229 "EditingCommandTest.cpp", |
| 230 "EditingStrategyTest.cpp", | 230 "EditingStrategyTest.cpp", |
| 231 "EditingStyleTest.cpp", | 231 "EditingStyleTest.cpp", |
| 232 "EditingTestBase.cpp", | 232 "EditingTestBase.cpp", |
| 233 "EditingTestBase.h", | 233 "EditingTestBase.h", |
| 234 "EditingUtilitiesTest.cpp", | 234 "EditingUtilitiesTest.cpp", |
| 235 "EditorTest.cpp", | 235 "EditorTest.cpp", |
| 236 "EphemeralRangeTest.cpp", | 236 "EphemeralRangeTest.cpp", |
| 237 "FrameCaretTest.cpp", |
| 237 "FrameSelectionTest.cpp", | 238 "FrameSelectionTest.cpp", |
| 238 "GranularityStrategyTest.cpp", | 239 "GranularityStrategyTest.cpp", |
| 239 "InputMethodControllerTest.cpp", | 240 "InputMethodControllerTest.cpp", |
| 240 "PositionTest.cpp", | 241 "PositionTest.cpp", |
| 241 "RelocatablePositionTest.cpp", | 242 "RelocatablePositionTest.cpp", |
| 242 "SelectionControllerTest.cpp", | 243 "SelectionControllerTest.cpp", |
| 243 "SelectionTemplateTest.cpp", | 244 "SelectionTemplateTest.cpp", |
| 244 "SurroundingTextTest.cpp", | 245 "SurroundingTextTest.cpp", |
| 245 "VisiblePositionTest.cpp", | 246 "VisiblePositionTest.cpp", |
| 246 "VisibleSelectionTest.cpp", | 247 "VisibleSelectionTest.cpp", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "//third_party/WebKit/Source:config", | 281 "//third_party/WebKit/Source:config", |
| 281 "//third_party/WebKit/Source:inside_blink", | 282 "//third_party/WebKit/Source:inside_blink", |
| 282 ] | 283 ] |
| 283 | 284 |
| 284 deps = [ | 285 deps = [ |
| 285 "//testing/gmock", | 286 "//testing/gmock", |
| 286 "//testing/gtest", | 287 "//testing/gtest", |
| 287 "//third_party/WebKit/Source/core:core", | 288 "//third_party/WebKit/Source/core:core", |
| 288 ] | 289 ] |
| 289 } | 290 } |
| OLD | NEW |