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

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

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

Powered by Google App Engine
This is Rietveld 408576698