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

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

Issue 2706713002: Introduce BackwardCodePointStateMachine to traverse chars in code points (Closed)
Patch Set: Created 3 years, 10 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/state_machines/BackwardCodePointStateMachine.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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 "spellcheck/IdleSpellCheckCallback.cpp", 188 "spellcheck/IdleSpellCheckCallback.cpp",
189 "spellcheck/IdleSpellCheckCallback.h", 189 "spellcheck/IdleSpellCheckCallback.h",
190 "spellcheck/SpellCheckRequester.cpp", 190 "spellcheck/SpellCheckRequester.cpp",
191 "spellcheck/SpellCheckRequester.h", 191 "spellcheck/SpellCheckRequester.h",
192 "spellcheck/SpellChecker.cpp", 192 "spellcheck/SpellChecker.cpp",
193 "spellcheck/SpellChecker.h", 193 "spellcheck/SpellChecker.h",
194 "spellcheck/TextCheckingParagraph.cpp", 194 "spellcheck/TextCheckingParagraph.cpp",
195 "spellcheck/TextCheckingParagraph.h", 195 "spellcheck/TextCheckingParagraph.h",
196 "state_machines/BackspaceStateMachine.cpp", 196 "state_machines/BackspaceStateMachine.cpp",
197 "state_machines/BackspaceStateMachine.h", 197 "state_machines/BackspaceStateMachine.h",
198 "state_machines/BackwardCodePointStateMachine.cpp",
199 "state_machines/BackwardCodePointStateMachine.h",
198 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp", 200 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp",
199 "state_machines/BackwardGraphemeBoundaryStateMachine.h", 201 "state_machines/BackwardGraphemeBoundaryStateMachine.h",
200 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp", 202 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp",
201 "state_machines/ForwardGraphemeBoundaryStateMachine.h", 203 "state_machines/ForwardGraphemeBoundaryStateMachine.h",
202 "state_machines/StateMachineUtil.cpp", 204 "state_machines/StateMachineUtil.cpp",
203 "state_machines/StateMachineUtil.h", 205 "state_machines/StateMachineUtil.h",
204 "state_machines/TextSegmentationMachineState.cpp", 206 "state_machines/TextSegmentationMachineState.cpp",
205 "state_machines/TextSegmentationMachineState.h", 207 "state_machines/TextSegmentationMachineState.h",
206 ] 208 ]
207 209
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "iterators/CharacterIteratorTest.cpp", 252 "iterators/CharacterIteratorTest.cpp",
251 "iterators/ForwardsTextBufferTest.cpp", 253 "iterators/ForwardsTextBufferTest.cpp",
252 "iterators/SearchBufferTest.cpp", 254 "iterators/SearchBufferTest.cpp",
253 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 255 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
254 "iterators/TextIteratorTest.cpp", 256 "iterators/TextIteratorTest.cpp",
255 "iterators/TextSearcherICUTest.cpp", 257 "iterators/TextSearcherICUTest.cpp",
256 "markers/DocumentMarkerControllerTest.cpp", 258 "markers/DocumentMarkerControllerTest.cpp",
257 "serializers/StyledMarkupSerializerTest.cpp", 259 "serializers/StyledMarkupSerializerTest.cpp",
258 "spellcheck/SpellCheckerTest.cpp", 260 "spellcheck/SpellCheckerTest.cpp",
259 "state_machines/BackspaceStateMachineTest.cpp", 261 "state_machines/BackspaceStateMachineTest.cpp",
262 "state_machines/BackwardCodePointStateMachineTest.cpp",
260 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 263 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
261 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 264 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
262 "state_machines/StateMachineTestUtil.cpp", 265 "state_machines/StateMachineTestUtil.cpp",
263 "state_machines/StateMachineUtilTest.cpp", 266 "state_machines/StateMachineUtilTest.cpp",
264 ] 267 ]
265 268
266 configs += [ 269 configs += [
267 "//third_party/WebKit/Source/core:blink_core_pch", 270 "//third_party/WebKit/Source/core:blink_core_pch",
268 "//third_party/WebKit/Source:config", 271 "//third_party/WebKit/Source:config",
269 "//third_party/WebKit/Source:inside_blink", 272 "//third_party/WebKit/Source:inside_blink",
270 ] 273 ]
271 274
272 deps = [ 275 deps = [
273 "//testing/gmock", 276 "//testing/gmock",
274 "//testing/gtest", 277 "//testing/gtest",
275 "//third_party/WebKit/Source/core:core", 278 "//third_party/WebKit/Source/core:core",
276 ] 279 ]
277 } 280 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/state_machines/BackwardCodePointStateMachine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698