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