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