| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 211 |
| 212 configs += [ | 212 configs += [ |
| 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 214 "//build/config/compiler:no_size_t_to_int_warning", | 214 "//build/config/compiler:no_size_t_to_int_warning", |
| 215 ] | 215 ] |
| 216 } | 216 } |
| 217 | 217 |
| 218 source_set("unit_tests") { | 218 source_set("unit_tests") { |
| 219 testonly = true | 219 testonly = true |
| 220 sources = [ | 220 sources = [ |
| 221 "ClipboardEventFlowTest.cpp", |
| 221 "CompositionUnderlineTest.cpp", | 222 "CompositionUnderlineTest.cpp", |
| 222 "EditingCommandTest.cpp", | 223 "EditingCommandTest.cpp", |
| 223 "EditingStrategyTest.cpp", | 224 "EditingStrategyTest.cpp", |
| 224 "EditingStyleTest.cpp", | 225 "EditingStyleTest.cpp", |
| 225 "EditingTestBase.cpp", | 226 "EditingTestBase.cpp", |
| 226 "EditingTestBase.h", | 227 "EditingTestBase.h", |
| 227 "EditingUtilitiesTest.cpp", | 228 "EditingUtilitiesTest.cpp", |
| 228 "EditorTest.cpp", | 229 "EditorTest.cpp", |
| 229 "EphemeralRangeTest.cpp", | 230 "EphemeralRangeTest.cpp", |
| 230 "FrameSelectionTest.cpp", | 231 "FrameSelectionTest.cpp", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "//third_party/WebKit/Source:config", | 269 "//third_party/WebKit/Source:config", |
| 269 "//third_party/WebKit/Source:inside_blink", | 270 "//third_party/WebKit/Source:inside_blink", |
| 270 ] | 271 ] |
| 271 | 272 |
| 272 deps = [ | 273 deps = [ |
| 273 "//testing/gmock", | 274 "//testing/gmock", |
| 274 "//testing/gtest", | 275 "//testing/gtest", |
| 275 "//third_party/WebKit/Source/core:core", | 276 "//third_party/WebKit/Source/core:core", |
| 276 ] | 277 ] |
| 277 } | 278 } |
| OLD | NEW |