| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "TextAffinity.cpp", | 76 "TextAffinity.cpp", |
| 77 "TextAffinity.h", | 77 "TextAffinity.h", |
| 78 "TextGranularity.h", | 78 "TextGranularity.h", |
| 79 "VisiblePosition.cpp", | 79 "VisiblePosition.cpp", |
| 80 "VisiblePosition.h", | 80 "VisiblePosition.h", |
| 81 "VisibleSelection.cpp", | 81 "VisibleSelection.cpp", |
| 82 "VisibleSelection.h", | 82 "VisibleSelection.h", |
| 83 "VisibleUnits.cpp", | 83 "VisibleUnits.cpp", |
| 84 "VisibleUnits.h", | 84 "VisibleUnits.h", |
| 85 "VisibleUnitsLine.cpp", | 85 "VisibleUnitsLine.cpp", |
| 86 "VisibleUnitsParagraph.cpp", |
| 86 "WritingDirection.h", | 87 "WritingDirection.h", |
| 87 "commands/AppendNodeCommand.cpp", | 88 "commands/AppendNodeCommand.cpp", |
| 88 "commands/AppendNodeCommand.h", | 89 "commands/AppendNodeCommand.h", |
| 89 "commands/ApplyBlockElementCommand.cpp", | 90 "commands/ApplyBlockElementCommand.cpp", |
| 90 "commands/ApplyBlockElementCommand.h", | 91 "commands/ApplyBlockElementCommand.h", |
| 91 "commands/ApplyStyleCommand.cpp", | 92 "commands/ApplyStyleCommand.cpp", |
| 92 "commands/ApplyStyleCommand.h", | 93 "commands/ApplyStyleCommand.h", |
| 93 "commands/BreakBlockquoteCommand.cpp", | 94 "commands/BreakBlockquoteCommand.cpp", |
| 94 "commands/BreakBlockquoteCommand.h", | 95 "commands/BreakBlockquoteCommand.h", |
| 95 "commands/CompositeEditCommand.cpp", | 96 "commands/CompositeEditCommand.cpp", |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//third_party/WebKit/Source:config", | 352 "//third_party/WebKit/Source:config", |
| 352 "//third_party/WebKit/Source:inside_blink", | 353 "//third_party/WebKit/Source:inside_blink", |
| 353 ] | 354 ] |
| 354 | 355 |
| 355 deps = [ | 356 deps = [ |
| 356 "//testing/gmock", | 357 "//testing/gmock", |
| 357 "//testing/gtest", | 358 "//testing/gtest", |
| 358 "//third_party/WebKit/Source/core:core", | 359 "//third_party/WebKit/Source/core:core", |
| 359 ] | 360 ] |
| 360 } | 361 } |
| OLD | NEW |