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

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

Issue 2829543002: [DMC #5] Add SpellCheckMarkerListImpl (Closed)
Patch Set: Don't update DocumentMarkerControllerTest in this CL Created 3 years, 7 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "markers/DocumentMarker.h", 197 "markers/DocumentMarker.h",
198 "markers/DocumentMarkerController.cpp", 198 "markers/DocumentMarkerController.cpp",
199 "markers/DocumentMarkerController.h", 199 "markers/DocumentMarkerController.h",
200 "markers/DocumentMarkerList.cpp", 200 "markers/DocumentMarkerList.cpp",
201 "markers/DocumentMarkerList.h", 201 "markers/DocumentMarkerList.h",
202 "markers/DocumentMarkerListEditor.cpp", 202 "markers/DocumentMarkerListEditor.cpp",
203 "markers/DocumentMarkerListEditor.h", 203 "markers/DocumentMarkerListEditor.h",
204 "markers/GenericDocumentMarkerListImpl.cpp", 204 "markers/GenericDocumentMarkerListImpl.cpp",
205 "markers/GenericDocumentMarkerListImpl.h", 205 "markers/GenericDocumentMarkerListImpl.h",
206 "markers/RenderedDocumentMarker.h", 206 "markers/RenderedDocumentMarker.h",
207 "markers/SpellCheckMarkerListImpl.cpp",
208 "markers/SpellCheckMarkerListImpl.h",
207 "serializers/HTMLInterchange.cpp", 209 "serializers/HTMLInterchange.cpp",
208 "serializers/HTMLInterchange.h", 210 "serializers/HTMLInterchange.h",
209 "serializers/MarkupAccumulator.cpp", 211 "serializers/MarkupAccumulator.cpp",
210 "serializers/MarkupAccumulator.h", 212 "serializers/MarkupAccumulator.h",
211 "serializers/MarkupFormatter.cpp", 213 "serializers/MarkupFormatter.cpp",
212 "serializers/MarkupFormatter.h", 214 "serializers/MarkupFormatter.h",
213 "serializers/Serialization.cpp", 215 "serializers/Serialization.cpp",
214 "serializers/Serialization.h", 216 "serializers/Serialization.h",
215 "serializers/StyledMarkupAccumulator.cpp", 217 "serializers/StyledMarkupAccumulator.cpp",
216 "serializers/StyledMarkupAccumulator.h", 218 "serializers/StyledMarkupAccumulator.h",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 "iterators/BackwardsTextBufferTest.cpp", 296 "iterators/BackwardsTextBufferTest.cpp",
295 "iterators/CharacterIteratorTest.cpp", 297 "iterators/CharacterIteratorTest.cpp",
296 "iterators/ForwardsTextBufferTest.cpp", 298 "iterators/ForwardsTextBufferTest.cpp",
297 "iterators/SearchBufferTest.cpp", 299 "iterators/SearchBufferTest.cpp",
298 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 300 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
299 "iterators/TextIteratorTest.cpp", 301 "iterators/TextIteratorTest.cpp",
300 "iterators/TextSearcherICUTest.cpp", 302 "iterators/TextSearcherICUTest.cpp",
301 "markers/CompositionMarkerListImplTest.cpp", 303 "markers/CompositionMarkerListImplTest.cpp",
302 "markers/DocumentMarkerControllerTest.cpp", 304 "markers/DocumentMarkerControllerTest.cpp",
303 "markers/DocumentMarkerTest.cpp", 305 "markers/DocumentMarkerTest.cpp",
306 "markers/SpellCheckMarkerListImplTest.cpp",
304 "serializers/StyledMarkupSerializerTest.cpp", 307 "serializers/StyledMarkupSerializerTest.cpp",
305 "spellcheck/IdleSpellCheckCallbackTest.cpp", 308 "spellcheck/IdleSpellCheckCallbackTest.cpp",
306 "spellcheck/SpellCheckTestBase.cpp", 309 "spellcheck/SpellCheckTestBase.cpp",
307 "spellcheck/SpellCheckTestBase.h", 310 "spellcheck/SpellCheckTestBase.h",
308 "spellcheck/SpellCheckerTest.cpp", 311 "spellcheck/SpellCheckerTest.cpp",
309 "state_machines/BackspaceStateMachineTest.cpp", 312 "state_machines/BackspaceStateMachineTest.cpp",
310 "state_machines/BackwardCodePointStateMachineTest.cpp", 313 "state_machines/BackwardCodePointStateMachineTest.cpp",
311 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 314 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
312 "state_machines/ForwardCodePointStateMachineTest.cpp", 315 "state_machines/ForwardCodePointStateMachineTest.cpp",
313 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 316 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
314 "state_machines/StateMachineTestUtil.cpp", 317 "state_machines/StateMachineTestUtil.cpp",
315 "state_machines/StateMachineTestUtil.h", 318 "state_machines/StateMachineTestUtil.h",
316 "state_machines/StateMachineUtilTest.cpp", 319 "state_machines/StateMachineUtilTest.cpp",
317 ] 320 ]
318 321
319 configs += [ 322 configs += [
320 "//third_party/WebKit/Source/core:blink_core_pch", 323 "//third_party/WebKit/Source/core:blink_core_pch",
321 "//third_party/WebKit/Source:config", 324 "//third_party/WebKit/Source:config",
322 "//third_party/WebKit/Source:inside_blink", 325 "//third_party/WebKit/Source:inside_blink",
323 ] 326 ]
324 327
325 deps = [ 328 deps = [
326 "//testing/gmock", 329 "//testing/gmock",
327 "//testing/gtest", 330 "//testing/gtest",
328 "//third_party/WebKit/Source/core:core", 331 "//third_party/WebKit/Source/core:core",
329 ] 332 ]
330 } 333 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698