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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 "EditingStyleTest.cpp", | 297 "EditingStyleTest.cpp", |
298 "EditingTestBase.cpp", | 298 "EditingTestBase.cpp", |
299 "EditingTestBase.h", | 299 "EditingTestBase.h", |
300 "EditingUtilitiesTest.cpp", | 300 "EditingUtilitiesTest.cpp", |
301 "EditorTest.cpp", | 301 "EditorTest.cpp", |
302 "EphemeralRangeTest.cpp", | 302 "EphemeralRangeTest.cpp", |
303 "FrameCaretTest.cpp", | 303 "FrameCaretTest.cpp", |
304 "FrameSelectionTest.cpp", | 304 "FrameSelectionTest.cpp", |
305 "GranularityStrategyTest.cpp", | 305 "GranularityStrategyTest.cpp", |
306 "InputMethodControllerTest.cpp", | 306 "InputMethodControllerTest.cpp", |
| 307 "LayoutSelectionTest.cpp", |
307 "PositionIteratorTest.cpp", | 308 "PositionIteratorTest.cpp", |
308 "PositionTest.cpp", | 309 "PositionTest.cpp", |
309 "RelocatablePositionTest.cpp", | 310 "RelocatablePositionTest.cpp", |
310 "SelectionControllerTest.cpp", | 311 "SelectionControllerTest.cpp", |
311 "SelectionModifierTest.cpp", | 312 "SelectionModifierTest.cpp", |
312 "SelectionTemplateTest.cpp", | 313 "SelectionTemplateTest.cpp", |
313 "SurroundingTextTest.cpp", | 314 "SurroundingTextTest.cpp", |
314 "VisiblePositionTest.cpp", | 315 "VisiblePositionTest.cpp", |
315 "VisibleSelectionTest.cpp", | 316 "VisibleSelectionTest.cpp", |
316 "VisibleUnitsTest.cpp", | 317 "VisibleUnitsTest.cpp", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 "//third_party/WebKit/Source:config", | 365 "//third_party/WebKit/Source:config", |
365 "//third_party/WebKit/Source:inside_blink", | 366 "//third_party/WebKit/Source:inside_blink", |
366 ] | 367 ] |
367 | 368 |
368 deps = [ | 369 deps = [ |
369 "//testing/gmock", | 370 "//testing/gmock", |
370 "//testing/gtest", | 371 "//testing/gtest", |
371 "//third_party/WebKit/Source/core:core", | 372 "//third_party/WebKit/Source/core:core", |
372 ] | 373 ] |
373 } | 374 } |
OLD | NEW |