| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "commands/DragAndDropCommand.h", | 84 "commands/DragAndDropCommand.h", |
| 85 "commands/EditCommand.cpp", | 85 "commands/EditCommand.cpp", |
| 86 "commands/EditCommand.h", | 86 "commands/EditCommand.h", |
| 87 "commands/EditingState.cpp", | 87 "commands/EditingState.cpp", |
| 88 "commands/EditingState.h", | 88 "commands/EditingState.h", |
| 89 "commands/EditorCommand.cpp", | 89 "commands/EditorCommand.cpp", |
| 90 "commands/FormatBlockCommand.cpp", | 90 "commands/FormatBlockCommand.cpp", |
| 91 "commands/FormatBlockCommand.h", | 91 "commands/FormatBlockCommand.h", |
| 92 "commands/IndentOutdentCommand.cpp", | 92 "commands/IndentOutdentCommand.cpp", |
| 93 "commands/IndentOutdentCommand.h", | 93 "commands/IndentOutdentCommand.h", |
| 94 "commands/InsertIncrementalTextCommand.cpp", |
| 95 "commands/InsertIncrementalTextCommand.h", |
| 94 "commands/InsertIntoTextNodeCommand.cpp", | 96 "commands/InsertIntoTextNodeCommand.cpp", |
| 95 "commands/InsertIntoTextNodeCommand.h", | 97 "commands/InsertIntoTextNodeCommand.h", |
| 96 "commands/InsertLineBreakCommand.cpp", | 98 "commands/InsertLineBreakCommand.cpp", |
| 97 "commands/InsertLineBreakCommand.h", | 99 "commands/InsertLineBreakCommand.h", |
| 98 "commands/InsertListCommand.cpp", | 100 "commands/InsertListCommand.cpp", |
| 99 "commands/InsertListCommand.h", | 101 "commands/InsertListCommand.h", |
| 100 "commands/InsertNodeBeforeCommand.cpp", | 102 "commands/InsertNodeBeforeCommand.cpp", |
| 101 "commands/InsertNodeBeforeCommand.h", | 103 "commands/InsertNodeBeforeCommand.h", |
| 102 "commands/InsertParagraphSeparatorCommand.cpp", | 104 "commands/InsertParagraphSeparatorCommand.cpp", |
| 103 "commands/InsertParagraphSeparatorCommand.h", | 105 "commands/InsertParagraphSeparatorCommand.h", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 199 |
| 198 if (is_mac) { | 200 if (is_mac) { |
| 199 sources += [ "commands/SmartReplaceCF.cpp" ] | 201 sources += [ "commands/SmartReplaceCF.cpp" ] |
| 200 } | 202 } |
| 201 | 203 |
| 202 configs += [ | 204 configs += [ |
| 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 204 "//build/config/compiler:no_size_t_to_int_warning", | 206 "//build/config/compiler:no_size_t_to_int_warning", |
| 205 ] | 207 ] |
| 206 } | 208 } |
| OLD | NEW |