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