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", | |
222 "CompositionUnderlineTest.cpp", | 221 "CompositionUnderlineTest.cpp", |
223 "EditingCommandTest.cpp", | 222 "EditingCommandTest.cpp", |
224 "EditingStrategyTest.cpp", | 223 "EditingStrategyTest.cpp", |
225 "EditingStyleTest.cpp", | 224 "EditingStyleTest.cpp", |
226 "EditingTestBase.cpp", | 225 "EditingTestBase.cpp", |
227 "EditingTestBase.h", | 226 "EditingTestBase.h", |
228 "EditingUtilitiesTest.cpp", | 227 "EditingUtilitiesTest.cpp", |
229 "EditorTest.cpp", | 228 "EditorTest.cpp", |
230 "EphemeralRangeTest.cpp", | 229 "EphemeralRangeTest.cpp", |
231 "FrameSelectionTest.cpp", | 230 "FrameSelectionTest.cpp", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "//third_party/WebKit/Source:config", | 268 "//third_party/WebKit/Source:config", |
270 "//third_party/WebKit/Source:inside_blink", | 269 "//third_party/WebKit/Source:inside_blink", |
271 ] | 270 ] |
272 | 271 |
273 deps = [ | 272 deps = [ |
274 "//testing/gmock", | 273 "//testing/gmock", |
275 "//testing/gtest", | 274 "//testing/gtest", |
276 "//third_party/WebKit/Source/core:core", | 275 "//third_party/WebKit/Source/core:core", |
277 ] | 276 ] |
278 } | 277 } |
OLD | NEW |