| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "iterators/TextBufferBase.h", | 161 "iterators/TextBufferBase.h", |
| 162 "iterators/TextIterator.cpp", | 162 "iterators/TextIterator.cpp", |
| 163 "iterators/TextIterator.h", | 163 "iterators/TextIterator.h", |
| 164 "iterators/TextIteratorBehavior.cpp", | 164 "iterators/TextIteratorBehavior.cpp", |
| 165 "iterators/TextIteratorBehavior.h", | 165 "iterators/TextIteratorBehavior.h", |
| 166 "iterators/TextIteratorTextState.cpp", | 166 "iterators/TextIteratorTextState.cpp", |
| 167 "iterators/TextIteratorTextState.h", | 167 "iterators/TextIteratorTextState.h", |
| 168 "iterators/TextSearcherICU.cpp", | 168 "iterators/TextSearcherICU.cpp", |
| 169 "iterators/TextSearcherICU.h", | 169 "iterators/TextSearcherICU.h", |
| 170 "iterators/WordAwareIterator.cpp", | 170 "iterators/WordAwareIterator.cpp", |
| 171 "markers/CompositionMarkerList.cpp", |
| 172 "markers/CompositionMarkerList.h", |
| 171 "markers/DocumentMarker.cpp", | 173 "markers/DocumentMarker.cpp", |
| 172 "markers/DocumentMarker.h", | 174 "markers/DocumentMarker.h", |
| 173 "markers/DocumentMarkerController.cpp", | 175 "markers/DocumentMarkerController.cpp", |
| 174 "markers/DocumentMarkerController.h", | 176 "markers/DocumentMarkerController.h", |
| 175 "markers/RenderedDocumentMarker.h", | 177 "markers/DocumentMarkerList.cpp", |
| 178 "markers/DocumentMarkerList.h", |
| 179 "markers/EditingMarkerList.cpp", |
| 180 "markers/EditingMarkerList.h", |
| 181 "markers/EditingMarkerListThatMergesTouchingMarkers.cpp", |
| 182 "markers/EditingMarkerListThatMergesTouchingMarkers.h", |
| 183 "markers/GrammarMarkerList.cpp", |
| 184 "markers/GrammarMarkerList.h", |
| 185 "markers/RenderedTextMatchMarker.cpp", |
| 186 "markers/RenderedTextMatchMarker.h", |
| 187 "markers/SpellingMarkerList.cpp", |
| 188 "markers/SpellingMarkerList.h", |
| 189 "markers/TextMatchMarker.h", |
| 190 "markers/TextMatchMarkerList.cpp", |
| 191 "markers/TextMatchMarkerList.h", |
| 176 "serializers/HTMLInterchange.cpp", | 192 "serializers/HTMLInterchange.cpp", |
| 177 "serializers/HTMLInterchange.h", | 193 "serializers/HTMLInterchange.h", |
| 178 "serializers/MarkupAccumulator.cpp", | 194 "serializers/MarkupAccumulator.cpp", |
| 179 "serializers/MarkupAccumulator.h", | 195 "serializers/MarkupAccumulator.h", |
| 180 "serializers/MarkupFormatter.cpp", | 196 "serializers/MarkupFormatter.cpp", |
| 181 "serializers/MarkupFormatter.h", | 197 "serializers/MarkupFormatter.h", |
| 182 "serializers/Serialization.cpp", | 198 "serializers/Serialization.cpp", |
| 183 "serializers/Serialization.h", | 199 "serializers/Serialization.h", |
| 184 "serializers/StyledMarkupAccumulator.cpp", | 200 "serializers/StyledMarkupAccumulator.cpp", |
| 185 "serializers/StyledMarkupAccumulator.h", | 201 "serializers/StyledMarkupAccumulator.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "//third_party/WebKit/Source:config", | 296 "//third_party/WebKit/Source:config", |
| 281 "//third_party/WebKit/Source:inside_blink", | 297 "//third_party/WebKit/Source:inside_blink", |
| 282 ] | 298 ] |
| 283 | 299 |
| 284 deps = [ | 300 deps = [ |
| 285 "//testing/gmock", | 301 "//testing/gmock", |
| 286 "//testing/gtest", | 302 "//testing/gtest", |
| 287 "//third_party/WebKit/Source/core:core", | 303 "//third_party/WebKit/Source/core:core", |
| 288 ] | 304 ] |
| 289 } | 305 } |
| OLD | NEW |