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

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

Issue 2911723002: [DMC #24] Add SpellingMarker and GrammarMarker (subclasses of DocumentMarker) (Closed)
Patch Set: Add IsSpellCheckMarker() tests Created 3 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/CompositionMarkerListImpl.cpp", 197 "markers/CompositionMarkerListImpl.cpp",
198 "markers/CompositionMarkerListImpl.h", 198 "markers/CompositionMarkerListImpl.h",
199 "markers/DocumentMarker.cpp", 199 "markers/DocumentMarker.cpp",
200 "markers/DocumentMarker.h", 200 "markers/DocumentMarker.h",
201 "markers/DocumentMarkerController.cpp", 201 "markers/DocumentMarkerController.cpp",
202 "markers/DocumentMarkerController.h", 202 "markers/DocumentMarkerController.h",
203 "markers/DocumentMarkerList.cpp", 203 "markers/DocumentMarkerList.cpp",
204 "markers/DocumentMarkerList.h", 204 "markers/DocumentMarkerList.h",
205 "markers/DocumentMarkerListEditor.cpp", 205 "markers/DocumentMarkerListEditor.cpp",
206 "markers/DocumentMarkerListEditor.h", 206 "markers/DocumentMarkerListEditor.h",
207 "markers/GrammarMarker.cpp",
208 "markers/GrammarMarker.h",
207 "markers/GrammarMarkerListImpl.cpp", 209 "markers/GrammarMarkerListImpl.cpp",
208 "markers/GrammarMarkerListImpl.h", 210 "markers/GrammarMarkerListImpl.h",
211 "markers/SpellCheckMarker.cpp",
212 "markers/SpellCheckMarker.h",
209 "markers/SpellCheckMarkerListImpl.cpp", 213 "markers/SpellCheckMarkerListImpl.cpp",
210 "markers/SpellCheckMarkerListImpl.h", 214 "markers/SpellCheckMarkerListImpl.h",
215 "markers/SpellingMarker.cpp",
216 "markers/SpellingMarker.h",
211 "markers/SpellingMarkerListImpl.cpp", 217 "markers/SpellingMarkerListImpl.cpp",
212 "markers/SpellingMarkerListImpl.h", 218 "markers/SpellingMarkerListImpl.h",
213 "markers/TextMatchMarker.h", 219 "markers/TextMatchMarker.h",
214 "markers/TextMatchMarkerListImpl.cpp", 220 "markers/TextMatchMarkerListImpl.cpp",
215 "markers/TextMatchMarkerListImpl.h", 221 "markers/TextMatchMarkerListImpl.h",
216 "serializers/HTMLInterchange.cpp", 222 "serializers/HTMLInterchange.cpp",
217 "serializers/HTMLInterchange.h", 223 "serializers/HTMLInterchange.h",
218 "serializers/MarkupAccumulator.cpp", 224 "serializers/MarkupAccumulator.cpp",
219 "serializers/MarkupAccumulator.h", 225 "serializers/MarkupAccumulator.h",
220 "serializers/MarkupFormatter.cpp", 226 "serializers/MarkupFormatter.cpp",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 "iterators/SearchBufferTest.cpp", 318 "iterators/SearchBufferTest.cpp",
313 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 319 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
314 "iterators/TextIteratorTest.cpp", 320 "iterators/TextIteratorTest.cpp",
315 "iterators/TextSearcherICUTest.cpp", 321 "iterators/TextSearcherICUTest.cpp",
316 "markers/CompositionMarkerListImplTest.cpp", 322 "markers/CompositionMarkerListImplTest.cpp",
317 "markers/CompositionMarkerTest.cpp", 323 "markers/CompositionMarkerTest.cpp",
318 "markers/DocumentMarkerControllerTest.cpp", 324 "markers/DocumentMarkerControllerTest.cpp",
319 "markers/DocumentMarkerListEditorTest.cpp", 325 "markers/DocumentMarkerListEditorTest.cpp",
320 "markers/DocumentMarkerTest.cpp", 326 "markers/DocumentMarkerTest.cpp",
321 "markers/GrammarMarkerListImplTest.cpp", 327 "markers/GrammarMarkerListImplTest.cpp",
328 "markers/GrammarMarkerTest.cpp",
322 "markers/SpellingMarkerListImplTest.cpp", 329 "markers/SpellingMarkerListImplTest.cpp",
330 "markers/SpellingMarkerTest.cpp",
323 "markers/TextMatchMarkerListImplTest.cpp", 331 "markers/TextMatchMarkerListImplTest.cpp",
324 "serializers/StyledMarkupSerializerTest.cpp", 332 "serializers/StyledMarkupSerializerTest.cpp",
325 "spellcheck/IdleSpellCheckCallbackTest.cpp", 333 "spellcheck/IdleSpellCheckCallbackTest.cpp",
326 "spellcheck/SpellCheckTestBase.cpp", 334 "spellcheck/SpellCheckTestBase.cpp",
327 "spellcheck/SpellCheckTestBase.h", 335 "spellcheck/SpellCheckTestBase.h",
328 "spellcheck/SpellCheckerTest.cpp", 336 "spellcheck/SpellCheckerTest.cpp",
329 "state_machines/BackspaceStateMachineTest.cpp", 337 "state_machines/BackspaceStateMachineTest.cpp",
330 "state_machines/BackwardCodePointStateMachineTest.cpp", 338 "state_machines/BackwardCodePointStateMachineTest.cpp",
331 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 339 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
332 "state_machines/ForwardCodePointStateMachineTest.cpp", 340 "state_machines/ForwardCodePointStateMachineTest.cpp",
333 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 341 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
334 "state_machines/StateMachineTestUtil.cpp", 342 "state_machines/StateMachineTestUtil.cpp",
335 "state_machines/StateMachineTestUtil.h", 343 "state_machines/StateMachineTestUtil.h",
336 "state_machines/StateMachineUtilTest.cpp", 344 "state_machines/StateMachineUtilTest.cpp",
337 ] 345 ]
338 346
339 configs += [ 347 configs += [
340 "//third_party/WebKit/Source/core:blink_core_pch", 348 "//third_party/WebKit/Source/core:blink_core_pch",
341 "//third_party/WebKit/Source:config", 349 "//third_party/WebKit/Source:config",
342 "//third_party/WebKit/Source:inside_blink", 350 "//third_party/WebKit/Source:inside_blink",
343 ] 351 ]
344 352
345 deps = [ 353 deps = [
346 "//testing/gmock", 354 "//testing/gmock",
347 "//testing/gtest", 355 "//testing/gtest",
348 "//third_party/WebKit/Source/core:core", 356 "//third_party/WebKit/Source/core:core",
349 ] 357 ]
350 } 358 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698