Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: third_party/WebKit/Source/core/editing/BUILD.gn

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Split off SpellChecker changes Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp", 267 "state_machines/BackwardGraphemeBoundaryStateMachine.cpp",
268 "state_machines/BackwardGraphemeBoundaryStateMachine.h", 268 "state_machines/BackwardGraphemeBoundaryStateMachine.h",
269 "state_machines/ForwardCodePointStateMachine.cpp", 269 "state_machines/ForwardCodePointStateMachine.cpp",
270 "state_machines/ForwardCodePointStateMachine.h", 270 "state_machines/ForwardCodePointStateMachine.h",
271 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp", 271 "state_machines/ForwardGraphemeBoundaryStateMachine.cpp",
272 "state_machines/ForwardGraphemeBoundaryStateMachine.h", 272 "state_machines/ForwardGraphemeBoundaryStateMachine.h",
273 "state_machines/StateMachineUtil.cpp", 273 "state_machines/StateMachineUtil.cpp",
274 "state_machines/StateMachineUtil.h", 274 "state_machines/StateMachineUtil.h",
275 "state_machines/TextSegmentationMachineState.cpp", 275 "state_machines/TextSegmentationMachineState.cpp",
276 "state_machines/TextSegmentationMachineState.h", 276 "state_machines/TextSegmentationMachineState.h",
277 "suggestion/TextSuggestionBackendImpl.cpp",
278 "suggestion/TextSuggestionBackendImpl.h",
279 "suggestion/TextSuggestionController.cpp",
280 "suggestion/TextSuggestionController.h",
277 ] 281 ]
278 282
279 if (is_mac) { 283 if (is_mac) {
280 sources += [ "commands/SmartReplaceCF.cpp" ] 284 sources += [ "commands/SmartReplaceCF.cpp" ]
281 } 285 }
282 286
283 configs += [ 287 configs += [
284 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 288 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
285 "//build/config/compiler:no_size_t_to_int_warning", 289 "//build/config/compiler:no_size_t_to_int_warning",
286 ] 290 ]
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 "spellcheck/SpellCheckTestBase.h", 351 "spellcheck/SpellCheckTestBase.h",
348 "spellcheck/SpellCheckerTest.cpp", 352 "spellcheck/SpellCheckerTest.cpp",
349 "state_machines/BackspaceStateMachineTest.cpp", 353 "state_machines/BackspaceStateMachineTest.cpp",
350 "state_machines/BackwardCodePointStateMachineTest.cpp", 354 "state_machines/BackwardCodePointStateMachineTest.cpp",
351 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp", 355 "state_machines/BackwardGraphemeBoundaryStateMachineTest.cpp",
352 "state_machines/ForwardCodePointStateMachineTest.cpp", 356 "state_machines/ForwardCodePointStateMachineTest.cpp",
353 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp", 357 "state_machines/ForwardGraphemeBoundaryStateMachineTest.cpp",
354 "state_machines/StateMachineTestUtil.cpp", 358 "state_machines/StateMachineTestUtil.cpp",
355 "state_machines/StateMachineTestUtil.h", 359 "state_machines/StateMachineTestUtil.h",
356 "state_machines/StateMachineUtilTest.cpp", 360 "state_machines/StateMachineUtilTest.cpp",
361 "suggestion/TextSuggestionControllerTest.cpp",
357 ] 362 ]
358 363
359 configs += [ 364 configs += [
360 "//third_party/WebKit/Source/core:blink_core_pch", 365 "//third_party/WebKit/Source/core:blink_core_pch",
361 "//third_party/WebKit/Source:config", 366 "//third_party/WebKit/Source:config",
362 "//third_party/WebKit/Source:inside_blink", 367 "//third_party/WebKit/Source:inside_blink",
363 ] 368 ]
364 369
365 deps = [ 370 deps = [
366 "//testing/gmock", 371 "//testing/gmock",
367 "//testing/gtest", 372 "//testing/gtest",
368 "//third_party/WebKit/Source/core:core", 373 "//third_party/WebKit/Source/core:core",
369 ] 374 ]
370 } 375 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698