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

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

Issue 2773883003: Add CompositionMarkerList in preparation for DocumentMarkerController refactor (Closed)
Patch Set: Fix code that doesn't compile...what am I doing... Created 3 years, 9 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 "iterators/TextIterator.cpp", 173 "iterators/TextIterator.cpp",
174 "iterators/TextIterator.h", 174 "iterators/TextIterator.h",
175 "iterators/TextIteratorBehavior.cpp", 175 "iterators/TextIteratorBehavior.cpp",
176 "iterators/TextIteratorBehavior.h", 176 "iterators/TextIteratorBehavior.h",
177 "iterators/TextIteratorTextState.cpp", 177 "iterators/TextIteratorTextState.cpp",
178 "iterators/TextIteratorTextState.h", 178 "iterators/TextIteratorTextState.h",
179 "iterators/TextSearcherICU.cpp", 179 "iterators/TextSearcherICU.cpp",
180 "iterators/TextSearcherICU.h", 180 "iterators/TextSearcherICU.h",
181 "iterators/WordAwareIterator.cpp", 181 "iterators/WordAwareIterator.cpp",
182 "iterators/WordAwareIterator.h", 182 "iterators/WordAwareIterator.h",
183 "markers/CompositionMarkerList.cpp",
184 "markers/CompositionMarkerList.h",
183 "markers/DocumentMarker.cpp", 185 "markers/DocumentMarker.cpp",
184 "markers/DocumentMarker.h", 186 "markers/DocumentMarker.h",
185 "markers/DocumentMarkerController.cpp", 187 "markers/DocumentMarkerController.cpp",
186 "markers/DocumentMarkerController.h", 188 "markers/DocumentMarkerController.h",
189 "markers/DocumentMarkerList.cpp",
190 "markers/DocumentMarkerList.h",
191 "markers/EditingMarkerList.cpp",
192 "markers/EditingMarkerList.h",
187 "markers/RenderedDocumentMarker.h", 193 "markers/RenderedDocumentMarker.h",
188 "serializers/HTMLInterchange.cpp", 194 "serializers/HTMLInterchange.cpp",
189 "serializers/HTMLInterchange.h", 195 "serializers/HTMLInterchange.h",
190 "serializers/MarkupAccumulator.cpp", 196 "serializers/MarkupAccumulator.cpp",
191 "serializers/MarkupAccumulator.h", 197 "serializers/MarkupAccumulator.h",
192 "serializers/MarkupFormatter.cpp", 198 "serializers/MarkupFormatter.cpp",
193 "serializers/MarkupFormatter.h", 199 "serializers/MarkupFormatter.h",
194 "serializers/Serialization.cpp", 200 "serializers/Serialization.cpp",
195 "serializers/Serialization.h", 201 "serializers/Serialization.h",
196 "serializers/StyledMarkupAccumulator.cpp", 202 "serializers/StyledMarkupAccumulator.cpp",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 "commands/TypingCommandTest.cpp", 276 "commands/TypingCommandTest.cpp",
271 "iterators/BackwardsTextBufferTest.cpp", 277 "iterators/BackwardsTextBufferTest.cpp",
272 "iterators/CharacterIteratorTest.cpp", 278 "iterators/CharacterIteratorTest.cpp",
273 "iterators/ForwardsTextBufferTest.cpp", 279 "iterators/ForwardsTextBufferTest.cpp",
274 "iterators/SearchBufferTest.cpp", 280 "iterators/SearchBufferTest.cpp",
275 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 281 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
276 "iterators/TextIteratorTest.cpp", 282 "iterators/TextIteratorTest.cpp",
277 "iterators/TextSearcherICUTest.cpp", 283 "iterators/TextSearcherICUTest.cpp",
278 "markers/DocumentMarkerControllerTest.cpp", 284 "markers/DocumentMarkerControllerTest.cpp",
279 "markers/DocumentMarkerTest.cpp", 285 "markers/DocumentMarkerTest.cpp",
286 "markers/EditingMarkerListTest.cpp",
280 "serializers/StyledMarkupSerializerTest.cpp", 287 "serializers/StyledMarkupSerializerTest.cpp",
281 "spellcheck/IdleSpellCheckCallbackTest.cpp", 288 "spellcheck/IdleSpellCheckCallbackTest.cpp",
282 "spellcheck/SpellCheckTestBase.cpp", 289 "spellcheck/SpellCheckTestBase.cpp",
283 "spellcheck/SpellCheckTestBase.h", 290 "spellcheck/SpellCheckTestBase.h",
284 "spellcheck/SpellCheckerTest.cpp", 291 "spellcheck/SpellCheckerTest.cpp",
285 "state_machines/BackspaceStateMachineTest.cpp", 292 "state_machines/BackspaceStateMachineTest.cpp",
286 "state_machines/BackwardCodePointStateMachineTest.cpp", 293 "state_machines/BackwardCodePointStateMachineTest.cpp",
287 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 294 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
288 "state_machines/ForwardCodePointStateMachineTest.cpp", 295 "state_machines/ForwardCodePointStateMachineTest.cpp",
289 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 296 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
290 "state_machines/StateMachineTestUtil.cpp", 297 "state_machines/StateMachineTestUtil.cpp",
291 "state_machines/StateMachineTestUtil.h", 298 "state_machines/StateMachineTestUtil.h",
292 "state_machines/StateMachineUtilTest.cpp", 299 "state_machines/StateMachineUtilTest.cpp",
293 ] 300 ]
294 301
295 configs += [ 302 configs += [
296 "//third_party/WebKit/Source/core:blink_core_pch", 303 "//third_party/WebKit/Source/core:blink_core_pch",
297 "//third_party/WebKit/Source:config", 304 "//third_party/WebKit/Source:config",
298 "//third_party/WebKit/Source:inside_blink", 305 "//third_party/WebKit/Source:inside_blink",
299 ] 306 ]
300 307
301 deps = [ 308 deps = [
302 "//testing/gmock", 309 "//testing/gmock",
303 "//testing/gtest", 310 "//testing/gtest",
304 "//third_party/WebKit/Source/core:core", 311 "//third_party/WebKit/Source/core:core",
305 ] 312 ]
306 } 313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698