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

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

Issue 2780313002: [WIP] Refactor DocumentMarker (Closed)
Patch Set: Rebase Created 3 years, 8 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "iterators/TextIterator.cpp", 179 "iterators/TextIterator.cpp",
180 "iterators/TextIterator.h", 180 "iterators/TextIterator.h",
181 "iterators/TextIteratorBehavior.cpp", 181 "iterators/TextIteratorBehavior.cpp",
182 "iterators/TextIteratorBehavior.h", 182 "iterators/TextIteratorBehavior.h",
183 "iterators/TextIteratorTextState.cpp", 183 "iterators/TextIteratorTextState.cpp",
184 "iterators/TextIteratorTextState.h", 184 "iterators/TextIteratorTextState.h",
185 "iterators/TextSearcherICU.cpp", 185 "iterators/TextSearcherICU.cpp",
186 "iterators/TextSearcherICU.h", 186 "iterators/TextSearcherICU.h",
187 "iterators/WordAwareIterator.cpp", 187 "iterators/WordAwareIterator.cpp",
188 "iterators/WordAwareIterator.h", 188 "iterators/WordAwareIterator.h",
189 "markers/CompositionMarker.cpp",
190 "markers/CompositionMarker.h",
189 "markers/CompositionMarkerList.cpp", 191 "markers/CompositionMarkerList.cpp",
190 "markers/CompositionMarkerList.h", 192 "markers/CompositionMarkerList.h",
191 "markers/DocumentMarker.cpp", 193 "markers/DocumentMarker.cpp",
192 "markers/DocumentMarker.h", 194 "markers/DocumentMarker.h",
193 "markers/DocumentMarkerController.cpp", 195 "markers/DocumentMarkerController.cpp",
194 "markers/DocumentMarkerController.h", 196 "markers/DocumentMarkerController.h",
195 "markers/DocumentMarkerList.cpp", 197 "markers/DocumentMarkerList.cpp",
196 "markers/DocumentMarkerList.h", 198 "markers/DocumentMarkerList.h",
197 "markers/EditingMarkerList.cpp", 199 "markers/EditingMarkerList.cpp",
198 "markers/EditingMarkerList.h", 200 "markers/EditingMarkerList.h",
201 "markers/SpellCheckMarker.cpp",
202 "markers/SpellCheckMarker.h",
199 "markers/SpellCheckMarkerList.cpp", 203 "markers/SpellCheckMarkerList.cpp",
200 "markers/SpellCheckMarkerList.h", 204 "markers/SpellCheckMarkerList.h",
201 "markers/TextMatchMarker.cpp", 205 "markers/TextMatchMarker.cpp",
202 "markers/TextMatchMarker.h", 206 "markers/TextMatchMarker.h",
203 "markers/TextMatchMarkerList.cpp", 207 "markers/TextMatchMarkerList.cpp",
204 "markers/TextMatchMarkerList.h", 208 "markers/TextMatchMarkerList.h",
205 "serializers/HTMLInterchange.cpp", 209 "serializers/HTMLInterchange.cpp",
206 "serializers/HTMLInterchange.h", 210 "serializers/HTMLInterchange.h",
207 "serializers/MarkupAccumulator.cpp", 211 "serializers/MarkupAccumulator.cpp",
208 "serializers/MarkupAccumulator.h", 212 "serializers/MarkupAccumulator.h",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "//third_party/WebKit/Source:config", 324 "//third_party/WebKit/Source:config",
321 "//third_party/WebKit/Source:inside_blink", 325 "//third_party/WebKit/Source:inside_blink",
322 ] 326 ]
323 327
324 deps = [ 328 deps = [
325 "//testing/gmock", 329 "//testing/gmock",
326 "//testing/gtest", 330 "//testing/gtest",
327 "//third_party/WebKit/Source/core:core", 331 "//third_party/WebKit/Source/core:core",
328 ] 332 ]
329 } 333 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698