| 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 14 matching lines...) Expand all Loading... |
| 25 "EditingStyle.h", | 25 "EditingStyle.h", |
| 26 "EditingStyleUtilities.cpp", | 26 "EditingStyleUtilities.cpp", |
| 27 "EditingStyleUtilities.h", | 27 "EditingStyleUtilities.h", |
| 28 "EditingUtilities.cpp", | 28 "EditingUtilities.cpp", |
| 29 "EditingUtilities.h", | 29 "EditingUtilities.h", |
| 30 "Editor.cpp", | 30 "Editor.cpp", |
| 31 "Editor.h", | 31 "Editor.h", |
| 32 "EditorKeyBindings.cpp", | 32 "EditorKeyBindings.cpp", |
| 33 "EphemeralRange.cpp", | 33 "EphemeralRange.cpp", |
| 34 "EphemeralRange.h", | 34 "EphemeralRange.h", |
| 35 "FindInPageCoordinates.cpp", |
| 36 "FindInPageCoordinates.h", |
| 35 "FrameCaret.cpp", | 37 "FrameCaret.cpp", |
| 36 "FrameCaret.h", | 38 "FrameCaret.h", |
| 37 "FrameSelection.cpp", | 39 "FrameSelection.cpp", |
| 38 "FrameSelection.h", | 40 "FrameSelection.h", |
| 39 "GranularityStrategy.cpp", | 41 "GranularityStrategy.cpp", |
| 40 "GranularityStrategy.h", | 42 "GranularityStrategy.h", |
| 41 "InputMethodController.cpp", | 43 "InputMethodController.cpp", |
| 42 "InputMethodController.h", | 44 "InputMethodController.h", |
| 43 "LayoutSelection.cpp", | 45 "LayoutSelection.cpp", |
| 44 "LayoutSelection.h", | 46 "LayoutSelection.h", |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 "//third_party/WebKit/Source:config", | 310 "//third_party/WebKit/Source:config", |
| 309 "//third_party/WebKit/Source:inside_blink", | 311 "//third_party/WebKit/Source:inside_blink", |
| 310 ] | 312 ] |
| 311 | 313 |
| 312 deps = [ | 314 deps = [ |
| 313 "//testing/gmock", | 315 "//testing/gmock", |
| 314 "//testing/gtest", | 316 "//testing/gtest", |
| 315 "//third_party/WebKit/Source/core:core", | 317 "//third_party/WebKit/Source/core:core", |
| 316 ] | 318 ] |
| 317 } | 319 } |
| OLD | NEW |