Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: third_party/WebKit/Source/core/editing/BUILD.gn

Issue 2723663002: Refactor DocumentMarkerController (Closed)
Patch Set: Use correct base commit Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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/TextMatchMarkerList.cpp",
190 "markers/TextMatchMarkerList.h",
176 "serializers/HTMLInterchange.cpp", 191 "serializers/HTMLInterchange.cpp",
177 "serializers/HTMLInterchange.h", 192 "serializers/HTMLInterchange.h",
178 "serializers/MarkupAccumulator.cpp", 193 "serializers/MarkupAccumulator.cpp",
179 "serializers/MarkupAccumulator.h", 194 "serializers/MarkupAccumulator.h",
180 "serializers/MarkupFormatter.cpp", 195 "serializers/MarkupFormatter.cpp",
181 "serializers/MarkupFormatter.h", 196 "serializers/MarkupFormatter.h",
182 "serializers/Serialization.cpp", 197 "serializers/Serialization.cpp",
183 "serializers/Serialization.h", 198 "serializers/Serialization.h",
184 "serializers/StyledMarkupAccumulator.cpp", 199 "serializers/StyledMarkupAccumulator.cpp",
185 "serializers/StyledMarkupAccumulator.h", 200 "serializers/StyledMarkupAccumulator.h",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 "//third_party/WebKit/Source:config", 298 "//third_party/WebKit/Source:config",
284 "//third_party/WebKit/Source:inside_blink", 299 "//third_party/WebKit/Source:inside_blink",
285 ] 300 ]
286 301
287 deps = [ 302 deps = [
288 "//testing/gmock", 303 "//testing/gmock",
289 "//testing/gtest", 304 "//testing/gtest",
290 "//third_party/WebKit/Source/core:core", 305 "//third_party/WebKit/Source/core:core",
291 ] 306 ]
292 } 307 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698