| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "markers/GrammarMarkerListImpl.cpp", | 210 "markers/GrammarMarkerListImpl.cpp", |
| 211 "markers/GrammarMarkerListImpl.h", | 211 "markers/GrammarMarkerListImpl.h", |
| 212 "markers/SpellCheckMarker.cpp", | 212 "markers/SpellCheckMarker.cpp", |
| 213 "markers/SpellCheckMarker.h", | 213 "markers/SpellCheckMarker.h", |
| 214 "markers/SpellCheckMarkerListImpl.cpp", | 214 "markers/SpellCheckMarkerListImpl.cpp", |
| 215 "markers/SpellCheckMarkerListImpl.h", | 215 "markers/SpellCheckMarkerListImpl.h", |
| 216 "markers/SpellingMarker.cpp", | 216 "markers/SpellingMarker.cpp", |
| 217 "markers/SpellingMarker.h", | 217 "markers/SpellingMarker.h", |
| 218 "markers/SpellingMarkerListImpl.cpp", | 218 "markers/SpellingMarkerListImpl.cpp", |
| 219 "markers/SpellingMarkerListImpl.h", | 219 "markers/SpellingMarkerListImpl.h", |
| 220 "markers/StyleableMarker.cpp", |
| 221 "markers/StyleableMarker.h", |
| 220 "markers/TextMatchMarker.cpp", | 222 "markers/TextMatchMarker.cpp", |
| 221 "markers/TextMatchMarker.h", | 223 "markers/TextMatchMarker.h", |
| 222 "markers/TextMatchMarkerListImpl.cpp", | 224 "markers/TextMatchMarkerListImpl.cpp", |
| 223 "markers/TextMatchMarkerListImpl.h", | 225 "markers/TextMatchMarkerListImpl.h", |
| 224 "serializers/HTMLInterchange.cpp", | 226 "serializers/HTMLInterchange.cpp", |
| 225 "serializers/HTMLInterchange.h", | 227 "serializers/HTMLInterchange.h", |
| 226 "serializers/MarkupAccumulator.cpp", | 228 "serializers/MarkupAccumulator.cpp", |
| 227 "serializers/MarkupAccumulator.h", | 229 "serializers/MarkupAccumulator.h", |
| 228 "serializers/MarkupFormatter.cpp", | 230 "serializers/MarkupFormatter.cpp", |
| 229 "serializers/MarkupFormatter.h", | 231 "serializers/MarkupFormatter.h", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//third_party/WebKit/Source:config", | 353 "//third_party/WebKit/Source:config", |
| 352 "//third_party/WebKit/Source:inside_blink", | 354 "//third_party/WebKit/Source:inside_blink", |
| 353 ] | 355 ] |
| 354 | 356 |
| 355 deps = [ | 357 deps = [ |
| 356 "//testing/gmock", | 358 "//testing/gmock", |
| 357 "//testing/gtest", | 359 "//testing/gtest", |
| 358 "//third_party/WebKit/Source/core:core", | 360 "//third_party/WebKit/Source/core:core", |
| 359 ] | 361 ] |
| 360 } | 362 } |
| OLD | NEW |