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

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

Issue 2770413003: Add SpellCheckMarkerList in preparation for DocumentMarkerController refactor (Closed)
Patch Set: Rebase 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerList.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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 "markers/DocumentMarker.cpp", 191 "markers/DocumentMarker.cpp",
192 "markers/DocumentMarker.h", 192 "markers/DocumentMarker.h",
193 "markers/DocumentMarkerController.cpp", 193 "markers/DocumentMarkerController.cpp",
194 "markers/DocumentMarkerController.h", 194 "markers/DocumentMarkerController.h",
195 "markers/DocumentMarkerList.cpp", 195 "markers/DocumentMarkerList.cpp",
196 "markers/DocumentMarkerList.h", 196 "markers/DocumentMarkerList.h",
197 "markers/EditingMarkerList.cpp", 197 "markers/EditingMarkerList.cpp",
198 "markers/EditingMarkerList.h", 198 "markers/EditingMarkerList.h",
199 "markers/RenderedDocumentMarker.cpp", 199 "markers/RenderedDocumentMarker.cpp",
200 "markers/RenderedDocumentMarker.h", 200 "markers/RenderedDocumentMarker.h",
201 "markers/SpellCheckMarkerList.cpp",
202 "markers/SpellCheckMarkerList.h",
201 "serializers/HTMLInterchange.cpp", 203 "serializers/HTMLInterchange.cpp",
202 "serializers/HTMLInterchange.h", 204 "serializers/HTMLInterchange.h",
203 "serializers/MarkupAccumulator.cpp", 205 "serializers/MarkupAccumulator.cpp",
204 "serializers/MarkupAccumulator.h", 206 "serializers/MarkupAccumulator.h",
205 "serializers/MarkupFormatter.cpp", 207 "serializers/MarkupFormatter.cpp",
206 "serializers/MarkupFormatter.h", 208 "serializers/MarkupFormatter.h",
207 "serializers/Serialization.cpp", 209 "serializers/Serialization.cpp",
208 "serializers/Serialization.h", 210 "serializers/Serialization.h",
209 "serializers/StyledMarkupAccumulator.cpp", 211 "serializers/StyledMarkupAccumulator.cpp",
210 "serializers/StyledMarkupAccumulator.h", 212 "serializers/StyledMarkupAccumulator.h",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 "iterators/CharacterIteratorTest.cpp", 289 "iterators/CharacterIteratorTest.cpp",
288 "iterators/ForwardsTextBufferTest.cpp", 290 "iterators/ForwardsTextBufferTest.cpp",
289 "iterators/SearchBufferTest.cpp", 291 "iterators/SearchBufferTest.cpp",
290 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 292 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
291 "iterators/TextIteratorTest.cpp", 293 "iterators/TextIteratorTest.cpp",
292 "iterators/TextSearcherICUTest.cpp", 294 "iterators/TextSearcherICUTest.cpp",
293 "markers/DocumentMarkerControllerTest.cpp", 295 "markers/DocumentMarkerControllerTest.cpp",
294 "markers/DocumentMarkerListTest.cpp", 296 "markers/DocumentMarkerListTest.cpp",
295 "markers/DocumentMarkerTest.cpp", 297 "markers/DocumentMarkerTest.cpp",
296 "markers/EditingMarkerListTest.cpp", 298 "markers/EditingMarkerListTest.cpp",
299 "markers/SpellCheckMarkerListTest.cpp",
297 "serializers/StyledMarkupSerializerTest.cpp", 300 "serializers/StyledMarkupSerializerTest.cpp",
298 "spellcheck/IdleSpellCheckCallbackTest.cpp", 301 "spellcheck/IdleSpellCheckCallbackTest.cpp",
299 "spellcheck/SpellCheckTestBase.cpp", 302 "spellcheck/SpellCheckTestBase.cpp",
300 "spellcheck/SpellCheckTestBase.h", 303 "spellcheck/SpellCheckTestBase.h",
301 "spellcheck/SpellCheckerTest.cpp", 304 "spellcheck/SpellCheckerTest.cpp",
302 "state_machines/BackspaceStateMachineTest.cpp", 305 "state_machines/BackspaceStateMachineTest.cpp",
303 "state_machines/BackwardCodePointStateMachineTest.cpp", 306 "state_machines/BackwardCodePointStateMachineTest.cpp",
304 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 307 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
305 "state_machines/ForwardCodePointStateMachineTest.cpp", 308 "state_machines/ForwardCodePointStateMachineTest.cpp",
306 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 309 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
307 "state_machines/StateMachineTestUtil.cpp", 310 "state_machines/StateMachineTestUtil.cpp",
308 "state_machines/StateMachineTestUtil.h", 311 "state_machines/StateMachineTestUtil.h",
309 "state_machines/StateMachineUtilTest.cpp", 312 "state_machines/StateMachineUtilTest.cpp",
310 ] 313 ]
311 314
312 configs += [ 315 configs += [
313 "//third_party/WebKit/Source/core:blink_core_pch", 316 "//third_party/WebKit/Source/core:blink_core_pch",
314 "//third_party/WebKit/Source:config", 317 "//third_party/WebKit/Source:config",
315 "//third_party/WebKit/Source:inside_blink", 318 "//third_party/WebKit/Source:inside_blink",
316 ] 319 ]
317 320
318 deps = [ 321 deps = [
319 "//testing/gmock", 322 "//testing/gmock",
320 "//testing/gtest", 323 "//testing/gtest",
321 "//third_party/WebKit/Source/core:core", 324 "//third_party/WebKit/Source/core:core",
322 ] 325 ]
323 } 326 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698