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

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

Issue 2820343004: [DMC #4] Add CompositionMarkerListImpl (Closed)
Patch Set: Fix nits 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "iterators/TextIterator.cpp", 184 "iterators/TextIterator.cpp",
185 "iterators/TextIterator.h", 185 "iterators/TextIterator.h",
186 "iterators/TextIteratorBehavior.cpp", 186 "iterators/TextIteratorBehavior.cpp",
187 "iterators/TextIteratorBehavior.h", 187 "iterators/TextIteratorBehavior.h",
188 "iterators/TextIteratorTextState.cpp", 188 "iterators/TextIteratorTextState.cpp",
189 "iterators/TextIteratorTextState.h", 189 "iterators/TextIteratorTextState.h",
190 "iterators/TextSearcherICU.cpp", 190 "iterators/TextSearcherICU.cpp",
191 "iterators/TextSearcherICU.h", 191 "iterators/TextSearcherICU.h",
192 "iterators/WordAwareIterator.cpp", 192 "iterators/WordAwareIterator.cpp",
193 "iterators/WordAwareIterator.h", 193 "iterators/WordAwareIterator.h",
194 "markers/CompositionMarkerListImpl.cpp",
195 "markers/CompositionMarkerListImpl.h",
194 "markers/DocumentMarker.cpp", 196 "markers/DocumentMarker.cpp",
195 "markers/DocumentMarker.h", 197 "markers/DocumentMarker.h",
196 "markers/DocumentMarkerController.cpp", 198 "markers/DocumentMarkerController.cpp",
197 "markers/DocumentMarkerController.h", 199 "markers/DocumentMarkerController.h",
198 "markers/DocumentMarkerList.cpp", 200 "markers/DocumentMarkerList.cpp",
199 "markers/DocumentMarkerList.h", 201 "markers/DocumentMarkerList.h",
200 "markers/DocumentMarkerListEditor.cpp", 202 "markers/DocumentMarkerListEditor.cpp",
201 "markers/DocumentMarkerListEditor.h", 203 "markers/DocumentMarkerListEditor.h",
202 "markers/GenericDocumentMarkerListImpl.cpp", 204 "markers/GenericDocumentMarkerListImpl.cpp",
203 "markers/GenericDocumentMarkerListImpl.h", 205 "markers/GenericDocumentMarkerListImpl.h",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 "commands/SetCharacterDataCommandTest.cpp", 292 "commands/SetCharacterDataCommandTest.cpp",
291 "commands/SplitTextNodeCommandTest.cpp", 293 "commands/SplitTextNodeCommandTest.cpp",
292 "commands/TypingCommandTest.cpp", 294 "commands/TypingCommandTest.cpp",
293 "iterators/BackwardsTextBufferTest.cpp", 295 "iterators/BackwardsTextBufferTest.cpp",
294 "iterators/CharacterIteratorTest.cpp", 296 "iterators/CharacterIteratorTest.cpp",
295 "iterators/ForwardsTextBufferTest.cpp", 297 "iterators/ForwardsTextBufferTest.cpp",
296 "iterators/SearchBufferTest.cpp", 298 "iterators/SearchBufferTest.cpp",
297 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 299 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
298 "iterators/TextIteratorTest.cpp", 300 "iterators/TextIteratorTest.cpp",
299 "iterators/TextSearcherICUTest.cpp", 301 "iterators/TextSearcherICUTest.cpp",
302 "markers/CompositionMarkerListImplTest.cpp",
300 "markers/DocumentMarkerControllerTest.cpp", 303 "markers/DocumentMarkerControllerTest.cpp",
301 "markers/DocumentMarkerTest.cpp", 304 "markers/DocumentMarkerTest.cpp",
302 "serializers/StyledMarkupSerializerTest.cpp", 305 "serializers/StyledMarkupSerializerTest.cpp",
303 "spellcheck/IdleSpellCheckCallbackTest.cpp", 306 "spellcheck/IdleSpellCheckCallbackTest.cpp",
304 "spellcheck/SpellCheckTestBase.cpp", 307 "spellcheck/SpellCheckTestBase.cpp",
305 "spellcheck/SpellCheckTestBase.h", 308 "spellcheck/SpellCheckTestBase.h",
306 "spellcheck/SpellCheckerTest.cpp", 309 "spellcheck/SpellCheckerTest.cpp",
307 "state_machines/BackspaceStateMachineTest.cpp", 310 "state_machines/BackspaceStateMachineTest.cpp",
308 "state_machines/BackwardCodePointStateMachineTest.cpp", 311 "state_machines/BackwardCodePointStateMachineTest.cpp",
309 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 312 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
310 "state_machines/ForwardCodePointStateMachineTest.cpp", 313 "state_machines/ForwardCodePointStateMachineTest.cpp",
311 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 314 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
312 "state_machines/StateMachineTestUtil.cpp", 315 "state_machines/StateMachineTestUtil.cpp",
313 "state_machines/StateMachineTestUtil.h", 316 "state_machines/StateMachineTestUtil.h",
314 "state_machines/StateMachineUtilTest.cpp", 317 "state_machines/StateMachineUtilTest.cpp",
315 ] 318 ]
316 319
317 configs += [ 320 configs += [
318 "//third_party/WebKit/Source/core:blink_core_pch", 321 "//third_party/WebKit/Source/core:blink_core_pch",
319 "//third_party/WebKit/Source:config", 322 "//third_party/WebKit/Source:config",
320 "//third_party/WebKit/Source:inside_blink", 323 "//third_party/WebKit/Source:inside_blink",
321 ] 324 ]
322 325
323 deps = [ 326 deps = [
324 "//testing/gmock", 327 "//testing/gmock",
325 "//testing/gtest", 328 "//testing/gtest",
326 "//third_party/WebKit/Source/core:core", 329 "//third_party/WebKit/Source/core:core",
327 ] 330 ]
328 } 331 }
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