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

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

Issue 2773883003: Add CompositionMarkerList in preparation for DocumentMarkerController refactor (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/CompositionMarkerList.cpp",
190 "markers/CompositionMarkerList.h",
189 "markers/DocumentMarker.cpp", 191 "markers/DocumentMarker.cpp",
190 "markers/DocumentMarker.h", 192 "markers/DocumentMarker.h",
191 "markers/DocumentMarkerController.cpp", 193 "markers/DocumentMarkerController.cpp",
192 "markers/DocumentMarkerController.h", 194 "markers/DocumentMarkerController.h",
193 "markers/DocumentMarkerList.cpp", 195 "markers/DocumentMarkerList.cpp",
194 "markers/DocumentMarkerList.h", 196 "markers/DocumentMarkerList.h",
195 "markers/EditingMarkerList.cpp", 197 "markers/EditingMarkerList.cpp",
196 "markers/EditingMarkerList.h", 198 "markers/EditingMarkerList.h",
197 "markers/RenderedDocumentMarker.h", 199 "markers/RenderedDocumentMarker.h",
198 "serializers/HTMLInterchange.cpp", 200 "serializers/HTMLInterchange.cpp",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 "//third_party/WebKit/Source:config", 313 "//third_party/WebKit/Source:config",
312 "//third_party/WebKit/Source:inside_blink", 314 "//third_party/WebKit/Source:inside_blink",
313 ] 315 ]
314 316
315 deps = [ 317 deps = [
316 "//testing/gmock", 318 "//testing/gmock",
317 "//testing/gtest", 319 "//testing/gtest",
318 "//third_party/WebKit/Source/core:core", 320 "//third_party/WebKit/Source/core:core",
319 ] 321 ]
320 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698