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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp", | 269 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp", |
270 "state_machines/BackwardGraphemeBoundaryStateMachine.h", | 270 "state_machines/BackwardGraphemeBoundaryStateMachine.h", |
271 "state_machines/ForwardCodePointStateMachine.cpp", | 271 "state_machines/ForwardCodePointStateMachine.cpp", |
272 "state_machines/ForwardCodePointStateMachine.h", | 272 "state_machines/ForwardCodePointStateMachine.h", |
273 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp", | 273 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp", |
274 "state_machines/ForwardGraphemeBoundaryStateMachine.h", | 274 "state_machines/ForwardGraphemeBoundaryStateMachine.h", |
275 "state_machines/StateMachineUtil.cpp", | 275 "state_machines/StateMachineUtil.cpp", |
276 "state_machines/StateMachineUtil.h", | 276 "state_machines/StateMachineUtil.h", |
277 "state_machines/TextSegmentationMachineState.cpp", | 277 "state_machines/TextSegmentationMachineState.cpp", |
278 "state_machines/TextSegmentationMachineState.h", | 278 "state_machines/TextSegmentationMachineState.h", |
| 279 "suggestion/TextSuggestionBackendImpl.cpp", |
| 280 "suggestion/TextSuggestionBackendImpl.h", |
| 281 "suggestion/TextSuggestionController.cpp", |
| 282 "suggestion/TextSuggestionController.h", |
279 ] | 283 ] |
280 | 284 |
281 if (is_mac) { | 285 if (is_mac) { |
282 sources += [ "commands/SmartReplaceCF.cpp" ] | 286 sources += [ "commands/SmartReplaceCF.cpp" ] |
283 } | 287 } |
284 | 288 |
285 configs += [ | 289 configs += [ |
286 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 290 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
287 "//build/config/compiler:no_size_t_to_int_warning", | 291 "//build/config/compiler:no_size_t_to_int_warning", |
288 ] | 292 ] |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 "spellcheck/SpellCheckTestBase.h", | 354 "spellcheck/SpellCheckTestBase.h", |
351 "spellcheck/SpellCheckerTest.cpp", | 355 "spellcheck/SpellCheckerTest.cpp", |
352 "state_machines/BackspaceStateMachineTest.cpp", | 356 "state_machines/BackspaceStateMachineTest.cpp", |
353 "state_machines/BackwardCodePointStateMachineTest.cpp", | 357 "state_machines/BackwardCodePointStateMachineTest.cpp", |
354 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", | 358 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", |
355 "state_machines/ForwardCodePointStateMachineTest.cpp", | 359 "state_machines/ForwardCodePointStateMachineTest.cpp", |
356 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", | 360 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", |
357 "state_machines/StateMachineTestUtil.cpp", | 361 "state_machines/StateMachineTestUtil.cpp", |
358 "state_machines/StateMachineTestUtil.h", | 362 "state_machines/StateMachineTestUtil.h", |
359 "state_machines/StateMachineUtilTest.cpp", | 363 "state_machines/StateMachineUtilTest.cpp", |
| 364 "suggestion/TextSuggestionControllerTest.cpp", |
360 ] | 365 ] |
361 | 366 |
362 configs += [ | 367 configs += [ |
363 "//third_party/WebKit/Source/core:blink_core_pch", | 368 "//third_party/WebKit/Source/core:blink_core_pch", |
364 "//third_party/WebKit/Source:config", | 369 "//third_party/WebKit/Source:config", |
365 "//third_party/WebKit/Source:inside_blink", | 370 "//third_party/WebKit/Source:inside_blink", |
366 ] | 371 ] |
367 | 372 |
368 deps = [ | 373 deps = [ |
369 "//testing/gmock", | 374 "//testing/gmock", |
370 "//testing/gtest", | 375 "//testing/gtest", |
371 "//third_party/WebKit/Source/core:core", | 376 "//third_party/WebKit/Source/core:core", |
372 ] | 377 ] |
373 } | 378 } |
OLD | NEW |