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

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

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

Powered by Google App Engine
This is Rietveld 408576698