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

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

Issue 2773883003: Add CompositionMarkerList in preparation for DocumentMarkerController refactor (Closed)
Patch Set: Make requested changes, refactor tests Created 3 years, 8 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "iterators/TextIterator.cpp", 179 "iterators/TextIterator.cpp",
180 "iterators/TextIterator.h", 180 "iterators/TextIterator.h",
181 "iterators/TextIteratorBehavior.cpp", 181 "iterators/TextIteratorBehavior.cpp",
182 "iterators/TextIteratorBehavior.h", 182 "iterators/TextIteratorBehavior.h",
183 "iterators/TextIteratorTextState.cpp", 183 "iterators/TextIteratorTextState.cpp",
184 "iterators/TextIteratorTextState.h", 184 "iterators/TextIteratorTextState.h",
185 "iterators/TextSearcherICU.cpp", 185 "iterators/TextSearcherICU.cpp",
186 "iterators/TextSearcherICU.h", 186 "iterators/TextSearcherICU.h",
187 "iterators/WordAwareIterator.cpp", 187 "iterators/WordAwareIterator.cpp",
188 "iterators/WordAwareIterator.h", 188 "iterators/WordAwareIterator.h",
189 "markers/CompositionMarkerList.cpp",
190 "markers/CompositionMarkerList.h",
189 "markers/DocumentMarker.cpp", 191 "markers/DocumentMarker.cpp",
190 "markers/DocumentMarker.h", 192 "markers/DocumentMarker.h",
191 "markers/DocumentMarkerController.cpp", 193 "markers/DocumentMarkerController.cpp",
192 "markers/DocumentMarkerController.h", 194 "markers/DocumentMarkerController.h",
195 "markers/DocumentMarkerList.cpp",
196 "markers/DocumentMarkerList.h",
197 "markers/EditingMarkerList.cpp",
198 "markers/EditingMarkerList.h",
193 "markers/RenderedDocumentMarker.h", 199 "markers/RenderedDocumentMarker.h",
194 "serializers/HTMLInterchange.cpp", 200 "serializers/HTMLInterchange.cpp",
195 "serializers/HTMLInterchange.h", 201 "serializers/HTMLInterchange.h",
196 "serializers/MarkupAccumulator.cpp", 202 "serializers/MarkupAccumulator.cpp",
197 "serializers/MarkupAccumulator.h", 203 "serializers/MarkupAccumulator.h",
198 "serializers/MarkupFormatter.cpp", 204 "serializers/MarkupFormatter.cpp",
199 "serializers/MarkupFormatter.h", 205 "serializers/MarkupFormatter.h",
200 "serializers/Serialization.cpp", 206 "serializers/Serialization.cpp",
201 "serializers/Serialization.h", 207 "serializers/Serialization.h",
202 "serializers/StyledMarkupAccumulator.cpp", 208 "serializers/StyledMarkupAccumulator.cpp",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "commands/SetCharacterDataCommandTest.cpp", 283 "commands/SetCharacterDataCommandTest.cpp",
278 "commands/TypingCommandTest.cpp", 284 "commands/TypingCommandTest.cpp",
279 "iterators/BackwardsTextBufferTest.cpp", 285 "iterators/BackwardsTextBufferTest.cpp",
280 "iterators/CharacterIteratorTest.cpp", 286 "iterators/CharacterIteratorTest.cpp",
281 "iterators/ForwardsTextBufferTest.cpp", 287 "iterators/ForwardsTextBufferTest.cpp",
282 "iterators/SearchBufferTest.cpp", 288 "iterators/SearchBufferTest.cpp",
283 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 289 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
284 "iterators/TextIteratorTest.cpp", 290 "iterators/TextIteratorTest.cpp",
285 "iterators/TextSearcherICUTest.cpp", 291 "iterators/TextSearcherICUTest.cpp",
286 "markers/DocumentMarkerControllerTest.cpp", 292 "markers/DocumentMarkerControllerTest.cpp",
293 "markers/DocumentMarkerListTest.cpp",
287 "markers/DocumentMarkerTest.cpp", 294 "markers/DocumentMarkerTest.cpp",
295 "markers/EditingMarkerListTest.cpp",
288 "serializers/StyledMarkupSerializerTest.cpp", 296 "serializers/StyledMarkupSerializerTest.cpp",
289 "spellcheck/IdleSpellCheckCallbackTest.cpp", 297 "spellcheck/IdleSpellCheckCallbackTest.cpp",
290 "spellcheck/SpellCheckTestBase.cpp", 298 "spellcheck/SpellCheckTestBase.cpp",
291 "spellcheck/SpellCheckTestBase.h", 299 "spellcheck/SpellCheckTestBase.h",
292 "spellcheck/SpellCheckerTest.cpp", 300 "spellcheck/SpellCheckerTest.cpp",
293 "state_machines/BackspaceStateMachineTest.cpp", 301 "state_machines/BackspaceStateMachineTest.cpp",
294 "state_machines/BackwardCodePointStateMachineTest.cpp", 302 "state_machines/BackwardCodePointStateMachineTest.cpp",
295 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 303 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
296 "state_machines/ForwardCodePointStateMachineTest.cpp", 304 "state_machines/ForwardCodePointStateMachineTest.cpp",
297 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 305 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
298 "state_machines/StateMachineTestUtil.cpp", 306 "state_machines/StateMachineTestUtil.cpp",
299 "state_machines/StateMachineTestUtil.h", 307 "state_machines/StateMachineTestUtil.h",
300 "state_machines/StateMachineUtilTest.cpp", 308 "state_machines/StateMachineUtilTest.cpp",
301 ] 309 ]
302 310
303 configs += [ 311 configs += [
304 "//third_party/WebKit/Source/core:blink_core_pch", 312 "//third_party/WebKit/Source/core:blink_core_pch",
305 "//third_party/WebKit/Source:config", 313 "//third_party/WebKit/Source:config",
306 "//third_party/WebKit/Source:inside_blink", 314 "//third_party/WebKit/Source:inside_blink",
307 ] 315 ]
308 316
309 deps = [ 317 deps = [
310 "//testing/gmock", 318 "//testing/gmock",
311 "//testing/gtest", 319 "//testing/gtest",
312 "//third_party/WebKit/Source/core:core", 320 "//third_party/WebKit/Source/core:core",
313 ] 321 ]
314 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698