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

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

Issue 2708523002: Introduce ForwardCodePointStateMachine 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/ForwardCodePointStateMachine.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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 198 "state_machines/BackwardCodePointStateMachine.cpp",
199 "state_machines/BackwardCodePointStateMachine.h", 199 "state_machines/BackwardCodePointStateMachine.h",
200 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp", 200 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp",
201 "state_machines/BackwardGraphemeBoundaryStateMachine.h", 201 "state_machines/BackwardGraphemeBoundaryStateMachine.h",
202 "state_machines/ForwardCodePointStateMachine.cpp",
203 "state_machines/ForwardCodePointStateMachine.h",
202 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp", 204 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp",
203 "state_machines/ForwardGraphemeBoundaryStateMachine.h", 205 "state_machines/ForwardGraphemeBoundaryStateMachine.h",
204 "state_machines/StateMachineUtil.cpp", 206 "state_machines/StateMachineUtil.cpp",
205 "state_machines/StateMachineUtil.h", 207 "state_machines/StateMachineUtil.h",
206 "state_machines/TextSegmentationMachineState.cpp", 208 "state_machines/TextSegmentationMachineState.cpp",
207 "state_machines/TextSegmentationMachineState.h", 209 "state_machines/TextSegmentationMachineState.h",
208 ] 210 ]
209 211
210 if (is_mac) { 212 if (is_mac) {
211 sources += [ "commands/SmartReplaceCF.cpp" ] 213 sources += [ "commands/SmartReplaceCF.cpp" ]
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 "iterators/SearchBufferTest.cpp", 256 "iterators/SearchBufferTest.cpp",
255 "iterators/SimplifiedBackwardsTextIteratorTest.cpp", 257 "iterators/SimplifiedBackwardsTextIteratorTest.cpp",
256 "iterators/TextIteratorTest.cpp", 258 "iterators/TextIteratorTest.cpp",
257 "iterators/TextSearcherICUTest.cpp", 259 "iterators/TextSearcherICUTest.cpp",
258 "markers/DocumentMarkerControllerTest.cpp", 260 "markers/DocumentMarkerControllerTest.cpp",
259 "serializers/StyledMarkupSerializerTest.cpp", 261 "serializers/StyledMarkupSerializerTest.cpp",
260 "spellcheck/SpellCheckerTest.cpp", 262 "spellcheck/SpellCheckerTest.cpp",
261 "state_machines/BackspaceStateMachineTest.cpp", 263 "state_machines/BackspaceStateMachineTest.cpp",
262 "state_machines/BackwardCodePointStateMachineTest.cpp", 264 "state_machines/BackwardCodePointStateMachineTest.cpp",
263 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 265 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
266 "state_machines/ForwardCodePointStateMachineTest.cpp",
264 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 267 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
265 "state_machines/StateMachineTestUtil.cpp", 268 "state_machines/StateMachineTestUtil.cpp",
266 "state_machines/StateMachineUtilTest.cpp", 269 "state_machines/StateMachineUtilTest.cpp",
267 ] 270 ]
268 271
269 configs += [ 272 configs += [
270 "//third_party/WebKit/Source/core:blink_core_pch", 273 "//third_party/WebKit/Source/core:blink_core_pch",
271 "//third_party/WebKit/Source:config", 274 "//third_party/WebKit/Source:config",
272 "//third_party/WebKit/Source:inside_blink", 275 "//third_party/WebKit/Source:inside_blink",
273 ] 276 ]
274 277
275 deps = [ 278 deps = [
276 "//testing/gmock", 279 "//testing/gmock",
277 "//testing/gtest", 280 "//testing/gtest",
278 "//third_party/WebKit/Source/core:core", 281 "//third_party/WebKit/Source/core:core",
279 ] 282 ]
280 } 283 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/state_machines/ForwardCodePointStateMachine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698