| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "SelectionEditor.h", | 54 "SelectionEditor.h", |
| 55 "SelectionModifier.cpp", | 55 "SelectionModifier.cpp", |
| 56 "SelectionModifier.h", | 56 "SelectionModifier.h", |
| 57 "SelectionTemplate.cpp", | 57 "SelectionTemplate.cpp", |
| 58 "SelectionTemplate.h", | 58 "SelectionTemplate.h", |
| 59 "SelectionType.h", | 59 "SelectionType.h", |
| 60 "SurroundingText.cpp", | 60 "SurroundingText.cpp", |
| 61 "SurroundingText.h", | 61 "SurroundingText.h", |
| 62 "TextAffinity.cpp", | 62 "TextAffinity.cpp", |
| 63 "TextAffinity.h", | 63 "TextAffinity.h", |
| 64 "TextSuggestionList.cpp", |
| 65 "TextSuggestionList.h", |
| 64 "VisiblePosition.cpp", | 66 "VisiblePosition.cpp", |
| 65 "VisibleSelection.cpp", | 67 "VisibleSelection.cpp", |
| 66 "VisibleUnits.cpp", | 68 "VisibleUnits.cpp", |
| 67 "commands/AppendNodeCommand.cpp", | 69 "commands/AppendNodeCommand.cpp", |
| 68 "commands/AppendNodeCommand.h", | 70 "commands/AppendNodeCommand.h", |
| 69 "commands/ApplyBlockElementCommand.cpp", | 71 "commands/ApplyBlockElementCommand.cpp", |
| 70 "commands/ApplyBlockElementCommand.h", | 72 "commands/ApplyBlockElementCommand.h", |
| 71 "commands/ApplyStyleCommand.cpp", | 73 "commands/ApplyStyleCommand.cpp", |
| 72 "commands/ApplyStyleCommand.h", | 74 "commands/ApplyStyleCommand.h", |
| 73 "commands/BreakBlockquoteCommand.cpp", | 75 "commands/BreakBlockquoteCommand.cpp", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "//third_party/WebKit/Source:config", | 268 "//third_party/WebKit/Source:config", |
| 267 "//third_party/WebKit/Source:inside_blink", | 269 "//third_party/WebKit/Source:inside_blink", |
| 268 ] | 270 ] |
| 269 | 271 |
| 270 deps = [ | 272 deps = [ |
| 271 "//testing/gmock", | 273 "//testing/gmock", |
| 272 "//testing/gtest", | 274 "//testing/gtest", |
| 273 "//third_party/WebKit/Source/core:core", | 275 "//third_party/WebKit/Source/core:core", |
| 274 ] | 276 ] |
| 275 } | 277 } |
| OLD | NEW |