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

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

Issue 2868413002: [DMC #5.55] Add DocumentMarkerList::MarkerType() (Closed)
Patch Set: Fix mistake in comment 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 "markers/DocumentMarker.cpp", 196 "markers/DocumentMarker.cpp",
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/GrammarMarkerListImpl.cpp",
207 "markers/GrammarMarkerListImpl.h",
206 "markers/RenderedDocumentMarker.h", 208 "markers/RenderedDocumentMarker.h",
207 "markers/SpellCheckMarkerListImpl.cpp", 209 "markers/SpellCheckMarkerListImpl.cpp",
208 "markers/SpellCheckMarkerListImpl.h", 210 "markers/SpellCheckMarkerListImpl.h",
211 "markers/SpellingMarkerListImpl.cpp",
212 "markers/SpellingMarkerListImpl.h",
209 "serializers/HTMLInterchange.cpp", 213 "serializers/HTMLInterchange.cpp",
210 "serializers/HTMLInterchange.h", 214 "serializers/HTMLInterchange.h",
211 "serializers/MarkupAccumulator.cpp", 215 "serializers/MarkupAccumulator.cpp",
212 "serializers/MarkupAccumulator.h", 216 "serializers/MarkupAccumulator.h",
213 "serializers/MarkupFormatter.cpp", 217 "serializers/MarkupFormatter.cpp",
214 "serializers/MarkupFormatter.h", 218 "serializers/MarkupFormatter.h",
215 "serializers/Serialization.cpp", 219 "serializers/Serialization.cpp",
216 "serializers/Serialization.h", 220 "serializers/Serialization.h",
217 "serializers/StyledMarkupAccumulator.cpp", 221 "serializers/StyledMarkupAccumulator.cpp",
218 "serializers/StyledMarkupAccumulator.h", 222 "serializers/StyledMarkupAccumulator.h",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 "iterators/BackwardsTextBufferTest.cpp", 301 "iterators/BackwardsTextBufferTest.cpp",
298 "iterators/CharacterIteratorTest.cpp", 302 "iterators/CharacterIteratorTest.cpp",
299 "iterators/ForwardsTextBufferTest.cpp", 303 "iterators/ForwardsTextBufferTest.cpp",
300 "iterators/SearchBufferTest.cpp", 304 "iterators/SearchBufferTest.cpp",
301 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 305 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
302 "iterators/TextIteratorTest.cpp", 306 "iterators/TextIteratorTest.cpp",
303 "iterators/TextSearcherICUTest.cpp", 307 "iterators/TextSearcherICUTest.cpp",
304 "markers/CompositionMarkerListImplTest.cpp", 308 "markers/CompositionMarkerListImplTest.cpp",
305 "markers/DocumentMarkerControllerTest.cpp", 309 "markers/DocumentMarkerControllerTest.cpp",
306 "markers/DocumentMarkerTest.cpp", 310 "markers/DocumentMarkerTest.cpp",
307 "markers/SpellCheckMarkerListImplTest.cpp", 311 "markers/GrammarMarkerListImplTest.cpp",
312 "markers/SpellingMarkerListImplTest.cpp",
308 "serializers/StyledMarkupSerializerTest.cpp", 313 "serializers/StyledMarkupSerializerTest.cpp",
309 "spellcheck/IdleSpellCheckCallbackTest.cpp", 314 "spellcheck/IdleSpellCheckCallbackTest.cpp",
310 "spellcheck/SpellCheckTestBase.cpp", 315 "spellcheck/SpellCheckTestBase.cpp",
311 "spellcheck/SpellCheckTestBase.h", 316 "spellcheck/SpellCheckTestBase.h",
312 "spellcheck/SpellCheckerTest.cpp", 317 "spellcheck/SpellCheckerTest.cpp",
313 "state_machines/BackspaceStateMachineTest.cpp", 318 "state_machines/BackspaceStateMachineTest.cpp",
314 "state_machines/BackwardCodePointStateMachineTest.cpp", 319 "state_machines/BackwardCodePointStateMachineTest.cpp",
315 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 320 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
316 "state_machines/ForwardCodePointStateMachineTest.cpp", 321 "state_machines/ForwardCodePointStateMachineTest.cpp",
317 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 322 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
318 "state_machines/StateMachineTestUtil.cpp", 323 "state_machines/StateMachineTestUtil.cpp",
319 "state_machines/StateMachineTestUtil.h", 324 "state_machines/StateMachineTestUtil.h",
320 "state_machines/StateMachineUtilTest.cpp", 325 "state_machines/StateMachineUtilTest.cpp",
321 ] 326 ]
322 327
323 configs += [ 328 configs += [
324 "//third_party/WebKit/Source/core:blink_core_pch", 329 "//third_party/WebKit/Source/core:blink_core_pch",
325 "//third_party/WebKit/Source:config", 330 "//third_party/WebKit/Source:config",
326 "//third_party/WebKit/Source:inside_blink", 331 "//third_party/WebKit/Source:inside_blink",
327 ] 332 ]
328 333
329 deps = [ 334 deps = [
330 "//testing/gmock", 335 "//testing/gmock",
331 "//testing/gtest", 336 "//testing/gtest",
332 "//third_party/WebKit/Source/core:core", 337 "//third_party/WebKit/Source/core:core",
333 ] 338 ]
334 } 339 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698