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