| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "serializers/MarkupFormatter.cpp", | 180 "serializers/MarkupFormatter.cpp", |
| 181 "serializers/MarkupFormatter.h", | 181 "serializers/MarkupFormatter.h", |
| 182 "serializers/Serialization.cpp", | 182 "serializers/Serialization.cpp", |
| 183 "serializers/Serialization.h", | 183 "serializers/Serialization.h", |
| 184 "serializers/StyledMarkupAccumulator.cpp", | 184 "serializers/StyledMarkupAccumulator.cpp", |
| 185 "serializers/StyledMarkupAccumulator.h", | 185 "serializers/StyledMarkupAccumulator.h", |
| 186 "serializers/StyledMarkupSerializer.cpp", | 186 "serializers/StyledMarkupSerializer.cpp", |
| 187 "serializers/StyledMarkupSerializer.h", | 187 "serializers/StyledMarkupSerializer.h", |
| 188 "serializers/TextOffset.cpp", | 188 "serializers/TextOffset.cpp", |
| 189 "serializers/TextOffset.h", | 189 "serializers/TextOffset.h", |
| 190 "spellcheck/HotModeSpellCheckRequester.cpp", |
| 191 "spellcheck/HotModeSpellCheckRequester.h", |
| 190 "spellcheck/IdleSpellCheckCallback.cpp", | 192 "spellcheck/IdleSpellCheckCallback.cpp", |
| 191 "spellcheck/IdleSpellCheckCallback.h", | 193 "spellcheck/IdleSpellCheckCallback.h", |
| 192 "spellcheck/SpellCheckRequester.cpp", | 194 "spellcheck/SpellCheckRequester.cpp", |
| 193 "spellcheck/SpellCheckRequester.h", | 195 "spellcheck/SpellCheckRequester.h", |
| 194 "spellcheck/SpellChecker.cpp", | 196 "spellcheck/SpellChecker.cpp", |
| 195 "spellcheck/SpellChecker.h", | 197 "spellcheck/SpellChecker.h", |
| 196 "spellcheck/TextCheckingParagraph.cpp", | 198 "spellcheck/TextCheckingParagraph.cpp", |
| 197 "spellcheck/TextCheckingParagraph.h", | 199 "spellcheck/TextCheckingParagraph.h", |
| 198 "state_machines/BackspaceStateMachine.cpp", | 200 "state_machines/BackspaceStateMachine.cpp", |
| 199 "state_machines/BackspaceStateMachine.h", | 201 "state_machines/BackspaceStateMachine.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "//third_party/WebKit/Source:config", | 284 "//third_party/WebKit/Source:config", |
| 283 "//third_party/WebKit/Source:inside_blink", | 285 "//third_party/WebKit/Source:inside_blink", |
| 284 ] | 286 ] |
| 285 | 287 |
| 286 deps = [ | 288 deps = [ |
| 287 "//testing/gmock", | 289 "//testing/gmock", |
| 288 "//testing/gtest", | 290 "//testing/gtest", |
| 289 "//third_party/WebKit/Source/core:core", | 291 "//third_party/WebKit/Source/core:core", |
| 290 ] | 292 ] |
| 291 } | 293 } |
| OLD | NEW |