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

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

Issue 2919173002: Add DocumentMarker::kActiveSuggestion MarkerType (Closed)
Patch Set: Fix build errors Created 3 years, 6 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/ActiveSuggestionMarker.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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "iterators/TextIterator.cpp", 185 "iterators/TextIterator.cpp",
186 "iterators/TextIterator.h", 186 "iterators/TextIterator.h",
187 "iterators/TextIteratorBehavior.cpp", 187 "iterators/TextIteratorBehavior.cpp",
188 "iterators/TextIteratorBehavior.h", 188 "iterators/TextIteratorBehavior.h",
189 "iterators/TextIteratorTextNodeHandler.cpp", 189 "iterators/TextIteratorTextNodeHandler.cpp",
190 "iterators/TextIteratorTextNodeHandler.h", 190 "iterators/TextIteratorTextNodeHandler.h",
191 "iterators/TextIteratorTextState.cpp", 191 "iterators/TextIteratorTextState.cpp",
192 "iterators/TextIteratorTextState.h", 192 "iterators/TextIteratorTextState.h",
193 "iterators/TextSearcherICU.cpp", 193 "iterators/TextSearcherICU.cpp",
194 "iterators/TextSearcherICU.h", 194 "iterators/TextSearcherICU.h",
195 "markers/ActiveSuggestionMarker.cpp",
196 "markers/ActiveSuggestionMarker.h",
197 "markers/ActiveSuggestionMarkerListImpl.cpp",
198 "markers/ActiveSuggestionMarkerListImpl.h",
195 "markers/CompositionMarker.cpp", 199 "markers/CompositionMarker.cpp",
196 "markers/CompositionMarker.h", 200 "markers/CompositionMarker.h",
197 "markers/CompositionMarkerListImpl.cpp", 201 "markers/CompositionMarkerListImpl.cpp",
198 "markers/CompositionMarkerListImpl.h", 202 "markers/CompositionMarkerListImpl.h",
199 "markers/DocumentMarker.cpp", 203 "markers/DocumentMarker.cpp",
200 "markers/DocumentMarker.h", 204 "markers/DocumentMarker.h",
201 "markers/DocumentMarkerController.cpp", 205 "markers/DocumentMarkerController.cpp",
202 "markers/DocumentMarkerController.h", 206 "markers/DocumentMarkerController.h",
203 "markers/DocumentMarkerList.cpp", 207 "markers/DocumentMarkerList.cpp",
204 "markers/DocumentMarkerList.h", 208 "markers/DocumentMarkerList.h",
205 "markers/DocumentMarkerListEditor.cpp", 209 "markers/DocumentMarkerListEditor.cpp",
206 "markers/DocumentMarkerListEditor.h", 210 "markers/DocumentMarkerListEditor.h",
207 "markers/GrammarMarker.cpp", 211 "markers/GrammarMarker.cpp",
208 "markers/GrammarMarker.h", 212 "markers/GrammarMarker.h",
209 "markers/GrammarMarkerListImpl.cpp", 213 "markers/GrammarMarkerListImpl.cpp",
210 "markers/GrammarMarkerListImpl.h", 214 "markers/GrammarMarkerListImpl.h",
215 "markers/MarkerWithFormatting.cpp",
216 "markers/MarkerWithFormatting.h",
211 "markers/SpellCheckMarker.cpp", 217 "markers/SpellCheckMarker.cpp",
212 "markers/SpellCheckMarker.h", 218 "markers/SpellCheckMarker.h",
213 "markers/SpellCheckMarkerListImpl.cpp", 219 "markers/SpellCheckMarkerListImpl.cpp",
214 "markers/SpellCheckMarkerListImpl.h", 220 "markers/SpellCheckMarkerListImpl.h",
215 "markers/SpellingMarker.cpp", 221 "markers/SpellingMarker.cpp",
216 "markers/SpellingMarker.h", 222 "markers/SpellingMarker.h",
217 "markers/SpellingMarkerListImpl.cpp", 223 "markers/SpellingMarkerListImpl.cpp",
218 "markers/SpellingMarkerListImpl.h", 224 "markers/SpellingMarkerListImpl.h",
219 "markers/TextMatchMarker.cpp", 225 "markers/TextMatchMarker.cpp",
220 "markers/TextMatchMarker.h", 226 "markers/TextMatchMarker.h",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 "commands/SetCharacterDataCommandTest.cpp", 319 "commands/SetCharacterDataCommandTest.cpp",
314 "commands/SplitTextNodeCommandTest.cpp", 320 "commands/SplitTextNodeCommandTest.cpp",
315 "commands/TypingCommandTest.cpp", 321 "commands/TypingCommandTest.cpp",
316 "iterators/BackwardsTextBufferTest.cpp", 322 "iterators/BackwardsTextBufferTest.cpp",
317 "iterators/CharacterIteratorTest.cpp", 323 "iterators/CharacterIteratorTest.cpp",
318 "iterators/ForwardsTextBufferTest.cpp", 324 "iterators/ForwardsTextBufferTest.cpp",
319 "iterators/SearchBufferTest.cpp", 325 "iterators/SearchBufferTest.cpp",
320 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 326 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
321 "iterators/TextIteratorTest.cpp", 327 "iterators/TextIteratorTest.cpp",
322 "iterators/TextSearcherICUTest.cpp", 328 "iterators/TextSearcherICUTest.cpp",
329 "markers/ActiveSuggestionMarkerTest.cpp",
323 "markers/CompositionMarkerListImplTest.cpp", 330 "markers/CompositionMarkerListImplTest.cpp",
324 "markers/CompositionMarkerTest.cpp", 331 "markers/CompositionMarkerTest.cpp",
325 "markers/DocumentMarkerControllerTest.cpp", 332 "markers/DocumentMarkerControllerTest.cpp",
326 "markers/DocumentMarkerListEditorTest.cpp", 333 "markers/DocumentMarkerListEditorTest.cpp",
327 "markers/DocumentMarkerTest.cpp", 334 "markers/DocumentMarkerTest.cpp",
328 "markers/GrammarMarkerListImplTest.cpp", 335 "markers/GrammarMarkerListImplTest.cpp",
329 "markers/GrammarMarkerTest.cpp", 336 "markers/GrammarMarkerTest.cpp",
330 "markers/SpellingMarkerListImplTest.cpp", 337 "markers/SpellingMarkerListImplTest.cpp",
331 "markers/SpellingMarkerTest.cpp", 338 "markers/SpellingMarkerTest.cpp",
332 "markers/TextMatchMarkerListImplTest.cpp", 339 "markers/TextMatchMarkerListImplTest.cpp",
(...skipping 17 matching lines...) Expand all
350 "//third_party/WebKit/Source:config", 357 "//third_party/WebKit/Source:config",
351 "//third_party/WebKit/Source:inside_blink", 358 "//third_party/WebKit/Source:inside_blink",
352 ] 359 ]
353 360
354 deps = [ 361 deps = [
355 "//testing/gmock", 362 "//testing/gmock",
356 "//testing/gtest", 363 "//testing/gtest",
357 "//third_party/WebKit/Source/core:core", 364 "//third_party/WebKit/Source/core:core",
358 ] 365 ]
359 } 366 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698