| 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 "CaretBase.cpp", | 10 "CaretBase.cpp", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "Position.cpp", | 39 "Position.cpp", |
| 40 "Position.h", | 40 "Position.h", |
| 41 "PositionIterator.cpp", | 41 "PositionIterator.cpp", |
| 42 "PositionIterator.h", | 42 "PositionIterator.h", |
| 43 "PositionWithAffinity.cpp", | 43 "PositionWithAffinity.cpp", |
| 44 "PositionWithAffinity.h", | 44 "PositionWithAffinity.h", |
| 45 "RelocatablePosition.cpp", | 45 "RelocatablePosition.cpp", |
| 46 "RelocatablePosition.h", | 46 "RelocatablePosition.h", |
| 47 "RenderedPosition.cpp", | 47 "RenderedPosition.cpp", |
| 48 "RenderedPosition.h", | 48 "RenderedPosition.h", |
| 49 "Selection.cpp", |
| 50 "Selection.h", |
| 49 "SelectionAdjuster.cpp", | 51 "SelectionAdjuster.cpp", |
| 50 "SelectionAdjuster.h", | 52 "SelectionAdjuster.h", |
| 51 "SelectionController.cpp", | 53 "SelectionController.cpp", |
| 52 "SelectionController.h", | 54 "SelectionController.h", |
| 53 "SelectionEditor.cpp", | 55 "SelectionEditor.cpp", |
| 54 "SelectionEditor.h", | 56 "SelectionEditor.h", |
| 55 "SelectionModifier.cpp", | 57 "SelectionModifier.cpp", |
| 56 "SelectionModifier.h", | 58 "SelectionModifier.h", |
| 57 "SelectionType.h", | 59 "SelectionType.h", |
| 58 "SurroundingText.cpp", | 60 "SurroundingText.cpp", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 197 |
| 196 if (is_mac) { | 198 if (is_mac) { |
| 197 sources += [ "commands/SmartReplaceCF.cpp" ] | 199 sources += [ "commands/SmartReplaceCF.cpp" ] |
| 198 } | 200 } |
| 199 | 201 |
| 200 configs += [ | 202 configs += [ |
| 201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 202 "//build/config/compiler:no_size_t_to_int_warning", | 204 "//build/config/compiler:no_size_t_to_int_warning", |
| 203 ] | 205 ] |
| 204 } | 206 } |
| OLD | NEW |