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

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

Issue 2770413003: Add SpellCheckMarkerList in preparation for DocumentMarkerController refactor (Closed)
Patch Set: Add DCHECK that markers being inserted are of correct type 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 "markers/CompositionMarkerList.h", 190 "markers/CompositionMarkerList.h",
191 "markers/DocumentMarker.cpp", 191 "markers/DocumentMarker.cpp",
192 "markers/DocumentMarker.h", 192 "markers/DocumentMarker.h",
193 "markers/DocumentMarkerController.cpp", 193 "markers/DocumentMarkerController.cpp",
194 "markers/DocumentMarkerController.h", 194 "markers/DocumentMarkerController.h",
195 "markers/DocumentMarkerList.cpp", 195 "markers/DocumentMarkerList.cpp",
196 "markers/DocumentMarkerList.h", 196 "markers/DocumentMarkerList.h",
197 "markers/EditingMarkerList.cpp", 197 "markers/EditingMarkerList.cpp",
198 "markers/EditingMarkerList.h", 198 "markers/EditingMarkerList.h",
199 "markers/RenderedDocumentMarker.h", 199 "markers/RenderedDocumentMarker.h",
200 "markers/SpellCheckMarkerList.cpp",
201 "markers/SpellCheckMarkerList.h",
200 "serializers/HTMLInterchange.cpp", 202 "serializers/HTMLInterchange.cpp",
201 "serializers/HTMLInterchange.h", 203 "serializers/HTMLInterchange.h",
202 "serializers/MarkupAccumulator.cpp", 204 "serializers/MarkupAccumulator.cpp",
203 "serializers/MarkupAccumulator.h", 205 "serializers/MarkupAccumulator.h",
204 "serializers/MarkupFormatter.cpp", 206 "serializers/MarkupFormatter.cpp",
205 "serializers/MarkupFormatter.h", 207 "serializers/MarkupFormatter.h",
206 "serializers/Serialization.cpp", 208 "serializers/Serialization.cpp",
207 "serializers/Serialization.h", 209 "serializers/Serialization.h",
208 "serializers/StyledMarkupAccumulator.cpp", 210 "serializers/StyledMarkupAccumulator.cpp",
209 "serializers/StyledMarkupAccumulator.h", 211 "serializers/StyledMarkupAccumulator.h",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "iterators/CharacterIteratorTest.cpp", 288 "iterators/CharacterIteratorTest.cpp",
287 "iterators/ForwardsTextBufferTest.cpp", 289 "iterators/ForwardsTextBufferTest.cpp",
288 "iterators/SearchBufferTest.cpp", 290 "iterators/SearchBufferTest.cpp",
289 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 291 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
290 "iterators/TextIteratorTest.cpp", 292 "iterators/TextIteratorTest.cpp",
291 "iterators/TextSearcherICUTest.cpp", 293 "iterators/TextSearcherICUTest.cpp",
292 "markers/DocumentMarkerControllerTest.cpp", 294 "markers/DocumentMarkerControllerTest.cpp",
293 "markers/DocumentMarkerListTest.cpp", 295 "markers/DocumentMarkerListTest.cpp",
294 "markers/DocumentMarkerTest.cpp", 296 "markers/DocumentMarkerTest.cpp",
295 "markers/EditingMarkerListTest.cpp", 297 "markers/EditingMarkerListTest.cpp",
298 "markers/SpellCheckMarkerListTest.cpp",
296 "serializers/StyledMarkupSerializerTest.cpp", 299 "serializers/StyledMarkupSerializerTest.cpp",
297 "spellcheck/IdleSpellCheckCallbackTest.cpp", 300 "spellcheck/IdleSpellCheckCallbackTest.cpp",
298 "spellcheck/SpellCheckTestBase.cpp", 301 "spellcheck/SpellCheckTestBase.cpp",
299 "spellcheck/SpellCheckTestBase.h", 302 "spellcheck/SpellCheckTestBase.h",
300 "spellcheck/SpellCheckerTest.cpp", 303 "spellcheck/SpellCheckerTest.cpp",
301 "state_machines/BackspaceStateMachineTest.cpp", 304 "state_machines/BackspaceStateMachineTest.cpp",
302 "state_machines/BackwardCodePointStateMachineTest.cpp", 305 "state_machines/BackwardCodePointStateMachineTest.cpp",
303 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 306 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
304 "state_machines/ForwardCodePointStateMachineTest.cpp", 307 "state_machines/ForwardCodePointStateMachineTest.cpp",
305 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 308 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
306 "state_machines/StateMachineTestUtil.cpp", 309 "state_machines/StateMachineTestUtil.cpp",
307 "state_machines/StateMachineTestUtil.h", 310 "state_machines/StateMachineTestUtil.h",
308 "state_machines/StateMachineUtilTest.cpp", 311 "state_machines/StateMachineUtilTest.cpp",
309 ] 312 ]
310 313
311 configs += [ 314 configs += [
312 "//third_party/WebKit/Source/core:blink_core_pch", 315 "//third_party/WebKit/Source/core:blink_core_pch",
313 "//third_party/WebKit/Source:config", 316 "//third_party/WebKit/Source:config",
314 "//third_party/WebKit/Source:inside_blink", 317 "//third_party/WebKit/Source:inside_blink",
315 ] 318 ]
316 319
317 deps = [ 320 deps = [
318 "//testing/gmock", 321 "//testing/gmock",
319 "//testing/gtest", 322 "//testing/gtest",
320 "//third_party/WebKit/Source/core:core", 323 "//third_party/WebKit/Source/core:core",
321 ] 324 ]
322 } 325 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698