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

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

Issue 2772423002: Add EditingMarkerList 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/EditingMarkerList.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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "iterators/TextSearcherICU.cpp", 186 "iterators/TextSearcherICU.cpp",
187 "iterators/TextSearcherICU.h", 187 "iterators/TextSearcherICU.h",
188 "iterators/WordAwareIterator.cpp", 188 "iterators/WordAwareIterator.cpp",
189 "iterators/WordAwareIterator.h", 189 "iterators/WordAwareIterator.h",
190 "markers/DocumentMarker.cpp", 190 "markers/DocumentMarker.cpp",
191 "markers/DocumentMarker.h", 191 "markers/DocumentMarker.h",
192 "markers/DocumentMarkerController.cpp", 192 "markers/DocumentMarkerController.cpp",
193 "markers/DocumentMarkerController.h", 193 "markers/DocumentMarkerController.h",
194 "markers/DocumentMarkerList.cpp", 194 "markers/DocumentMarkerList.cpp",
195 "markers/DocumentMarkerList.h", 195 "markers/DocumentMarkerList.h",
196 "markers/EditingMarkerList.cpp",
197 "markers/EditingMarkerList.h",
196 "markers/RenderedDocumentMarker.cpp", 198 "markers/RenderedDocumentMarker.cpp",
197 "markers/RenderedDocumentMarker.h", 199 "markers/RenderedDocumentMarker.h",
198 "serializers/HTMLInterchange.cpp", 200 "serializers/HTMLInterchange.cpp",
199 "serializers/HTMLInterchange.h", 201 "serializers/HTMLInterchange.h",
200 "serializers/MarkupAccumulator.cpp", 202 "serializers/MarkupAccumulator.cpp",
201 "serializers/MarkupAccumulator.h", 203 "serializers/MarkupAccumulator.h",
202 "serializers/MarkupFormatter.cpp", 204 "serializers/MarkupFormatter.cpp",
203 "serializers/MarkupFormatter.h", 205 "serializers/MarkupFormatter.h",
204 "serializers/Serialization.cpp", 206 "serializers/Serialization.cpp",
205 "serializers/Serialization.h", 207 "serializers/Serialization.h",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 "iterators/BackwardsTextBufferTest.cpp", 285 "iterators/BackwardsTextBufferTest.cpp",
284 "iterators/CharacterIteratorTest.cpp", 286 "iterators/CharacterIteratorTest.cpp",
285 "iterators/ForwardsTextBufferTest.cpp", 287 "iterators/ForwardsTextBufferTest.cpp",
286 "iterators/SearchBufferTest.cpp", 288 "iterators/SearchBufferTest.cpp",
287 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 289 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
288 "iterators/TextIteratorTest.cpp", 290 "iterators/TextIteratorTest.cpp",
289 "iterators/TextSearcherICUTest.cpp", 291 "iterators/TextSearcherICUTest.cpp",
290 "markers/DocumentMarkerControllerTest.cpp", 292 "markers/DocumentMarkerControllerTest.cpp",
291 "markers/DocumentMarkerListTest.cpp", 293 "markers/DocumentMarkerListTest.cpp",
292 "markers/DocumentMarkerTest.cpp", 294 "markers/DocumentMarkerTest.cpp",
295 "markers/EditingMarkerListTest.cpp",
293 "serializers/StyledMarkupSerializerTest.cpp", 296 "serializers/StyledMarkupSerializerTest.cpp",
294 "spellcheck/IdleSpellCheckCallbackTest.cpp", 297 "spellcheck/IdleSpellCheckCallbackTest.cpp",
295 "spellcheck/SpellCheckTestBase.cpp", 298 "spellcheck/SpellCheckTestBase.cpp",
296 "spellcheck/SpellCheckTestBase.h", 299 "spellcheck/SpellCheckTestBase.h",
297 "spellcheck/SpellCheckerTest.cpp", 300 "spellcheck/SpellCheckerTest.cpp",
298 "state_machines/BackspaceStateMachineTest.cpp", 301 "state_machines/BackspaceStateMachineTest.cpp",
299 "state_machines/BackwardCodePointStateMachineTest.cpp", 302 "state_machines/BackwardCodePointStateMachineTest.cpp",
300 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 303 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
301 "state_machines/ForwardCodePointStateMachineTest.cpp", 304 "state_machines/ForwardCodePointStateMachineTest.cpp",
302 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 305 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
303 "state_machines/StateMachineTestUtil.cpp", 306 "state_machines/StateMachineTestUtil.cpp",
304 "state_machines/StateMachineTestUtil.h", 307 "state_machines/StateMachineTestUtil.h",
305 "state_machines/StateMachineUtilTest.cpp", 308 "state_machines/StateMachineUtilTest.cpp",
306 ] 309 ]
307 310
308 configs += [ 311 configs += [
309 "//third_party/WebKit/Source/core:blink_core_pch", 312 "//third_party/WebKit/Source/core:blink_core_pch",
310 "//third_party/WebKit/Source:config", 313 "//third_party/WebKit/Source:config",
311 "//third_party/WebKit/Source:inside_blink", 314 "//third_party/WebKit/Source:inside_blink",
312 ] 315 ]
313 316
314 deps = [ 317 deps = [
315 "//testing/gmock", 318 "//testing/gmock",
316 "//testing/gtest", 319 "//testing/gtest",
317 "//third_party/WebKit/Source/core:core", 320 "//third_party/WebKit/Source/core:core",
318 ] 321 ]
319 } 322 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/EditingMarkerList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698