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

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

Issue 2773343003: Add DocumentMarkerList in preparation for DocumentMarkerController refactor (Closed)
Patch Set: Make at() virtual 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/DocumentMarker.cpp", 189 "markers/DocumentMarker.cpp",
190 "markers/DocumentMarker.h", 190 "markers/DocumentMarker.h",
191 "markers/DocumentMarkerController.cpp", 191 "markers/DocumentMarkerController.cpp",
192 "markers/DocumentMarkerController.h", 192 "markers/DocumentMarkerController.h",
193 "markers/DocumentMarkerList.cpp",
194 "markers/DocumentMarkerList.h",
193 "markers/RenderedDocumentMarker.cpp", 195 "markers/RenderedDocumentMarker.cpp",
194 "markers/RenderedDocumentMarker.h", 196 "markers/RenderedDocumentMarker.h",
195 "serializers/HTMLInterchange.cpp", 197 "serializers/HTMLInterchange.cpp",
196 "serializers/HTMLInterchange.h", 198 "serializers/HTMLInterchange.h",
197 "serializers/MarkupAccumulator.cpp", 199 "serializers/MarkupAccumulator.cpp",
198 "serializers/MarkupAccumulator.h", 200 "serializers/MarkupAccumulator.h",
199 "serializers/MarkupFormatter.cpp", 201 "serializers/MarkupFormatter.cpp",
200 "serializers/MarkupFormatter.h", 202 "serializers/MarkupFormatter.h",
201 "serializers/Serialization.cpp", 203 "serializers/Serialization.cpp",
202 "serializers/Serialization.h", 204 "serializers/Serialization.h",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 "commands/SetCharacterDataCommandTest.cpp", 280 "commands/SetCharacterDataCommandTest.cpp",
279 "commands/TypingCommandTest.cpp", 281 "commands/TypingCommandTest.cpp",
280 "iterators/BackwardsTextBufferTest.cpp", 282 "iterators/BackwardsTextBufferTest.cpp",
281 "iterators/CharacterIteratorTest.cpp", 283 "iterators/CharacterIteratorTest.cpp",
282 "iterators/ForwardsTextBufferTest.cpp", 284 "iterators/ForwardsTextBufferTest.cpp",
283 "iterators/SearchBufferTest.cpp", 285 "iterators/SearchBufferTest.cpp",
284 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 286 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
285 "iterators/TextIteratorTest.cpp", 287 "iterators/TextIteratorTest.cpp",
286 "iterators/TextSearcherICUTest.cpp", 288 "iterators/TextSearcherICUTest.cpp",
287 "markers/DocumentMarkerControllerTest.cpp", 289 "markers/DocumentMarkerControllerTest.cpp",
290 "markers/DocumentMarkerListTest.cpp",
288 "markers/DocumentMarkerTest.cpp", 291 "markers/DocumentMarkerTest.cpp",
289 "serializers/StyledMarkupSerializerTest.cpp", 292 "serializers/StyledMarkupSerializerTest.cpp",
290 "spellcheck/IdleSpellCheckCallbackTest.cpp", 293 "spellcheck/IdleSpellCheckCallbackTest.cpp",
291 "spellcheck/SpellCheckTestBase.cpp", 294 "spellcheck/SpellCheckTestBase.cpp",
292 "spellcheck/SpellCheckTestBase.h", 295 "spellcheck/SpellCheckTestBase.h",
293 "spellcheck/SpellCheckerTest.cpp", 296 "spellcheck/SpellCheckerTest.cpp",
294 "state_machines/BackspaceStateMachineTest.cpp", 297 "state_machines/BackspaceStateMachineTest.cpp",
295 "state_machines/BackwardCodePointStateMachineTest.cpp", 298 "state_machines/BackwardCodePointStateMachineTest.cpp",
296 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 299 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
297 "state_machines/ForwardCodePointStateMachineTest.cpp", 300 "state_machines/ForwardCodePointStateMachineTest.cpp",
298 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 301 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
299 "state_machines/StateMachineTestUtil.cpp", 302 "state_machines/StateMachineTestUtil.cpp",
300 "state_machines/StateMachineTestUtil.h", 303 "state_machines/StateMachineTestUtil.h",
301 "state_machines/StateMachineUtilTest.cpp", 304 "state_machines/StateMachineUtilTest.cpp",
302 ] 305 ]
303 306
304 configs += [ 307 configs += [
305 "//third_party/WebKit/Source/core:blink_core_pch", 308 "//third_party/WebKit/Source/core:blink_core_pch",
306 "//third_party/WebKit/Source:config", 309 "//third_party/WebKit/Source:config",
307 "//third_party/WebKit/Source:inside_blink", 310 "//third_party/WebKit/Source:inside_blink",
308 ] 311 ]
309 312
310 deps = [ 313 deps = [
311 "//testing/gmock", 314 "//testing/gmock",
312 "//testing/gtest", 315 "//testing/gtest",
313 "//third_party/WebKit/Source/core:core", 316 "//third_party/WebKit/Source/core:core",
314 ] 317 ]
315 } 318 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698