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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "iterators/TextIteratorTextState.cpp", | 184 "iterators/TextIteratorTextState.cpp", |
185 "iterators/TextIteratorTextState.h", | 185 "iterators/TextIteratorTextState.h", |
186 "iterators/TextSearcherICU.cpp", | 186 "iterators/TextSearcherICU.cpp", |
187 "iterators/TextSearcherICU.h", | 187 "iterators/TextSearcherICU.h", |
188 "iterators/WordAwareIterator.cpp", | 188 "iterators/WordAwareIterator.cpp", |
189 "iterators/WordAwareIterator.h", | 189 "iterators/WordAwareIterator.h", |
190 "markers/DocumentMarker.cpp", | 190 "markers/DocumentMarker.cpp", |
191 "markers/DocumentMarker.h", | 191 "markers/DocumentMarker.h", |
192 "markers/DocumentMarkerController.cpp", | 192 "markers/DocumentMarkerController.cpp", |
193 "markers/DocumentMarkerController.h", | 193 "markers/DocumentMarkerController.h", |
| 194 "markers/DocumentMarkerList.cpp", |
| 195 "markers/DocumentMarkerList.h", |
194 "markers/RenderedDocumentMarker.h", | 196 "markers/RenderedDocumentMarker.h", |
195 "serializers/HTMLInterchange.cpp", | 197 "serializers/HTMLInterchange.cpp", |
196 "serializers/HTMLInterchange.h", | 198 "serializers/HTMLInterchange.h", |
197 "serializers/MarkupAccumulator.cpp", | 199 "serializers/MarkupAccumulator.cpp", |
198 "serializers/MarkupAccumulator.h", | 200 "serializers/MarkupAccumulator.h", |
199 "serializers/MarkupFormatter.cpp", | 201 "serializers/MarkupFormatter.cpp", |
200 "serializers/MarkupFormatter.h", | 202 "serializers/MarkupFormatter.h", |
201 "serializers/Serialization.cpp", | 203 "serializers/Serialization.cpp", |
202 "serializers/Serialization.h", | 204 "serializers/Serialization.h", |
203 "serializers/StyledMarkupAccumulator.cpp", | 205 "serializers/StyledMarkupAccumulator.cpp", |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 "//third_party/WebKit/Source:config", | 310 "//third_party/WebKit/Source:config", |
309 "//third_party/WebKit/Source:inside_blink", | 311 "//third_party/WebKit/Source:inside_blink", |
310 ] | 312 ] |
311 | 313 |
312 deps = [ | 314 deps = [ |
313 "//testing/gmock", | 315 "//testing/gmock", |
314 "//testing/gtest", | 316 "//testing/gtest", |
315 "//third_party/WebKit/Source/core:core", | 317 "//third_party/WebKit/Source/core:core", |
316 ] | 318 ] |
317 } | 319 } |
OLD | NEW |