| 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 24 matching lines...) Expand all Loading... |
| 35 "EphemeralRange.cpp", | 35 "EphemeralRange.cpp", |
| 36 "EphemeralRange.h", | 36 "EphemeralRange.h", |
| 37 "FindInPageCoordinates.cpp", | 37 "FindInPageCoordinates.cpp", |
| 38 "FindInPageCoordinates.h", | 38 "FindInPageCoordinates.h", |
| 39 "FrameCaret.cpp", | 39 "FrameCaret.cpp", |
| 40 "FrameCaret.h", | 40 "FrameCaret.h", |
| 41 "FrameSelection.cpp", | 41 "FrameSelection.cpp", |
| 42 "FrameSelection.h", | 42 "FrameSelection.h", |
| 43 "GranularityStrategy.cpp", | 43 "GranularityStrategy.cpp", |
| 44 "GranularityStrategy.h", | 44 "GranularityStrategy.h", |
| 45 "InlineBoxTraversal.cpp", |
| 46 "InlineBoxTraversal.h", |
| 45 "InputMethodController.cpp", | 47 "InputMethodController.cpp", |
| 46 "InputMethodController.h", | 48 "InputMethodController.h", |
| 47 "LayoutSelection.cpp", | 49 "LayoutSelection.cpp", |
| 48 "LayoutSelection.h", | 50 "LayoutSelection.h", |
| 49 "PlainTextRange.cpp", | 51 "PlainTextRange.cpp", |
| 50 "PlainTextRange.h", | 52 "PlainTextRange.h", |
| 51 "Position.cpp", | 53 "Position.cpp", |
| 52 "Position.h", | 54 "Position.h", |
| 53 "PositionIterator.cpp", | 55 "PositionIterator.cpp", |
| 54 "PositionIterator.h", | 56 "PositionIterator.h", |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 "//third_party/WebKit/Source:config", | 368 "//third_party/WebKit/Source:config", |
| 367 "//third_party/WebKit/Source:inside_blink", | 369 "//third_party/WebKit/Source:inside_blink", |
| 368 ] | 370 ] |
| 369 | 371 |
| 370 deps = [ | 372 deps = [ |
| 371 "//testing/gmock", | 373 "//testing/gmock", |
| 372 "//testing/gtest", | 374 "//testing/gtest", |
| 373 "//third_party/WebKit/Source/core:core", | 375 "//third_party/WebKit/Source/core:core", |
| 374 ] | 376 ] |
| 375 } | 377 } |
| OLD | NEW |