| 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 "CaretBase.cpp", | 10 "CaretBase.cpp", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "commands/BreakBlockquoteCommand.cpp", | 73 "commands/BreakBlockquoteCommand.cpp", |
| 74 "commands/BreakBlockquoteCommand.h", | 74 "commands/BreakBlockquoteCommand.h", |
| 75 "commands/CompositeEditCommand.cpp", | 75 "commands/CompositeEditCommand.cpp", |
| 76 "commands/CompositeEditCommand.h", | 76 "commands/CompositeEditCommand.h", |
| 77 "commands/CreateLinkCommand.cpp", | 77 "commands/CreateLinkCommand.cpp", |
| 78 "commands/CreateLinkCommand.h", | 78 "commands/CreateLinkCommand.h", |
| 79 "commands/DeleteFromTextNodeCommand.cpp", | 79 "commands/DeleteFromTextNodeCommand.cpp", |
| 80 "commands/DeleteFromTextNodeCommand.h", | 80 "commands/DeleteFromTextNodeCommand.h", |
| 81 "commands/DeleteSelectionCommand.cpp", | 81 "commands/DeleteSelectionCommand.cpp", |
| 82 "commands/DeleteSelectionCommand.h", | 82 "commands/DeleteSelectionCommand.h", |
| 83 "commands/DocumentExecCommand.cpp", |
| 83 "commands/DragAndDropCommand.cpp", | 84 "commands/DragAndDropCommand.cpp", |
| 84 "commands/DragAndDropCommand.h", | 85 "commands/DragAndDropCommand.h", |
| 85 "commands/EditCommand.cpp", | 86 "commands/EditCommand.cpp", |
| 86 "commands/EditCommand.h", | 87 "commands/EditCommand.h", |
| 87 "commands/EditingState.cpp", | 88 "commands/EditingState.cpp", |
| 88 "commands/EditingState.h", | 89 "commands/EditingState.h", |
| 89 "commands/EditorCommand.cpp", | 90 "commands/EditorCommand.cpp", |
| 90 "commands/FormatBlockCommand.cpp", | 91 "commands/FormatBlockCommand.cpp", |
| 91 "commands/FormatBlockCommand.h", | 92 "commands/FormatBlockCommand.h", |
| 92 "commands/IndentOutdentCommand.cpp", | 93 "commands/IndentOutdentCommand.cpp", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "//third_party/WebKit/Source:config", | 262 "//third_party/WebKit/Source:config", |
| 262 "//third_party/WebKit/Source:inside_blink", | 263 "//third_party/WebKit/Source:inside_blink", |
| 263 ] | 264 ] |
| 264 | 265 |
| 265 deps = [ | 266 deps = [ |
| 266 "//testing/gmock", | 267 "//testing/gmock", |
| 267 "//testing/gtest", | 268 "//testing/gtest", |
| 268 "//third_party/WebKit/Source/core:core", | 269 "//third_party/WebKit/Source/core:core", |
| 269 ] | 270 ] |
| 270 } | 271 } |
| OLD | NEW |