| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "commands/BreakBlockquoteCommand.cpp", | 71 "commands/BreakBlockquoteCommand.cpp", |
| 72 "commands/BreakBlockquoteCommand.h", | 72 "commands/BreakBlockquoteCommand.h", |
| 73 "commands/CompositeEditCommand.cpp", | 73 "commands/CompositeEditCommand.cpp", |
| 74 "commands/CompositeEditCommand.h", | 74 "commands/CompositeEditCommand.h", |
| 75 "commands/CreateLinkCommand.cpp", | 75 "commands/CreateLinkCommand.cpp", |
| 76 "commands/CreateLinkCommand.h", | 76 "commands/CreateLinkCommand.h", |
| 77 "commands/DeleteFromTextNodeCommand.cpp", | 77 "commands/DeleteFromTextNodeCommand.cpp", |
| 78 "commands/DeleteFromTextNodeCommand.h", | 78 "commands/DeleteFromTextNodeCommand.h", |
| 79 "commands/DeleteSelectionCommand.cpp", | 79 "commands/DeleteSelectionCommand.cpp", |
| 80 "commands/DeleteSelectionCommand.h", | 80 "commands/DeleteSelectionCommand.h", |
| 81 "commands/DragAndDropCommand.cpp", |
| 82 "commands/DragAndDropCommand.h", |
| 81 "commands/EditCommand.cpp", | 83 "commands/EditCommand.cpp", |
| 82 "commands/EditCommand.h", | 84 "commands/EditCommand.h", |
| 83 "commands/EditingState.cpp", | 85 "commands/EditingState.cpp", |
| 84 "commands/EditingState.h", | 86 "commands/EditingState.h", |
| 85 "commands/EditorCommand.cpp", | 87 "commands/EditorCommand.cpp", |
| 86 "commands/FormatBlockCommand.cpp", | 88 "commands/FormatBlockCommand.cpp", |
| 87 "commands/FormatBlockCommand.h", | 89 "commands/FormatBlockCommand.h", |
| 88 "commands/IndentOutdentCommand.cpp", | 90 "commands/IndentOutdentCommand.cpp", |
| 89 "commands/IndentOutdentCommand.h", | 91 "commands/IndentOutdentCommand.h", |
| 90 "commands/InsertIntoTextNodeCommand.cpp", | 92 "commands/InsertIntoTextNodeCommand.cpp", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 195 |
| 194 if (is_mac) { | 196 if (is_mac) { |
| 195 sources += [ "commands/SmartReplaceCF.cpp" ] | 197 sources += [ "commands/SmartReplaceCF.cpp" ] |
| 196 } | 198 } |
| 197 | 199 |
| 198 configs += [ | 200 configs += [ |
| 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 200 "//build/config/compiler:no_size_t_to_int_warning", | 202 "//build/config/compiler:no_size_t_to_int_warning", |
| 201 ] | 203 ] |
| 202 } | 204 } |
| OLD | NEW |