| 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 "SelectionModifierWord.cpp", |
| 69 "SelectionStrategy.h", | 70 "SelectionStrategy.h", |
| 70 "SelectionTemplate.cpp", | 71 "SelectionTemplate.cpp", |
| 71 "SelectionTemplate.h", | 72 "SelectionTemplate.h", |
| 72 "SelectionType.h", | 73 "SelectionType.h", |
| 73 "SurroundingText.cpp", | 74 "SurroundingText.cpp", |
| 74 "SurroundingText.h", | 75 "SurroundingText.h", |
| 75 "TextAffinity.cpp", | 76 "TextAffinity.cpp", |
| 76 "TextAffinity.h", | 77 "TextAffinity.h", |
| 77 "TextGranularity.h", | 78 "TextGranularity.h", |
| 78 "VisiblePosition.cpp", | 79 "VisiblePosition.cpp", |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 "//third_party/WebKit/Source:config", | 332 "//third_party/WebKit/Source:config", |
| 332 "//third_party/WebKit/Source:inside_blink", | 333 "//third_party/WebKit/Source:inside_blink", |
| 333 ] | 334 ] |
| 334 | 335 |
| 335 deps = [ | 336 deps = [ |
| 336 "//testing/gmock", | 337 "//testing/gmock", |
| 337 "//testing/gtest", | 338 "//testing/gtest", |
| 338 "//third_party/WebKit/Source/core:core", | 339 "//third_party/WebKit/Source/core:core", |
| 339 ] | 340 ] |
| 340 } | 341 } |
| OLD | NEW |