| 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 if (is_mac) { | 294 if (is_mac) { |
| 291 jumbo_excluded_sources = [ | 295 jumbo_excluded_sources = [ |
| 292 # Using "using blink" in global scope. | 296 # Using "using blink" in global scope. |
| 293 "WebSubstringUtil.mm", | 297 "WebSubstringUtil.mm", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 "spellcheck/SpellCheckTestBase.h", | 366 "spellcheck/SpellCheckTestBase.h", |
| 363 "spellcheck/SpellCheckerTest.cpp", | 367 "spellcheck/SpellCheckerTest.cpp", |
| 364 "state_machines/BackspaceStateMachineTest.cpp", | 368 "state_machines/BackspaceStateMachineTest.cpp", |
| 365 "state_machines/BackwardCodePointStateMachineTest.cpp", | 369 "state_machines/BackwardCodePointStateMachineTest.cpp", |
| 366 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", | 370 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", |
| 367 "state_machines/ForwardCodePointStateMachineTest.cpp", | 371 "state_machines/ForwardCodePointStateMachineTest.cpp", |
| 368 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", | 372 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", |
| 369 "state_machines/StateMachineTestUtil.cpp", | 373 "state_machines/StateMachineTestUtil.cpp", |
| 370 "state_machines/StateMachineTestUtil.h", | 374 "state_machines/StateMachineTestUtil.h", |
| 371 "state_machines/StateMachineUtilTest.cpp", | 375 "state_machines/StateMachineUtilTest.cpp", |
| 376 "suggestion/TextSuggestionControllerTest.cpp", |
| 372 ] | 377 ] |
| 373 | 378 |
| 374 configs += [ | 379 configs += [ |
| 375 "//third_party/WebKit/Source/core:blink_core_pch", | 380 "//third_party/WebKit/Source/core:blink_core_pch", |
| 376 "//third_party/WebKit/Source:config", | 381 "//third_party/WebKit/Source:config", |
| 377 "//third_party/WebKit/Source:inside_blink", | 382 "//third_party/WebKit/Source:inside_blink", |
| 378 ] | 383 ] |
| 379 | 384 |
| 380 deps = [ | 385 deps = [ |
| 381 "//testing/gmock", | 386 "//testing/gmock", |
| 382 "//testing/gtest", | 387 "//testing/gtest", |
| 383 "//third_party/WebKit/Source/core:core", | 388 "//third_party/WebKit/Source/core:core", |
| 384 ] | 389 ] |
| 385 } | 390 } |
| OLD | NEW |