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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "commands/InsertListCommand.cpp", | 96 "commands/InsertListCommand.cpp", |
97 "commands/InsertListCommand.h", | 97 "commands/InsertListCommand.h", |
98 "commands/InsertNodeBeforeCommand.cpp", | 98 "commands/InsertNodeBeforeCommand.cpp", |
99 "commands/InsertNodeBeforeCommand.h", | 99 "commands/InsertNodeBeforeCommand.h", |
100 "commands/InsertParagraphSeparatorCommand.cpp", | 100 "commands/InsertParagraphSeparatorCommand.cpp", |
101 "commands/InsertParagraphSeparatorCommand.h", | 101 "commands/InsertParagraphSeparatorCommand.h", |
102 "commands/InsertTextCommand.cpp", | 102 "commands/InsertTextCommand.cpp", |
103 "commands/InsertTextCommand.h", | 103 "commands/InsertTextCommand.h", |
104 "commands/MergeIdenticalElementsCommand.cpp", | 104 "commands/MergeIdenticalElementsCommand.cpp", |
105 "commands/MergeIdenticalElementsCommand.h", | 105 "commands/MergeIdenticalElementsCommand.h", |
106 "commands/MoveSelectionCommand.cpp", | |
107 "commands/MoveSelectionCommand.h", | |
108 "commands/RemoveCSSPropertyCommand.cpp", | 106 "commands/RemoveCSSPropertyCommand.cpp", |
109 "commands/RemoveCSSPropertyCommand.h", | 107 "commands/RemoveCSSPropertyCommand.h", |
110 "commands/RemoveFormatCommand.cpp", | 108 "commands/RemoveFormatCommand.cpp", |
111 "commands/RemoveFormatCommand.h", | 109 "commands/RemoveFormatCommand.h", |
112 "commands/RemoveNodeCommand.cpp", | 110 "commands/RemoveNodeCommand.cpp", |
113 "commands/RemoveNodeCommand.h", | 111 "commands/RemoveNodeCommand.h", |
114 "commands/RemoveNodePreservingChildrenCommand.cpp", | 112 "commands/RemoveNodePreservingChildrenCommand.cpp", |
115 "commands/RemoveNodePreservingChildrenCommand.h", | 113 "commands/RemoveNodePreservingChildrenCommand.h", |
116 "commands/ReplaceNodeWithSpanCommand.cpp", | 114 "commands/ReplaceNodeWithSpanCommand.cpp", |
117 "commands/ReplaceNodeWithSpanCommand.h", | 115 "commands/ReplaceNodeWithSpanCommand.h", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 193 |
196 if (is_mac) { | 194 if (is_mac) { |
197 sources += [ "commands/SmartReplaceCF.cpp" ] | 195 sources += [ "commands/SmartReplaceCF.cpp" ] |
198 } | 196 } |
199 | 197 |
200 configs += [ | 198 configs += [ |
201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
202 "//build/config/compiler:no_size_t_to_int_warning", | 200 "//build/config/compiler:no_size_t_to_int_warning", |
203 ] | 201 ] |
204 } | 202 } |
OLD | NEW |