| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "RenderedPosition.cpp", | 47 "RenderedPosition.cpp", |
| 48 "RenderedPosition.h", | 48 "RenderedPosition.h", |
| 49 "SelectionAdjuster.cpp", | 49 "SelectionAdjuster.cpp", |
| 50 "SelectionAdjuster.h", | 50 "SelectionAdjuster.h", |
| 51 "SelectionController.cpp", | 51 "SelectionController.cpp", |
| 52 "SelectionController.h", | 52 "SelectionController.h", |
| 53 "SelectionEditor.cpp", | 53 "SelectionEditor.cpp", |
| 54 "SelectionEditor.h", | 54 "SelectionEditor.h", |
| 55 "SelectionModifier.cpp", | 55 "SelectionModifier.cpp", |
| 56 "SelectionModifier.h", | 56 "SelectionModifier.h", |
| 57 "SelectionTemplate.cpp", |
| 58 "SelectionTemplate.h", |
| 57 "SelectionType.h", | 59 "SelectionType.h", |
| 58 "SurroundingText.cpp", | 60 "SurroundingText.cpp", |
| 59 "SurroundingText.h", | 61 "SurroundingText.h", |
| 60 "TextAffinity.cpp", | 62 "TextAffinity.cpp", |
| 61 "TextAffinity.h", | 63 "TextAffinity.h", |
| 62 "VisiblePosition.cpp", | 64 "VisiblePosition.cpp", |
| 63 "VisibleSelection.cpp", | 65 "VisibleSelection.cpp", |
| 64 "VisibleUnits.cpp", | 66 "VisibleUnits.cpp", |
| 65 "commands/AppendNodeCommand.cpp", | 67 "commands/AppendNodeCommand.cpp", |
| 66 "commands/AppendNodeCommand.h", | 68 "commands/AppendNodeCommand.h", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 195 |
| 194 if (is_mac) { | 196 if (is_mac) { |
| 195 sources += [ "commands/SmartReplaceCF.cpp" ] | 197 sources += [ "commands/SmartReplaceCF.cpp" ] |
| 196 } | 198 } |
| 197 | 199 |
| 198 configs += [ | 200 configs += [ |
| 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 200 "//build/config/compiler:no_size_t_to_int_warning", | 202 "//build/config/compiler:no_size_t_to_int_warning", |
| 201 ] | 203 ] |
| 202 } | 204 } |
| OLD | NEW |