| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "RenderedPosition.cpp", | 59 "RenderedPosition.cpp", |
| 60 "RenderedPosition.h", | 60 "RenderedPosition.h", |
| 61 "SelectionAdjuster.cpp", | 61 "SelectionAdjuster.cpp", |
| 62 "SelectionAdjuster.h", | 62 "SelectionAdjuster.h", |
| 63 "SelectionController.cpp", | 63 "SelectionController.cpp", |
| 64 "SelectionController.h", | 64 "SelectionController.h", |
| 65 "SelectionEditor.cpp", | 65 "SelectionEditor.cpp", |
| 66 "SelectionEditor.h", | 66 "SelectionEditor.h", |
| 67 "SelectionModifier.cpp", | 67 "SelectionModifier.cpp", |
| 68 "SelectionModifier.h", | 68 "SelectionModifier.h", |
| 69 "SelectionModifierCharacter.cpp", |
| 69 "SelectionModifierWord.cpp", | 70 "SelectionModifierWord.cpp", |
| 70 "SelectionStrategy.h", | 71 "SelectionStrategy.h", |
| 71 "SelectionTemplate.cpp", | 72 "SelectionTemplate.cpp", |
| 72 "SelectionTemplate.h", | 73 "SelectionTemplate.h", |
| 73 "SelectionType.h", | 74 "SelectionType.h", |
| 74 "SurroundingText.cpp", | 75 "SurroundingText.cpp", |
| 75 "SurroundingText.h", | 76 "SurroundingText.h", |
| 76 "TextAffinity.cpp", | 77 "TextAffinity.cpp", |
| 77 "TextAffinity.h", | 78 "TextAffinity.h", |
| 78 "TextGranularity.h", | 79 "TextGranularity.h", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "EditorTest.cpp", | 300 "EditorTest.cpp", |
| 300 "EphemeralRangeTest.cpp", | 301 "EphemeralRangeTest.cpp", |
| 301 "FrameCaretTest.cpp", | 302 "FrameCaretTest.cpp", |
| 302 "FrameSelectionTest.cpp", | 303 "FrameSelectionTest.cpp", |
| 303 "GranularityStrategyTest.cpp", | 304 "GranularityStrategyTest.cpp", |
| 304 "InputMethodControllerTest.cpp", | 305 "InputMethodControllerTest.cpp", |
| 305 "PositionIteratorTest.cpp", | 306 "PositionIteratorTest.cpp", |
| 306 "PositionTest.cpp", | 307 "PositionTest.cpp", |
| 307 "RelocatablePositionTest.cpp", | 308 "RelocatablePositionTest.cpp", |
| 308 "SelectionControllerTest.cpp", | 309 "SelectionControllerTest.cpp", |
| 310 "SelectionModifierTest.cpp", |
| 309 "SelectionTemplateTest.cpp", | 311 "SelectionTemplateTest.cpp", |
| 310 "SurroundingTextTest.cpp", | 312 "SurroundingTextTest.cpp", |
| 311 "VisiblePositionTest.cpp", | 313 "VisiblePositionTest.cpp", |
| 312 "VisibleSelectionTest.cpp", | 314 "VisibleSelectionTest.cpp", |
| 313 "VisibleUnitsTest.cpp", | 315 "VisibleUnitsTest.cpp", |
| 314 "commands/ApplyBlockElementCommandTest.cpp", | 316 "commands/ApplyBlockElementCommandTest.cpp", |
| 315 "commands/ApplyStyleCommandTest.cpp", | 317 "commands/ApplyStyleCommandTest.cpp", |
| 316 "commands/CompositeEditCommandTest.cpp", | 318 "commands/CompositeEditCommandTest.cpp", |
| 317 "commands/DeleteSelectionCommandTest.cpp", | 319 "commands/DeleteSelectionCommandTest.cpp", |
| 318 "commands/InsertIncrementalTextCommandTest.cpp", | 320 "commands/InsertIncrementalTextCommandTest.cpp", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//third_party/WebKit/Source:config", | 363 "//third_party/WebKit/Source:config", |
| 362 "//third_party/WebKit/Source:inside_blink", | 364 "//third_party/WebKit/Source:inside_blink", |
| 363 ] | 365 ] |
| 364 | 366 |
| 365 deps = [ | 367 deps = [ |
| 366 "//testing/gmock", | 368 "//testing/gmock", |
| 367 "//testing/gtest", | 369 "//testing/gtest", |
| 368 "//third_party/WebKit/Source/core:core", | 370 "//third_party/WebKit/Source/core:core", |
| 369 ] | 371 ] |
| 370 } | 372 } |
| OLD | NEW |