| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "VisibleUnitsParagraph.cpp", |
| 87 "VisibleUnitsSentence.cpp", |
| 87 "VisibleUnitsWord.cpp", | 88 "VisibleUnitsWord.cpp", |
| 88 "WritingDirection.h", | 89 "WritingDirection.h", |
| 89 "commands/AppendNodeCommand.cpp", | 90 "commands/AppendNodeCommand.cpp", |
| 90 "commands/AppendNodeCommand.h", | 91 "commands/AppendNodeCommand.h", |
| 91 "commands/ApplyBlockElementCommand.cpp", | 92 "commands/ApplyBlockElementCommand.cpp", |
| 92 "commands/ApplyBlockElementCommand.h", | 93 "commands/ApplyBlockElementCommand.h", |
| 93 "commands/ApplyStyleCommand.cpp", | 94 "commands/ApplyStyleCommand.cpp", |
| 94 "commands/ApplyStyleCommand.h", | 95 "commands/ApplyStyleCommand.h", |
| 95 "commands/BreakBlockquoteCommand.cpp", | 96 "commands/BreakBlockquoteCommand.cpp", |
| 96 "commands/BreakBlockquoteCommand.h", | 97 "commands/BreakBlockquoteCommand.h", |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//third_party/WebKit/Source:config", | 362 "//third_party/WebKit/Source:config", |
| 362 "//third_party/WebKit/Source:inside_blink", | 363 "//third_party/WebKit/Source:inside_blink", |
| 363 ] | 364 ] |
| 364 | 365 |
| 365 deps = [ | 366 deps = [ |
| 366 "//testing/gmock", | 367 "//testing/gmock", |
| 367 "//testing/gtest", | 368 "//testing/gtest", |
| 368 "//third_party/WebKit/Source/core:core", | 369 "//third_party/WebKit/Source/core:core", |
| 369 ] | 370 ] |
| 370 } | 371 } |
| OLD | NEW |