| OLD | NEW |
| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "iterators/SearchBuffer.cpp", | 178 "iterators/SearchBuffer.cpp", |
| 179 "iterators/SearchBuffer.h", | 179 "iterators/SearchBuffer.h", |
| 180 "iterators/SimplifiedBackwardsTextIterator.cpp", | 180 "iterators/SimplifiedBackwardsTextIterator.cpp", |
| 181 "iterators/SimplifiedBackwardsTextIterator.h", | 181 "iterators/SimplifiedBackwardsTextIterator.h", |
| 182 "iterators/TextBufferBase.cpp", | 182 "iterators/TextBufferBase.cpp", |
| 183 "iterators/TextBufferBase.h", | 183 "iterators/TextBufferBase.h", |
| 184 "iterators/TextIterator.cpp", | 184 "iterators/TextIterator.cpp", |
| 185 "iterators/TextIterator.h", | 185 "iterators/TextIterator.h", |
| 186 "iterators/TextIteratorBehavior.cpp", | 186 "iterators/TextIteratorBehavior.cpp", |
| 187 "iterators/TextIteratorBehavior.h", | 187 "iterators/TextIteratorBehavior.h", |
| 188 "iterators/TextIteratorTextNodeHandler.cpp", |
| 189 "iterators/TextIteratorTextNodeHandler.h", |
| 188 "iterators/TextIteratorTextState.cpp", | 190 "iterators/TextIteratorTextState.cpp", |
| 189 "iterators/TextIteratorTextState.h", | 191 "iterators/TextIteratorTextState.h", |
| 190 "iterators/TextSearcherICU.cpp", | 192 "iterators/TextSearcherICU.cpp", |
| 191 "iterators/TextSearcherICU.h", | 193 "iterators/TextSearcherICU.h", |
| 192 "iterators/WordAwareIterator.cpp", | 194 "iterators/WordAwareIterator.cpp", |
| 193 "iterators/WordAwareIterator.h", | 195 "iterators/WordAwareIterator.h", |
| 194 "markers/CompositionMarkerListImpl.cpp", | 196 "markers/CompositionMarkerListImpl.cpp", |
| 195 "markers/CompositionMarkerListImpl.h", | 197 "markers/CompositionMarkerListImpl.h", |
| 196 "markers/DocumentMarker.cpp", | 198 "markers/DocumentMarker.cpp", |
| 197 "markers/DocumentMarker.h", | 199 "markers/DocumentMarker.h", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 "//third_party/WebKit/Source:config", | 333 "//third_party/WebKit/Source:config", |
| 332 "//third_party/WebKit/Source:inside_blink", | 334 "//third_party/WebKit/Source:inside_blink", |
| 333 ] | 335 ] |
| 334 | 336 |
| 335 deps = [ | 337 deps = [ |
| 336 "//testing/gmock", | 338 "//testing/gmock", |
| 337 "//testing/gtest", | 339 "//testing/gtest", |
| 338 "//third_party/WebKit/Source/core:core", | 340 "//third_party/WebKit/Source/core:core", |
| 339 ] | 341 ] |
| 340 } | 342 } |
| OLD | NEW |